/* Page-scoped navbar transparency for AI page only (keep glassmorphism pill) */
.ai-services-page .navbar { background: transparent !important; box-shadow: none !important; }
.ai-services-page .navbar.scrolled { background: transparent !important; box-shadow: none !important; }
/* Ensure navbar sizing exactly matches index page */
.ai-services-page .navbar { height: 84px; }
@media (max-width: 1023px) { .ai-services-page .navbar { height: 72px; } }
@media (max-width: 767px) { .ai-services-page .navbar { height: 64px; } }
.ai-services-page .navbar .container .nav-content { height: 100%; }
.ai-services-page .navbar .brand-logo { width: 120px; height: 56px; }

/* Slightly increase navbar pill width on AI page */
.ai-services-page .navbar { width: 100%; }
.ai-services-page .navbar .container { max-width: var(--container-xl); width: 100%; }

/* Match "Lets Talk" button shape to index navbar */
.ai-services-page .navbar .btn,
.ai-services-page .navbar .btn-primary {
    border-radius: var(--radius-lg) !important; /* same as global .btn */
    padding: var(--space-3) var(--space-6) !important; /* match index */
    font-size: var(--text-sm) !important;
    line-height: 1 !important;
}



/* Hero Section */
.services-hero {
    position: relative;
    min-height: 100vh; /* Changed height to min-height for flexibility */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    /* Removed will-change for better scroll performance */
    box-sizing: border-box; /* Ensure padding/border are included in element's total width and height */
}

.services-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.services-hero .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.services-hero .hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.services-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    opacity: 1;
}

.services-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.1); Reduced overlay since gradient is applied inline */
    z-index: 3;
}

.services-hero .hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
}

.services-hero .container {
    position: relative;
    z-index: 5;
}

.services-hero .hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    display: flex; /* Make it a flex container */
    flex-direction: column; /* Stack children vertically */
    justify-content: center; /* Center content vertically */
    height: 100%; /* Take full height of its parent */
    padding-top: 100px; /* Base padding to clear navbar on larger screens */
    padding-bottom: 50px; /* Ensure space at the bottom */
    box-sizing: border-box; /* Include padding in height calculation */
}

.services-hero .hero-tag {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    /* backdrop-filter: blur(10px); */
}

.services-hero .hero-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    /* Removed will-change for better scroll performance */
}

.services-hero .hero-title .highlight {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero .hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    /* Removed will-change for better scroll performance */
}

.services-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.services-hero .stat-item {
    text-align: center;
}

.services-hero .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #A8E6A3;
    margin-bottom: 8px;
}

.services-hero .stat-label {
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-hero .hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    /* Removed will-change for better scroll performance */
    z-index: 10; /* Ensure it's on top */
}

/* Service Categories */
.service-categories {
    padding: 120px 0;
    background: #f8fafc;
}

.service-categories .row {
    align-items: stretch;
}

.service-categories .col-lg-4 {
    display: flex;
}

.service-category-card {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    will-change: transform, box-shadow;
}

.service-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-category-card .category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-category-card .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-category-card:hover .category-image img {
    transform: scale(1.05);
}

.service-category-card .category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.service-category-card .category-content {
    position: relative;
    z-index: 3;
    height: 100%;
    padding: 40px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-category-card .category-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-category-card .category-icon i {
    font-size: 2rem;
    color: #A8E6A3;
}

.service-category-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.service-category-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 24px;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.service-category-card .category-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.service-category-card .feature-badge {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    font-size: var(--text-xs, 0.875rem); /* Professional minimum */
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.service-category-card .category-stats {
    display: flex;
    gap: 30px;
}

.service-category-card .stat {
    text-align: center;
}

.service-category-card .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #A8E6A3;
    margin-bottom: 4px;
}

.service-category-card .stat-label {
    font-size: var(--text-xs, 0.875rem); /* Professional minimum */
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Panel Overlay */
.service-panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
}

.service-panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

.service-panel-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overflow-x: hidden;
    will-change: transform;
    color: #e9ecef;
}

.service-panel-overlay.active .service-panel-container {
    transform: translateX(0);
}

/* Panel Header */
.panel-header {
    position: sticky;
    top: 84px; /* Account for fixed navbar height */
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(64, 64, 64, 0.3);
    margin-top: 84px; /* Push content below navbar */
    padding: 20px 0;
    z-index: 100;
}

.panel-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.panel-back-btn, .panel-close-btn {
    background: none;
    border: none;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #f8f9fa;
    font-weight: 500;
}

.panel-back-btn:hover, .panel-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.panel-back-btn i, .panel-close-btn i {
    margin-right: 8px;
}

.panel-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #adb5bd;
    font-size: var(--text-sm, 0.875rem);
}

.panel-breadcrumb i {
    font-size: var(--text-xs, 0.875rem); /* Professional minimum */
}

/* Panel Content */
.panel-content {
    padding: 0;
    margin-top: 0; /* Match global pages: let navbar overlay per main.css */
    min-height: 100vh;
    opacity: 1;
    visibility: visible;
}

.service-category-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 1;
    visibility: visible;
}

.category-hero-icon {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    background: #404040;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid #A8E6A3;
}

.category-hero-icon i {
    font-size: 3rem;
    color: #f8f9fa;
}

.service-category-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #f8f9fa;
}

.service-category-header .category-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #adb5bd;
    max-width: 800px;
    margin: 0 auto 40px;
}

.category-overview-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.overview-stat {
    text-align: center;
}

.overview-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #A8E6A3;
    margin-bottom: 8px;
}

.overview-stat-label {
    font-size: var(--text-sm, 0.875rem);
    color: #adb5bd;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    align-items: start;
}

.service-detail-card {
    background: #2a2a2a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #404040;
    height: fit-content;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    will-change: transform, opacity;
    color: #e9ecef;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border-color: #666;
}

.service-card-header {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-detail-card:hover .service-card-image {
    transform: scale(1.05);
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8)); */
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-card-icon i {
    font-size: 2rem;
    color: white;
}

.service-card-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #f8f9fa;
}

.service-card-content .service-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #adb5bd;
    margin-bottom: 24px;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.service-features-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    color: #adb5bd;
    font-size: 14px;
}

.service-features-list li i {
    color: #666;
    margin-right: 12px;
    font-size: 12px;
}

.service-pricing {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 24px;
    border: 1px solid #404040;
}

.pricing-label {
    font-size: 14px;
    color: #adb5bd;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #666;
    margin-bottom: 8px;
}

.pricing-description {
    font-size: 14px;
    color: #adb5bd;
    line-height: 1.4;
}

.service-card-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.btn-hire {
    flex: 1;
    background: linear-gradient(135deg, #A8E6A3 0%, #A3D1F6 100%);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-hire:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.btn-learn-more {
    background: none;
    color: #A8E6A3;
    border: 2px solid #A8E6A3;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    background: #A8E6A3;
    color: white;
}

/* Consultation Modal */
.consultation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.consultation-modal.active {
    opacity: 1;
    visibility: visible;
}

.consultation-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.consultation-modal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.consultation-modal.active .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.consultation-modal .modal-header {
    padding: 32px 32px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.consultation-modal .modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.consultation-modal .modal-close {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s ease;
}

.consultation-modal .modal-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #1a202c;
}

.consultation-modal .modal-body {
    padding: 32px;
    max-height: 70vh;
    overflow-y: auto;
}

.consultation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.consultation-form .form-group {
    margin-bottom: 20px;
}

.consultation-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.consultation-form .form-group input,
.consultation-form .form-group select,
.consultation-form .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.consultation-form .form-group input:focus,
.consultation-form .form-group select:focus,
.consultation-form .form-group textarea:focus {
    outline: none;
    border-color: #A8E6A3;
    box-shadow: 0 0 0 3px rgba(192, 120, 53, 0.1);
}

.consultation-form .form-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.consultation-form .form-actions .btn {
    flex: 1;
}

/* CTA Section */
/* .cta { */
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     */
    /* background: linear-gradient(135deg, #c07835 0%, #9c5442 100%); 
    color: white;
    text-align: center;
    padding: 120px 0;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta .btn-outline {
    background: none;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
} */

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #A8E6A3 0%, #A3D1F6 100%);
    color: white;
    text-align: center;
    padding: 120px 0;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta .btn-outline {
    background: none;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-2px);
}

/* Ensure primary buttons in CTA match the orange/brown theme */
.cta .btn-primary {
    background-color: #A8E6A3;
    border-color: #A8E6A3;
    color: #1A2740;
}

.cta .btn-primary:hover {
    background-color: #A3D1F6;
    border-color: #A3D1F6;
    color: #1A2740;
    transform: translateY(-2px);
}


/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-category-header h1 {
        font-size: 2.5rem;
    }
    
    .services-hero .hero-title {
        font-size: 3rem;
    }
    
    /* Adjust banner height for tablets */
    .service-hero-banner {
        min-height: 130vh;
        height: 130vh;
    }
    
    .hero-bg-image-wrapper img {
        object-position: 50% 75%; /* adjust for tablet screens */
    }
}

@media (max-width: 768px) {
    .services-hero {
        min-height: 100vh;
        height: 100vh;
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .services-hero .hero-background {
        width: 100vw;
        height: 100vh;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .services-hero .hero-image {
        width: 100vw;
        height: 100vh;
        left: 50%;
        transform: translateX(-50%);
        background-size: cover;
        background-position: center center;
        object-fit: cover;
    }
    
    .services-hero .hero-overlay,
    .services-hero .hero-gradient {
        width: 100vw;
        height: 100vh;
        left: 50%;
        transform: translateX(-50%);
    }

    .services-hero .hero-content {
        padding-top: 20vh;
        padding-bottom: 40px;
        min-height: 100vh;
        height: 100vh;
        justify-content: center;
        text-align: center !important;
    }

    .services-hero .hero-tag {
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
        width: max-content !important;
    }
    
    .services-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .services-hero .hero-stats {
        gap: 20px;
    }
    
    .services-hero .hero-actions {
        flex-direction: column;
        align-items: center;
        margin-top: 20px; 
        padding-bottom: 0; 
    }
    
    .service-category-card {
        height: 400px;
    }
    
    .service-category-card .category-content {
        padding: 24px;
    }
    
    .service-category-card .category-stats {
        gap: 20px;
    }
    
    .category-overview-stats {
        gap: 30px;
    }
    
    .consultation-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .consultation-modal .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .consultation-modal .modal-header,
    .consultation-modal .modal-body {
        padding: 20px;
    }
    /* added for card alignment */
    .service-categories .row {
        align-items: flex-start; /* Align all cards to top */
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-categories .col-lg-4 {
        margin-bottom: 20px;
    }

    .panel-content {
        padding: 0;
    }
    
    .service-category-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        min-height: auto; /* Allow content to define height */
        padding-top: 0; 
        padding-bottom: 0; 
    }
    
    .services-hero .hero-content {
        padding-top: 70px; /* Further adjustment for smaller mobile screens to clear navbar */
        padding-bottom: 30px; /* Further adjustment for smaller mobile screens */
        min-height: calc(100vh - 56px); /* Fill remaining viewport height minus navbar */
        height: auto; /* Allow content to dictate final height if more than viewport */
        justify-content: center; /* Center content vertically */
    }

    .services-hero .hero-title {
        font-size: 2rem;
    }
    
    .service-category-header h1 {
        font-size: 2rem;
    }
    
    .service-detail-card {
        margin-bottom: 20px;
    }
    
    .service-card-content {
        padding: 20px;
    }
    
    .service-card-actions {
        flex-direction: column;
    }
    
    .panel-content {
        padding: 0;
    }
    
    .service-category-header h1 {
        font-size: 1.8rem;
    }
    
    .category-overview-stats {
        gap: 20px;
    }
    .consultation-modal {
      width: 100vw !important;
      height: 100vh !important;
      left: 0 !important;
      top: 0 !important;
      position: fixed !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      background: rgba(0,0,0,0.8) !important;
    }
    .consultation-modal .modal-content {
      width: 95vw !important;
      max-width: 400px !important;
      max-height: 95vh !important;
      margin: 0 auto !important;
      border-radius: 16px !important;
      transform: none !important;
      box-sizing: border-box !important;
      overflow-y: auto !important;
    }
    .consultation-modal .modal-header,
    .consultation-modal .modal-body {
      padding: 20px;
    }
    .consultation-form .form-group input,
    .consultation-form .form-group select,
    .consultation-form .form-group textarea {
      font-size: 16px;
    }
    html, body {
    padding: 0 !important;
    margin: 0 !important;
    width: 100vw !important;
    overflow-x: hidden !important;
    background: #fff !important;
  }
  .consultation-modal {
    padding: 0 !important;
    margin: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    left: 0 !important;
    top: 0 !important;
    position: fixed !important;
  }
  .consultation-modal .modal-content {
    position: static !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
    margin: 0 !important;
    transform: none !important;
    box-sizing: border-box !important;
    overflow-y: auto !important;
  }
} 

/* Additional fixes for card alignment and content visibility */
.service-categories .row > .col-lg-4,
.service-categories .row > .col-md-6 {
    display: flex;
    align-items: stretch;
}

.service-category-card {
    width: 100%;
    flex: 1;
}

/* Ensure all service detail cards have equal height */
.services-grid .service-detail-card {
    align-self: stretch;
    will-change: transform, opacity;
}

/* Fix for panel content visibility only */
.panel-content .service-category-header *,
.panel-content .services-grid *,
.panel-content .overview-stat * {
    opacity: 1 !important;
    visibility: visible !important;
    will-change: unset !important; /* Remove will-change on fallback to prevent conflicts */
}

/* Ensure service category cards are always visible */
.service-categories .service-category-card {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    will-change: unset !important; /* Remove will-change on fallback to prevent conflicts */
}

/* Category CTA section */
.category-cta {
    background: linear-gradient(135deg, #A8E6A3 0%, #A3D1F6 100%);
    padding: 80px 0;
    margin-top: 80px;
    text-align: center;
    color: white;
}

.category-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.category-cta .cta-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.category-cta .cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.category-cta .btn {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
}

.category-cta .btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.category-cta .btn-outline:hover {
    background: white;
    color: #A8E6A3;
}

/* Custom Grid System for Service Cards (replaces Bootstrap grid) */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.col-lg-4 {
    position: relative;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    flex: 0 0 100%;
    max-width: 100%;
}

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

/* Medium screens and up */
@media (min-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Large screens and up */
@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
} 

.services-hero .hero-actions .btn-outline-light {
    box-shadow: none !important; /* Force remove any box shadow */
    text-shadow: none !important; /* Force remove any text shadow */
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    color: white !important;
    backdrop-filter: none !important; /* Remove any backdrop filter */
    filter: none !important; /* Remove any filter effects */
}

.services-hero .hero-actions .btn-outline-light:hover {
    box-shadow: none !important;
    text-shadow: none !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 1) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    backdrop-filter: none !important;
    filter: none !important;
}

.services-hero .hero-actions .btn-outline-light:focus {
    box-shadow: none !important;
    text-shadow: none !important;
    outline: 2px solid rgba(255, 255, 255, 0.5) !important;
    outline-offset: 2px !important;
}

.services-hero .hero-actions .btn-outline-light:active {
    box-shadow: none !important;
    text-shadow: none !important;
    transform: translateY(0) !important;
}

/* Responsive Helper Classes */
.desktop-only {
    display: block; /* Default to block for desktop */
}

.mobile-only {
    display: none; /* Default to hidden for desktop */
}

@media (max-width: 768px) {
    .desktop-only {
        display: none; /* Hide desktop elements on mobile */
    }

    .mobile-only {
        display: block; /* Show mobile elements on mobile */
    }
}

/* Ensure mobile-only image covers the hero background */
.services-hero .hero-image.mobile-only {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    opacity: 1 ; /* Match existing opacity for hero-image */
} 

.service-card h3 {
  font-size: 1.4rem;
}

.service-card p {
  font-size: 0.8rem;
}

.stat-number {
  font-size: 1.6rem;
}

.section-title {
  font-size: 2.1rem;
}

.section-description {
  font-size: 1rem;
} 

@media (max-width: 576px) {
  .services-hero .hero-title {
    font-size: 2rem;
  }
}

/* ===================================
   ENHANCED SERVICE PANEL DESIGN STYLES
   =================================== */

/* Services Navigation Section */
.services-navigation-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}

.nav-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.nav-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.nav-section-header p {
    font-size: 1.2rem;
    color: var(--color-gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.services-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.service-nav-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--color-gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-nav-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--color-primary);
}

.nav-card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--color-primary);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.nav-card-icon i {
    font-size: 1.5rem;
    color: white;
}

.nav-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.nav-card-description {
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

.nav-card-arrow {
    color: var(--color-primary);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.service-nav-card:hover .nav-card-arrow {
    transform: translateX(5px);
}

/* Sub-Service Sections */
.sub-service-section {
    padding: 20px 0 10px 0;
    border-bottom: 1px solid var(--color-gray-200);
    background: white;
}

.sub-service-section:nth-child(even) {
    background: #fafbfc;
}

.sub-service-header {
    margin-bottom: 40px;
}

.service-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.service-breadcrumb a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.service-breadcrumb i {
    color: var(--color-gray-400);
    font-size: 0.8rem;
}

.service-breadcrumb span {
    color: var(--color-gray-600);
}

.sub-service-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.sub-service-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.sub-service-description {
    font-size: 1.1rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 40px;
}

.service-highlights h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.highlights-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--color-gray-700);
}

.highlights-list i {
    color: var(--color-success);
    font-size: 1rem;
}

.service-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray-200);
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.detail-content {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.9rem;
    color: var(--color-gray-500);
    margin-bottom: 4px;
}

.detail-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
}

.service-technologies h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}

.tech-tag {
    background: var(--color-gray-100);
    color: var(--color-gray-700);
    padding: 6px 12px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
}

.service-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sub-service-right {
    position: sticky;
    top: 100px;
}

.service-visual {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-xl);
    color: white;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.service-icon-large i {
    font-size: 2rem;
    color: white;
}

.service-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Service Hero Banner */
.service-hero-banner {
    background: transparent !important; /* image will cover everything */
    padding: 0 0 80px 0; /* no top padding to avoid gap under navbar */
    color: #ffffff;
    position: relative;
    overflow: hidden;
    min-height: 140vh; /* increased banner height */
    height: 120vh; /* increased banner height */
    width: 100vw; /* ensure full viewport width */
    display: flex;
    align-items: center;
    transform: translateZ(0);
    will-change: transform;
    margin-top: 0 !important; /* avoid any accidental offset */
}

.service-hero-banner::before {
    /* Remove all background gradients for clean minimal design */
    display: none;
}

.hero-banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding-top: 0; /* remove extra top spacing so hero image sits under navbar */
}

/* Kill any overlays that could create a dark strip */
.service-hero-banner::before,
.service-hero-banner::after {
    content: none !important;
    display: none !important;
    background: transparent !important;
}

/* Ensure hero background image truly covers */
.hero-bg-image-wrapper { position: absolute; inset: 0; z-index: 1; }
.hero-bg-image-wrapper img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; /* cover to fill the entire screen dynamically */
    object-position: 50% 80%; /* 50% horizontal (center), 30% vertical (upper part) */
    display: block; 
    min-height: 100vh; /* ensure full viewport height */
}

/* Remove the legacy panel header bar on service pages */
.panel-header { display: none !important; background: transparent !important; box-shadow: none !important; }

.hero-banner-left {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    /* background: rgba(99, 102, 241, 0.1); Light purple background */
    /* border: 1px solid rgba(99, 102, 241, 0.3); Subtle purple border */
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #6366f1; /* Purple text color */
    margin-bottom: 32px;
    backdrop-filter: none; /* Remove blur for cleaner look */
    box-shadow: none; /* Remove shadow for minimal design */
}

.badge-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 10px;
}

.hero-banner-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero-banner-image {
    max-width: min(620px, 42vw);
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .hero-banner-image { max-width: 88vw; }
}

.title-gradient {
    background: linear-gradient(135deg, #4FACFE 0%, #00F2FE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-banner-description {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-stats-mini {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

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

.mini-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #6366f1; /* Purple for numbers */
    line-height: 1;
}

.mini-stat-label {
    font-size: 0.9rem;
    color: #718096; /* Medium gray for labels */
    margin-top: 4px;
}

.hero-banner-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Mobile Mockup */
.hero-visual-container {
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-mockup { display: none; }

.mobile-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #000, #111);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.mobile-header {
    height: 30px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 10px;
}

.mobile-camera {
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
}

.mobile-speaker {
    width: 50px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.mobile-content {
    padding: 20px;
    height: calc(100% - 50px);
}

.app-interface {
    background: linear-gradient(145deg, #1a1f2e, #0f1419);
    border-radius: 20px;
    padding: 24px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.app-interface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1), transparent 50%);
    pointer-events: none;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.app-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.app-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4FACFE, #00F2FE);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.app-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.app-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    backdrop-filter: blur(10px);
}

.app-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #4FACFE;
    line-height: 1;
}

.app-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.app-features {
    position: relative;
    z-index: 2;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.app-feature i {
    color: #4FACFE;
    width: 20px;
}

/* Floating Badges */
.floating-badges {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 12px 16px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: floatBadge 6s ease-in-out infinite;
}

.badge-1 {
    top: 10%;
    right: -20%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 30%;
    left: -25%;
    animation-delay: 2s;
}

.badge-3 {
    top: 40%;
    left: -20%;
    animation-delay: 4s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.1), rgba(0, 242, 254, 0.1));
    filter: blur(40px);
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: rotate 20s linear infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation: rotate 15s linear infinite reverse;
}

.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(79, 172, 254, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 172, 254, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Experience Section */
.experience-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 40px 0;
    position: relative;
}

.experience-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.experience-text {
    max-width: 600px;
}

.experience-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    color: #1E293B;
    margin-bottom: 32px;
}

.highlight-number {
    color: #10B981;
    position: relative;
}

.highlight-text {
    color: #4FACFE;
    position: relative;
}

.experience-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #64748B;
    max-width: 500px;
}

.experience-visual {
    position: relative;
}

.stats-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.showcase-stat {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(79, 172, 254, 0.1);
    position: relative;
    overflow: hidden;
}

.showcase-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4FACFE, #00F2FE);
}

.showcase-stat:nth-child(odd) {
    transform: translateY(-20px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4FACFE 0%, #00F2FE 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.stat-content .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1E293B;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-content .stat-label {
    font-size: 1rem;
    color: #64748B;
    font-weight: 600;
}

/* Sticky Content Section */
.sticky-content-section {
    background: white;
    min-height: auto;
    position: relative;
    padding: 20px 0 10px 0;
}

.sticky-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: auto;
}

.sticky-left {
    position: relative;
    background: transparent;
}

.sticky-image-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
}

/* Device Showcase */
.device-showcase {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 600px;
}

.device-mockup {
    width: 280px;
    height: 500px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 
        0 0 0 8px #333,
        0 0 0 10px #555,
        0 25px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    margin: 0 auto;
}

.device-screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
}

.device-frame {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #333;
    border-radius: 3px;
}

/* Info Cards */
.info-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.info-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 16px;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: floatCard 8s ease-in-out infinite;
}

.card-1 {
    top: 10%;
    right: -40%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 40%;
    left: -50%;
    animation-delay: 2s;
}

.card-3 {
    top: 60%;
    right: -45%;
    animation-delay: 4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4FACFE, #00F2FE);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.card-title {
    font-weight: 700;
    font-size: 0.9rem;
}

.card-subtitle {
    font-size: 0.8rem;
    opacity: 0.8;
}

.card-value {
    font-weight: 800;
    font-size: 1.1rem;
    color: #4FACFE;
}

.card-label {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Enhanced Right Content */
.sticky-right {
    background: white;
    padding: 80px 60px;
    overflow-y: auto;
}

.sticky-content {
    max-width: 700px;
}

/* Service Introduction */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79, 172, 254, 0.1);
    color: #4FACFE;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #1E293B;
    line-height: 1.2;
    margin-bottom: 24px;
}

.title-highlight {
    color: #4FACFE;
}

.section-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #64748B;
    margin-bottom: 60px;
}

/* Enhanced Service Cards */
.enhanced-services-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.enhanced-service-card {
    background: white;
    border: 2px solid #F1F5F9;
    border-radius: 20px;
    padding: 32px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.enhanced-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4FACFE, #00F2FE);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.enhanced-service-card:hover::before {
    transform: scaleX(1);
}

.enhanced-service-card:hover {
    transform: translateY(-8px);
    border-color: #4FACFE;
    box-shadow: 0 25px 50px rgba(79, 172, 254, 0.15);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.service-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: #E2E8F0;
    line-height: 1;
}

.enhanced-service-card:hover .service-number {
    color: #4FACFE;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4FACFE 0%, #00F2FE 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-description {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 1rem;
}

.service-highlights {
    margin-bottom: 24px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #475569;
    font-size: 0.95rem;
}

.highlight-item i {
    color: #10B981;
    font-size: 0.8rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-top: 24px;
    border-top: 1px solid #F1F5F9;
}

.service-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.8rem;
    color: #64748B;
    margin-bottom: 4px;
}

.price-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1E293B;
}

.service-timeline {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748B;
    font-size: 0.9rem;
}

.card-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #4FACFE;
    font-weight: 600;
}

.action-arrow {
    transition: transform 0.3s ease;
}

.enhanced-service-card:hover .action-arrow {
    transform: translateX(8px);
}

/* Technologies Section */
.technologies-section {
    margin: 80px 0;
    padding: 40px;
    background: #F8FAFC;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
}

.tech-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 32px;
    text-align: center;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.1);
    border-color: #4FACFE;
}

.tech-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4FACFE, #00F2FE);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.tech-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    text-align: center;
}

/* Enhanced CTA Section */
.enhanced-cta-section {
    margin-top: 80px;
}

.cta-background {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1), transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =================================== */

/* Small devices (320px and up) */
@media (max-width: 480px) {
    /* Sub-service sections mobile */
    .services-navigation-section {
        padding: 40px 0;
    }
    
    .nav-section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .nav-section-header p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .services-nav-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 20px;
    }
    
    .service-nav-card {
        padding: 24px;
    }
    
    .nav-card-title {
        font-size: 1.2rem;
    }
    
    .sub-service-section {
        padding: 20px 0;
    }
    
    .sticky-content-section {
        padding: 15px 0 5px 0;
    }
    
    .sub-service-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .sub-service-title {
        font-size: 1.8rem;
    }
    
    .sub-service-description {
        font-size: 1rem;
    }
    
    .service-details-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .detail-item {
        padding: 16px;
    }
    
    .service-actions {
        flex-direction: column;
    }
    
    .service-actions .btn {
        width: 100%;
    }
    
    .sub-service-right {
        position: relative;
        top: auto;
    }
    
    .service-visual {
        padding: 30px 20px;
    }
    
    .service-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .service-hero-banner {
        padding: 20px 0 30px;
        min-height: 70vh;
    }
    
    .hero-banner-content {
        gap: 30px;
        padding: 0 15px;
    }
    
    .hero-banner-left {
        max-width: 100%;
    }
    
    .hero-banner-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        margin-bottom: 16px;
    }
    
    .hero-banner-description {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .hero-stats-mini {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-bottom: 25px;
    }
    
    .mini-stat {
        text-align: center;
    }
    
    .mini-stat-number {
        font-size: 1.8rem;
    }
    
    .hero-banner-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .mobile-mockup {
        width: 200px;
        height: 400px;
    }
    
    .hero-visual-container {
        height: 450px;
    }
    
    .floating-badge,
    .info-card {
        display: none;
    }
    
    /* Experience Section Mobile */
    .experience-section {
        padding: 30px 0;
    }
    
    .experience-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }
    
    .experience-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        text-align: center;
        margin-bottom: 20px;
    }
    
    .experience-description {
        font-size: 1rem;
        text-align: center;
        margin: 0 auto;
    }
    
    .stats-showcase {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .showcase-stat {
        padding: 20px 16px;
        transform: none !important;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .stat-content .stat-number {
        font-size: 2rem;
    }
    
    /* Sticky Content Mobile */
    .sticky-container {
        grid-template-columns: 1fr;
    }
    
    .sticky-left {
        height: 50vh;
        position: relative;
    }
    
    .sticky-image-wrapper {
        position: relative;
        height: 100%;
        padding: 0;
    }
    
    .device-showcase {
        height: 300px;
    }
    
    .device-mockup {
        width: 160px;
        height: 280px;
        padding: 15px;
    }
    
    .sticky-right {
        padding: 30px 15px;
    }
    
    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        text-align: center;
        margin-bottom: 20px;
    }
    
    .section-description {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .enhanced-service-card {
        padding: 20px 16px;
    }
    
    .card-header {
        margin-bottom: 16px;
    }
    
    .service-number {
        font-size: 1.2rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .service-title {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .service-description {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }
    
    .service-meta {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    
    .technologies-section {
        padding: 25px 15px;
        margin: 40px 0;
    }
    
    .tech-title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 12px;
    }
    
    .tech-item {
        padding: 15px 10px;
    }
    
    .tech-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .tech-name {
        font-size: 0.8rem;
    }
    
    .cta-background {
        padding: 30px 15px;
        margin: 0 15px;
        border-radius: 16px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
}

/* Medium devices (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .service-hero-banner {
        padding: 20px 0 50px;
        min-height: 75vh;
    }
    
    .hero-banner-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-stats-mini {
        justify-content: center;
        gap: 30px;
    }
    
    .mobile-mockup {
        width: 260px;
        height: 520px;
    }
    
    .experience-section {
        padding: 40px 0;
    }
    
    .experience-layout {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 20px;
    }
    
    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .showcase-stat:nth-child(odd) {
        transform: none;
    }
    
    .sticky-container {
        grid-template-columns: 1fr;
    }
    
    .sticky-left {
        height: 60vh;
        position: relative;
    }
    
    .sticky-image-wrapper {
        position: relative;
        height: 100%;
        padding: 0;
    }
    
    .device-showcase {
        height: 350px;
    }
    
    .device-mockup {
        width: 180px;
        height: 320px;
    }
    
    .sticky-right {
        padding: 50px 30px;
    }
    
    .enhanced-service-card {
        padding: 24px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 16px;
    }
    
    .cta-background {
        padding: 40px 24px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

/* Large tablets and small laptops (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-banner-content,
    .experience-layout,
    .sticky-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-banner-content {
        text-align: center;
        padding: 0 30px;
    }
    
    .mobile-mockup { display: none; }
    
    .floating-badge,
    .info-card {
        display: none;
    }
    
    .sticky-left {
        height: 70vh;
        position: relative;
    }
    
    .sticky-image-wrapper {
        position: relative;
        height: 100%;
        padding: 0;
    }
    
    .device-showcase {
        height: 450px;
    }
    
    .device-mockup {
        width: 220px;
        height: 400px;
    }
    
    .sticky-right {
        padding: 60px 40px;
    }
}

/* Desktop and larger screens (1025px and up) */
@media (min-width: 1025px) {
    .hero-banner-content,
    .experience-layout,
    .sticky-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .floating-badge,
    .info-card {
        display: flex;
    }
    
    .sticky-left {
        position: relative;
    }
    
    .sticky-image-wrapper {
        position: sticky;
        top: 0;
        height: 100vh;
    }
}

/* Ultra-wide screens (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .hero-banner-content {
        gap: 100px;
    }
    
    .experience-layout {
        gap: 100px;
    }
    
    .mobile-mockup { display: none; }
    
    .device-mockup {
        width: 300px;
        height: 550px;
    }
}

/* Performance optimizations for reduced motion */
@media (prefers-reduced-motion: reduce) {
    .floating-badge,
    .info-card,
    .bg-circle {
        animation: none;
    }
    
    .enhanced-service-card:hover {
        transform: none;
    }
    
    .tech-item:hover {
        transform: none;
    }
    
    /* Disable all transitions for better performance */
    * {
        transition: none !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Additional mobile performance optimizations */
@media (max-width: 768px) {
    /* Reduce GPU-heavy effects on mobile */
    .service-hero-banner::before,
    .hero-bg-elements,
    .floating-badge,
    .info-card {
        display: none;
    }
    
    /* Simplify shadows for better performance */
    .mobile-mockup,
    .device-mockup,
    .enhanced-service-card,
    .showcase-stat {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    /* Disable transform effects that can cause jank */
    .enhanced-service-card:hover,
    .tech-item:hover {
        transform: none;
    }
    
    /* Optimize background attachments */
    .cta-background::before,
    .app-interface::before {
        display: none;
    }
}

/* Panel Content Responsive Adjustments */
@media (max-width: 1023px) {
    .panel-content { margin-top: 0; }
}

@media (max-width: 767px) {
    .panel-content { margin-top: 0; }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-banner-title,
    .section-title,
    .service-title {
        color: #000;
        text-shadow: none;
    }
    
    .enhanced-service-card {
        border: 2px solid #000;
    }
    
    .btn-primary {
        background: #000;
        border: 2px solid #000;
        color: #fff;
    }
} 

/* === AI Services Top Banner: Minimal White Variant Overrides === */
.service-hero-banner { background: transparent !important; color: #ffffff !important; position: relative; }
.service-hero-banner::before { display: none !important; }
.hero-bg-image-wrapper { position: absolute; inset: 0; z-index: 1; }
.hero-bg-image { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.service-hero-banner .container { position: relative; z-index: 2; }
.service-hero-banner .title-gradient { background: none !important; -webkit-text-fill-color: initial !important; color: #ffffff !important; }
.service-hero-banner .hero-banner-title { color: #ffffff !important; }
.service-hero-banner .hero-banner-description { color: #ffffff !important; }
.service-hero-banner .hero-badge,
.service-hero-banner .hero-stats-mini,
.service-hero-banner .mini-stat,
.service-hero-banner .hero-banner-actions,
.service-hero-banner .floating-badges,
.service-hero-banner .hero-bg-elements { display: none !important; }

/* Slide hero under fixed navbar (retain glassmorphism) */
.service-hero-banner { min-height: 100vh; margin-top: -84px; padding-top: 84px; }
@media (max-width: 1023px) { .service-hero-banner { margin-top: -72px; padding-top: 72px; } }
@media (max-width: 767px) { .service-hero-banner { margin-top: -64px; padding-top: 64px; } }

/* Remove any internal overlays/gradients inside hero that could create a dark strip */
.service-hero-banner .process-background,
.service-hero-banner .bg-particles,
.service-hero-banner .bg-grid,
.service-hero-banner .bg-gradient {
    background: transparent !important;
    display: none !important;
}

/* Keep global glassmorphism (do not override navbar container styles here) */

/* CTA Final Section (Horizontal, with images) */
.cta-final-section { 
    background: #0b0b0b; 
    padding: 56px 0 80px; 
    position: relative; 
    overflow: hidden;
}
.cta-final { 
    display: grid; 
    grid-template-columns: 1.2fr 1fr; 
    align-items: center; 
    gap: 32px; 
    position: relative; 
    z-index: 2;
}
.cta-final-text h2 { margin: 0 0 10px; font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; color: #ffffff; }
.cta-final-text p { margin: 0 0 18px; color: #d1d5db; max-width: 56ch; }
.cta-final .cta-actions { display: flex; gap: 12px; }
.cta-final .btn { padding: 12px 18px; border-radius: 10px; font-weight: 700; }
.cta-final .btn.btn-primary { background: #6366f1; border: 1px solid #6366f1; color: #fff; }
.cta-final .btn.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.35); }
.cta-final .btn.btn-outline:hover { background: #ffffff; color: #111; }

.cta-final-gallery { 
    position: relative; 
    overflow: hidden; 
    border-radius: 16px; 
    border: 1px solid rgba(255,255,255,0.08); 
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)); 
    backdrop-filter: blur(10px);
}
.cta-track { display: flex; gap: 12px; padding: 12px; animation: cta-marquee 22s linear infinite; }
.cta-final-gallery:hover .cta-track { animation-play-state: paused; }
.cta-img { width: 260px; height: 160px; object-fit: cover; border-radius: 12px; filter: saturate(1.05) contrast(1.05); transition: transform .35s ease, box-shadow .35s ease; box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.cta-img:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 16px 40px rgba(0,0,0,0.35); }

@keyframes cta-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (max-width: 1024px) { .cta-final { grid-template-columns: 1fr; } .cta-final-gallery { margin-top: 8px; } }
@media (max-width: 640px) { .cta-img { width: 200px; height: 130px; } .cta-final-section { padding: 40px 0 64px; } }

/* CTA canvas background - positioned behind content */
.cta-canvas-wrapper { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    z-index: 1;
    pointer-events: none;
}
.cta-canvas { 
    width: 100%; 
    height: 100%; 
    display: block; 
    opacity: 0.7;
    mix-blend-mode: screen;
} 
@media (max-width: 640px) {
    .cta-canvas { opacity: 0.7; }
} 