:root {
    --primary-orange: #14b8a6;
    --primary-blue: #0d9488;
    --light-orange: #2dd4bf;
    --light-blue: #5eead4;
    --dark-orange: #0f766e;
    --dark-blue: #134e4a;
}



.hero-zone {
    background: linear-gradient(to bottom, #f9fafb, #fff);
    padding: 70px 24px 100px;
}

.wrap {
    max-width: 1240px;
    margin: 0 auto;
}

.intro {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 56px;
}

.intro h1 {
    font-size: 3rem;
    font-weight: 300;
    color: #1a202c;
    line-height: 1.15;
    margin: 0 0 18px;
    letter-spacing: -0.01em;
}

.intro h1 span {
    font-weight: 600;
}

.intro p {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 28px;
}

.btns {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.btn-fill, .btn-line {
    padding: 13px 26px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.btn-fill {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
}

.btn-fill:hover {
    box-shadow: 0 6px 18px rgba(124, 58, 237, 0.35);
    transform: translateY(-2px);
}

.btn-line {
    background: #fff;
    color: #334155;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.btn-line:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, 120px);
    gap: 16px;
}

.box {
    border-radius: 18px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.box:hover::before {
    opacity: 1;
}

.box > i {
    font-size: 28px;
    margin-bottom: 12px;
    opacity: 0.95;
    flex-shrink: 0;
}

.box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 auto;
    line-height: 1.3;
    flex-grow: 1;
}

.box p {
    font-size: 0.88rem;
    opacity: 0.88;
    margin: 6px 0 0;
}

.box small {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.72rem;
    margin-top: 8px;
}

.box .big {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 4px;
    background: linear-gradient(135deg, #60a5fa, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: auto;
}

.tags span {
    background: rgba(255,255,255,0.25);
    padding: 5px 11px;
    border-radius: 14px;
    font-size: 0.76rem;
    backdrop-filter: blur(4px);
}

.row-layout {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.row-layout i {
    font-size: 24px;
    margin: 0;
}

.row-layout h3 {
    margin: 0;
}

.pills {
    display: flex;
    gap: 6px;
    margin-top: auto;
}

.pills span {
    background: rgba(255,255,255,0.25);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.76rem;
    backdrop-filter: blur(4px);
}

.box ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}

.box ul li {
    padding: 7px 0;
    font-size: 0.86rem;
    opacity: 0.9;
}

.cloud-bg {
    position: absolute;
    right: 24px;
    bottom: 24px;
    font-size: 56px;
    opacity: 0.22;
    margin: 0;
}

.content-area {
    position: relative;
    z-index: 1;
}

.mb {
    margin-bottom: 14px;
}

.quad {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.quad div {
    background: rgba(255,255,255,0.15);
    padding: 14px 12px;
    border-radius: 11px;
    text-align: center;
    backdrop-filter: blur(6px);
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.quad div:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.quad i {
    font-size: 20px;
    display: block;
    margin: 0 0 6px;
}

.quad span {
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.2;
}

/* Colors */
.purple { background: linear-gradient(135deg, #8b5cf6, #a78bfa); }
.slate { background: linear-gradient(135deg, #1e293b, #334155); }
.sky { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.flame { background: linear-gradient(135deg, #f97316, #fb923c); }
.mint { background: linear-gradient(135deg, #14b8a6, #2dd4bf); }
.indigo { background: linear-gradient(135deg, #6366f1, #818cf8); }
.ocean { background: linear-gradient(135deg, #06b6d4, #22d3ee); }
.crimson { background: linear-gradient(135deg, #dc2626, #ef4444); }
.rose { background: linear-gradient(135deg, #ec4899, #f472b6); }
.violet { background: linear-gradient(135deg, #7c3aed, #a855f7); }

/* Responsive */
@media (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .box { 
        grid-area: auto !important; 
        min-height: 160px;
        padding: 22px;
    }
}

@media (max-width: 640px) {
    .intro h1 { font-size: 2.2rem; }
    .hero-zone { padding: 50px 20px 70px; }
    .btns { flex-direction: column; }
    .btn-fill, .btn-line { width: 100%; text-align: center; }
    .grid { 
        grid-template-columns: 1fr; 
        gap: 12px; 
    }
    .box { 
        min-height: 180px;
        padding: 20px;
    }
    .quad { grid-template-columns: 1fr; }
}




/*Home */
       
        
        .hero,
        .hero *,
        .hero::before,
        .hero::after,
        .hero *::before,
        .hero *::after {
            box-sizing: border-box !important;
        }
        
        .hero {
            min-height: 90vh !important;
            display: flex !important;
            align-items: center !important;
            padding: 60px 120px !important;
            background: #fff !important;
            margin: 0 !important;
            position: relative !important;
            width: 100% !important;
        }
        
        .content-wrapper {
            display: flex !important;
            align-items: center !important;
            width: 100% !important;
            max-width: 1200px !important;
            margin: 0 auto !important;
            gap: 2rem !important;
            padding: 0 !important;
        }
        
        .text-content {
            text-align: left !important;
            flex: 0 0 50% !important;
            padding: 0 40px 0 0 !important;
            margin: 0 !important;
        }
        
        .hero h1 {
            font-size: 42px !important;
            color: #1a1a1a !important;
            margin: 0 0 20px 0 !important;
            padding: 0 !important;
            line-height: 1.2 !important;
            font-weight: 700 !important;
        }
        
        .hero .highlight {
            color: #14b8a6 !important;
            background: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 100%) !important;
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            background-clip: text !important;
            margin: 0 !important;
            padding: 0 !important;
        }
        
        .hero p {
            font-size: 16px !important;
            color: #525252 !important;
            margin: 0 0 30px 0 !important;
            padding: 0 !important;
            line-height: 1.6 !important;
        }
        
        .btn-group {
            display: flex !important;
            gap: 20px !important;
            flex-wrap: nowrap !important;
            margin: 0 !important;
            padding: 0 !important;
        }
        
        .hero .btn {
            padding: 14px 28px !important;
            margin: 0 !important;
            font-size: 15px !important;
            font-weight: 600 !important;
            border: none !important;
            border-radius: 10px !important;
            cursor: pointer !important;
            transition: all 0.3s ease !important;
            text-decoration: none !important;
            display: inline-block !important;
            white-space: nowrap !important;
        }
        
        .hero .btn-primary {
            background: #14b8a6 !important;
            color: white !important;
            box-shadow: 0 4px 12px rgba(20, 184, 166, 0.2) !important;
        }
        
        .hero .btn-primary:hover {
            background: #0d9488 !important;
            transform: translateY(-2px) !important;
            box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3) !important;
        }
        
        .hero .btn-secondary {
            background: transparent !important;
            color: #14b8a6 !important;
            border: 2px solid #14b8a6 !important;
        }
        
        .hero .btn-secondary:hover {
            background: #14b8a6 !important;
            color: white !important;
            transform: translateY(-2px) !important;
        }
        
        .mockup-container {
            position: relative !important;
            flex: 0 0 50% !important;
            height: 400px !important;
            display: flex !important;
            align-items: center !important;
            justify-content: flex-start !important;
            padding-left: 20px !important;
        }
     .screen {
    background: transparent !important;
    border-radius: 16px !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: visible !important; /* allow full image visibility */
}

.screen-desktop {
    width: 380px !important;
    height: auto !important; /* let height adjust naturally */
    transform: rotate(-2deg) !important;
    z-index: 1 !important;
    margin-left: 70px;
    margin-right: 0 !important;
}

.screen-mobile {
    width: 180px !important;
    height: auto !important;
    transform: rotate(5deg) !important;
    position: absolute !important;
    left: 400px !important;
    top: 50% !important;
    margin-top: -180px !important;
    z-index: 2 !important;
}

.screen img {
    width: 100% !important;
    height: auto !important; /* keep full aspect ratio */
    object-fit: contain !important;
    display: block !important;
    transform: none !important; /* remove shift */
}


        
        .screen-placeholder {
            width: 100% !important;
            height: 100% !important;
            background: #fff !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            color: #999 !important;
            font-size: 14px !important;
            text-align: center !important;
            padding: 20px !important;
        }
        
         
        @media (max-width: 1024px) {
            .hero {
                padding: 30px 60px !important;
                min-height: 80vh !important;
            }
            
            .content-wrapper {
                gap: 1.5rem !important;
            }
            
            .hero h1 {
                font-size: 44px !important;
            }
            
            .mockup-container {
                height: 350px !important;
            }
            
            .screen-desktop {
                width: 320px !important;
                height: 220px !important;
            }
            
            .screen-mobile {
                width: 150px !important;
                height: 300px !important;
                left: 240px !important;
                margin-top: -150px !important;
            }
        }
        
        /* For mobile */
        @media (max-width: 768px) {
            .content-wrapper {
                display: flex !important;
                flex-direction: column !important;
                align-items: center !important;
                width: 100% !important;
                max-width: 1200px !important;
                margin: 0 auto !important;
                gap: 2rem !important;
                padding: 0 !important;
            }
            
            .hero h1 {
                font-size: 34px !important;
            }
            
              
            .hero p {
                font-size: 14px !important;
                color: #525252 !important;
                margin-left:30px !important;
                margin-right:30px !important;
                padding: 0 !important;
                line-height: 1.6 !important;
            }
            
            .text-content {
                text-align: center !important;
                flex: 0 0 50% !important;
                padding: 0 0 0 0 !important;
                margin: 0 !important;
            }
            
            .btn-group {
                display: flex !important;
                flex-direction: column !important;
                gap: 20px !important;
                flex-wrap: nowrap !important;
                margin: 0 !important;
                padding: 0 !important;
            }
            
            .mockup-container {
                position: relative !important;
                flex: 0 0 50% !important;
                height: 400px !important;
                display: flex !important;
                align-items: center !important;
                justify-content: flex-start !important;
                padding-left: 0px !important;
                margin-top:40px !important;
            }
            
            .screen img{
                width:100% !important;
                height:100% !important;
                margin-left: 0px !important;
            }
            
            
            .screen-desktop {
                margin-left: 0px !important;
            }

        

        }
        
        
        .stats-section {
            padding: 5rem 2rem;
            background: linear-gradient(135deg, #f8fffe 0%, #e8f9f3 100%);
            position: relative;
            overflow: hidden;
        }
        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(20, 184, 166, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(18, 55, 63, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }
        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }
        .stats-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        .stats-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: #000;
            margin-bottom: 1rem;
            background-clip: text;
            background-size: 200% 100%;
            animation: gradientShift 4s ease-in-out infinite;
        }
        .stats-subtitle {
            font-size: 1.2rem;
            color: #12373f;
            opacity: 0.7;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }
        .stat-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            border: 1px solid rgba(20, 184, 166, 0.1);
            box-shadow: 
                0 8px 32px rgba(18, 55, 63, 0.08),
                0 2px 8px rgba(20, 184, 166, 0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #14b8a6, transparent);
            transition: left 0.6s ease;
        }
        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: 
                0 20px 48px rgba(18, 55, 63, 0.15),
                0 8px 24px rgba(20, 184, 166, 0.1);
            border-color: rgba(20, 184, 166, 0.3);
        }
        .stat-card:hover::before {
            left: 100%;
        }
        .stat-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.5rem;
            padding: 15px;
            background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(20, 184, 166, 0.05));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #14b8a6;
            transition: all 0.3s ease;
        }
        .stat-card:hover .stat-icon {
            background: linear-gradient(135deg, #14b8a6, #2dd4bf);
            color: white;
            transform: scale(1.1) rotate(5deg);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #12373f;
            margin-bottom: 0.5rem;
            display: block;
            line-height: 1;
        }
        .stat-label {
            font-size: 1.2rem;
            font-weight: 600;
            color: #12373f;
            margin-bottom: 1rem;
            opacity: 0.9;
        }
        .stat-description {
            font-size: 0.95rem;
            color: #12373f;
            opacity: 0.6;
            line-height: 1.5;
            margin: 0;
        }
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        .floating-shape {
            position: absolute;
            opacity: 0.03;
            animation: float 6s ease-in-out infinite;
        }
        .floating-shape:nth-child(1) {
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }
        .floating-shape:nth-child(2) {
            top: 20%;
            right: 15%;
            animation-delay: 2s;
        }
        .floating-shape:nth-child(3) {
            bottom: 20%;
            left: 20%;
            animation-delay: 4s;
        }
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        /* Mobile-First Responsive Design - Significantly Improved */
        @media (max-width: 1024px) {
            .stats-section {
                padding: 4rem 1.5rem;
            }
            .stats-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .stats-section {
                padding: 3rem 1rem 4rem 1rem;
                margin-top:30px !important;
                background: linear-gradient(135deg, #f8fffe 0%, #e8f9f3 100%);
            }
            .stats-header {
                margin-bottom: 3rem;
                padding: 0 0.5rem;
            }
            .stats-title {
                font-size: 2.5rem;
                margin-bottom: 1.5rem;
                line-height: 1.2;
                background: linear-gradient(135deg, #12373f 0%, #14b8a6 50%, #12373f 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }
            .stats-subtitle {
                font-size: 1.1rem;
                line-height: 1.7;
                opacity: 0.8;
                padding: 0 1rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
                margin-top: 2.5rem;
            }
            .stat-card {
                padding: 2.5rem 2rem;
                border-radius: 16px;
                margin: 0 0.5rem;
                box-shadow: 
                    0 6px 24px rgba(18, 55, 63, 0.08),
                    0 2px 8px rgba(20, 184, 166, 0.05);
            }
            .stat-icon {
                width: 70px;
                height: 70px;
                margin-bottom: 2rem;
                padding: 18px;
            }
            .stat-number {
                font-size: 2.8rem;
                margin-bottom: 0.75rem;
                font-weight: 800;
                color: #12373f;
            }
            .stat-label {
                font-size: 1.3rem;
                margin-bottom: 1.5rem;
                font-weight: 600;
                line-height: 1.3;
            }
            .stat-description {
                font-size: 1rem;
                line-height: 1.6;
                opacity: 0.7;
                color: #12373f;
                max-width: 100%;
            }
            
            /* Improve floating elements on mobile */
            .floating-elements {
                display: none; /* Hide on mobile for better performance */
            }
        }

        @media (max-width: 480px) {
            .stats-section {
                padding: 2.5rem 0.75rem 3.5rem 0.75rem;
            }
            .stats-header {
                margin-bottom: 2.5rem;
                padding: 0 0.25rem;
            }
            .stats-title {
                font-size: 2.2rem;
                margin-bottom: 1.25rem;
                line-height: 1.15;
            }
            .stats-subtitle {
                font-size: 1.05rem;
                padding: 0 0.5rem;
            }
            .stats-grid {
                margin-top: 2rem;
                gap: 1.75rem;
            }
            .stat-card {
                padding: 2.25rem 1.75rem;
                margin: 0 0.25rem;
                border-radius: 14px;
            }
            .stat-icon {
                width: 65px;
                height: 65px;
                margin-bottom: 1.75rem;
                padding: 16px;
            }
            .stat-number {
                font-size: 2.6rem;
                margin-bottom: 0.7rem;
            }
            .stat-label {
                font-size: 1.25rem;
                margin-bottom: 1.25rem;
                line-height: 1.25;
            }
            .stat-description {
                font-size: 0.95rem;
                line-height: 1.55;
            }
        }

        @media (max-width: 375px) {
            .stats-section {
                padding: 2rem 0.5rem 3rem 0.5rem;
            }
            .stats-title {
                font-size: 1.95rem;
                line-height: 1.1;
            }
            .stats-subtitle {
                font-size: 1rem;
            }
            .stat-card {
                padding: 2rem 1.5rem;
                margin: 0;
            }
            .stat-icon {
                width: 60px;
                height: 60px;
                margin-bottom: 1.5rem;
                padding: 15px;
            }
            .stat-number {
                font-size: 2.4rem;
            }
            .stat-label {
                font-size: 1.2rem;
                margin-bottom: 1rem;
            }
            .stat-description {
                font-size: 0.9rem;
                line-height: 1.5;
            }
        }

        /* Enhanced hover effects for touch devices */
        @media (hover: none) and (pointer: coarse) {
            .stat-card:active {
                transform: scale(0.98);
                transition: transform 0.1s ease;
            }
            .stat-card:hover {
                transform: none;
            }
        }

        /* Better contrast for mobile readability */
        @media (max-width: 768px) {
            .stat-description {
                opacity: 0.75;
            }
            .stats-subtitle {
                opacity: 0.85;
            }
        }


/* END- Home */

.wpcf7-form  p{
	margin-bottom:1rem !important;
}

.wpcf7-form {
	margin-top:25px !important;
}

.wpcf7-form-control.wpcf7-submit{
	width:100% !important;
}
.hide-on-mobile{
		display:block !important
	}
	.show-on-mobile{
		display:none !important;
	}

.page-headline .title{
  
 	font-size:3rem !important; 
    display:none !important;
}

.color-bg-block-about{
	background:linear-gradient(135deg, #0d9488, #0f766e) !important;
}

.color-bg-block{
	position: relative;
            overflow: hidden;
            background-color:#134e4a !important;
            
            padding: 1rem 1rem;
            box-sizing: border-box;
	
}

.header-wrap{
	max-width:var(--clb-container-width) !important;
	padding-left:var(--clb-grid-gutter) !important;
	padding-right:var(--clb-grid-gutter) !important;
	margin:0 auto !important;
}

.section-heading h1{
    color:#14b8a6 !important;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.about-section-heading h2{    
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.clb__heading h1,h2{	
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.home-hero-paragraph p{
	
	color:#fff;
	font-size:18px;
	font-weight:normal;
}
.home-hero-heading h1, h2{
	color:#000 !important;
}

.clb__heading h3{
	  color:#14b8a6 !important;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-heading h2{
    color:#14b8a6 !important;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-heading h2 {
    color: #1a202c;
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 800;
	  line-height:1.15;
    background: linear-gradient(90deg, var(--dark-orange), var(--dark-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-hero-heading h2 {
    color: #ffffff !important;
    font-size: 2.75rem;
    margin-bottom: 1rem;
    font-weight: 800;
	  line-height:1.15;    
}

.home-hero-heading h3 {
    color: #1a202c;
    font-size: 2.75rem;
    margin-bottom: 1rem;
		line-height:1.15;
    font-weight: 800;
    background: linear-gradient(90deg, var(--dark-orange), var(--dark-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.color-bg-block h2{
	
	color: #1a202c;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 800;
            line-height:1.15;
}

.color-bg-block h3{
	font-size: 1.75rem;
	
	  color:#fff !important;
}

.section-subheading h4{
	color:#fff !important;
}

.section-heading h4{
    background: linear-gradient(90deg, #14b8a6, #0d9488);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    margin-bottom: 1rem;
}

.counter .number{
	background: linear-gradient(90deg, #14b8a6, #0d9488);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	text-align:left !important;
}

.counter-number.-with-increaser .holder::after{
	
background: linear-gradient(90deg, #14b8a6, #0d9488);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#ohio-custom-67e4f138c6e41 .icon-group{
	color: #4a5568 !important;
}

.counter .title{
	color: #4a5568 !important;
}

.section-subheading {
    color: #4a5568;
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-background {
   position: relative;
            overflow: hidden;
            background-color: #134e4a;
            
            padding: 4rem 1rem;
            box-sizing: border-box;
	margin-left:-100px !important;
	
	margin-right:-100px !important;
}

.card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

body.home .logo-sticky img {
    content: url('https://trikara.com/wp-content/uploads/2024/11/triko-logo-2.png');
}

body.page-id-19694 .logo-sticky img {
    content: url('https://trikara.com/wp-content/uploads/2024/11/triko-logo-2.png');
}

.page-headline{
  display:none !important;
}
  
.icon-box-icon img{
	width:100px !important;
	height:100px !important;
}

.home-icon-box-second-row{
	margin-top:70px !important;
}

.home-icon img{
	width:100px !important;
	height:100px !important;
}

.home-icon-box {
    width: 25% !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: white;
    padding: 10px;
    font-weight: bold;
}

.home-icon-box .wpb_wrapper{
	width:260px !important;
	margin-left:-10px !important;
}

.home-icon-box:nth-child(1) {
    background: linear-gradient(to bottom right, #14b8a6, #2dd4bf);
}

.home-icon-box:nth-child(2) {
    background: linear-gradient(to bottom right, #0d9488, #14b8a6);
}

.home-icon-box:nth-child(3) {
    background: linear-gradient(to bottom right, #0f766e, #14b8a6);
}

.home-icon-box:nth-child(4) {
    background: linear-gradient(to bottom right, #2dd4bf, #5eead4);
}

.home-icon-box-row{
	
}

.color-switcher-mobile, .cart-customlocation, .cart-button {
	display:none !important;
}

.post-meta-holder{
	display:none !important;
}

.home-page-top-section-column-1{
	width:50% !important;
}

.home-page-top-section-column-2{
	width:50% !important;
		
}
.ohio-widget .subtitle{
	display:none !important;
}

.breadcrumb-holder{
	display:none !important;
}

h1.title{
	font-family:"Roboto" sans-serif !important;	
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    padding: 20px;
    margin: 10% auto;
    width: 25%;
    border-radius: 8px;
    text-align: left;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}

.hidden {
    display: none;
}

.checkmark {
    width: 50px;
    height: 50px;
    stroke: #14b8a6;
    stroke-width: 5;
}

.checkmark-circle {
    stroke-dasharray: 166, 166;
    stroke-dashoffset: 166;
    stroke-linecap: round;
    animation: circleAnimation 0.6s ease-out forwards;
}

.checkmark-check {
    stroke-dasharray: 48, 48;
    stroke-dashoffset: 48;
    stroke-linecap: round;
    animation: checkAnimation 0.3s ease-out 0.6s forwards;
}

@keyframes circleAnimation {
    100% { stroke-dashoffset: 0; }
}

@keyframes checkAnimation {
    100% { stroke-dashoffset: 0; }
}

.secondary-button {
    background-color: #14b8a6;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
}

.secondary-button:hover {
    background-color: #0d9488;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(20, 184, 166, 0.35);
}

.cta-highlight{
	color:#14b8a6 !important;
}

.button.ohio-widget{
		background-color:#14b8a6 !important;
	color:white !important;
	}

.button.ohio-widget.talk-to-an-expert-button{
	background-color:transparent !important;
	border-color:#14b8a6 !important;
	color:#14b8a6 !important;
}

.button.ohio-widget{
	background-color:#14b8a6 !important;
	color:white !important;	
}

.button.ohio-widget:hover{
	background-color:#0d9488 !important;	
}

.primary-cta, .cta-primary{
	background:#14b8a6 !important;
	color:white !important;	
}

.primary-cta:hover, .cta-primary:hover{
	background-color:#0d9488 !important;	
}

@media (max-width: 768px) {
    .color-bg-block {
		margin: 2px !important; }
		.mobile-margin-top{
			margin-top:72px;
		}

	.modal-content {
    width: 90%;
    
}
	
	.button.ohio-widget{
		width:100% !important;
		background-color:#14b8a6 !important;
	}
	
	.wpcf7-submit{
		width:100% !important;
	}
	
	.header .copyright{
		display:none !important;
	}
	
	.hide-on-mobile{
		display:none !important;
	}
	.show-on-mobile{
		display:block !important;
	}
	
	.home-icon-box{
	width:120% !important;
	
}
	.home-icon-box-row{
	width:100% !important;
	
}
	
	.home-icon-box-left{
	width:95% !important;
	margin-right:0% !important;
}

.home-icon-box-right{
	width:95% !important;
	margin-left:0% !important;
}
	
	.ohio-widget.counter{
		text-align:center !important;
	}
	
	.home-icon-box-second-row{
	margin-top:-10px !important;
}
	
	.home-icon-box .wpb_wrapper{
	width:300px !important;
	margin-left:5px !important;
}
	
	.about-page-image{
		margin-top:50px !important;
	}
	
	.home-hero-heading h3 {
		font-size:2rem !important;		
	}
	
	.margin-top-little{
	margin-top:50px;
}
	
}

.home .site-content{
	background-color:#fff !important;
}

.demo-main-screen{
	height:80vh !important; 
	margin-left:-100px !important;
	margin-right:-100px !important;
	padding-left:50px !important;
	padding-right:50px !important;
	background-color: #fff !important;
	background-image: none !important;
}

@media (max-width: 768px) {

	.demo-main-screen{
	height:80vh !important;
		background-image: none !important;
	margin-left:0px !important;
	margin-right:0px !important;
	padding-left:0px !important;
	padding-right:0px !important;
}
	
}

.tabs.-with-button .tabs-nav-line, 
.tabs-nav-link {
    min-height: 2.5rem;
    height: 2.5rem;
}

.service-table-features{
	width:60% !important;
	margin-left:20% !important;
}

.mega-menu-canvas {
  display: none;
  position: absolute;
  left: 0;
  width: 150%;
  background: #fff;
  padding: 40px;
  top: 100%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  z-index: 999;
}
.mega-menu-canvas.active {
  display: block;
}
.mega-menu-content {
  display: grid;
  gap: 20px;
}
.mega-menu-content.two-cols {
  grid-template-columns: repeat(2, 1fr);
}
.mega-menu-content.three-cols {
  grid-template-columns: repeat(3, 1fr);
}
.mega-menu-content h4 {
  font-size: 16px;
  margin: 12px 0;
}
.mega-menu-content h4 a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
}
.mega-menu-content h4 i {
  margin-right: 10px;
  color: #14b8a6;
  width: 20px;
  text-align: center;
}

.wpcf7-form{
	text-align:left !important;
}

.wpcf7-checkbox .wpcf7-list-item{
	padding-top:15px !important;
}

.final-cta-form label {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
    margin-top: 1rem;
}

.final-cta-form label:first-of-type {
    margin-top: 0;
}

.final-cta-form .wpcf7-list-item {
    margin: 0 !important;
}

.final-cta-form .wpcf7-list-item label {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    cursor: pointer;
    margin: 0 !important;
}

.final-cta-form .wpcf7-list-item {
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

.final-cta-form .wpcf7-list-item-label {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.3 !important;
    flex-grow: 1 !important;
}

.final-cta-form .wpcf7-list-item:hover .wpcf7-list-item-label {
    color: #14b8a6 !important;
}

@media (max-width: 768px) {
    .final-cta-form .wpcf7-checkbox {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
}

@media (max-width: 480px) {
    .final-cta-form .wpcf7-list-item-label {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 768px) {
    .header-1{
       display:none !important;
    }
	
	.hero-section{
		margin-top:-20px !important;
	}
	
	.mob-standard-logo{
		height:30px !important;
	}
	
	.mob-menu-header-holder{
	padding-top:10px !important;
	background-color:#fff !important;
}

.header-cap{
	height:8vh !important;
	
}

.mob-menu-header-holder{
	padding-bottom:0px !important;
}
}

.wpcf7-form label{
	color:white !important;
}

.wpcf7-list-item-label{
	color:white !important;
}

.wpcf7-form br{
	display:none !important;
}

.wpcf7-checkbox{
	display:flex;
	flex-direction:column
}

@media only screen and (max-width: 1024px){

.mobmenul-container i {
    color: #444 !important;
}
}

.industry-hero{
	margin-top:20px !important;	
}

.page-id-152817 .hero-section{
	padding-top:20px !important;
	margin-top:0px !important;
}

.hero-section {
    margin-top: 20px !important;
}

.final-cta-form .wpcf7-list-item{
	padding:5px !important;
}

.service-page-container {
    line-height: 1.6;
    color: #12373f;
    overflow-x: hidden;
}

.service-page-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.service-page-container .final-cta-form .wpcf7 {
    width: 100%;
}

.service-page-container .final-cta-form .wpcf7-form {
    width: 100%;
}

.service-page-container .final-cta-form .wpcf7-form p {
    margin-bottom: 1.5rem;
}

.service-page-container .final-cta-form .form-label {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.service-page-container .final-cta-form .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.service-page-container .final-cta-form .form-input {
    width: 100% !important;
    padding: 1rem !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    color: white !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
    margin-top: 0.5rem !important;
}

.service-page-container .final-cta-form .form-input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

.service-page-container .final-cta-form .form-input:focus {
    outline: none !important;
    border-color: #14b8a6 !important;
    background: rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2) !important;
}

.service-page-container .final-cta-form select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.5rem;
    padding-right: 3rem !important;
    cursor: pointer;
}

.service-page-container .final-cta-form select.form-input option {
    background: #12373f !important;
    color: white !important;
    padding: 0.5rem !important;
}

.guarantee{
    display: none !important;
}

.service-page-container .final-cta-form .form-submit {
    background: #14b8a6 !important;
    color: #fff !important;
    padding: 1rem 2.5rem !important;
    border-radius: 10px !important;
    border: none !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.4s ease !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.2) !important;
    margin-top: 1rem !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
}

.service-page-container .final-cta-form .form-submit:hover {
    background: #0d9488 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3) !important;
    color: #12373f !important;
}

.service-page-container .final-cta-form .wpcf7-spinner {
    display: none;
}

.service-page-container .final-cta-form .wpcf7-response-output {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    color: white;
    font-size: 0.9rem;
}

.service-page-container .final-cta-form .wpcf7-validation-errors {
    background: rgba(20, 184, 166, 0.1) !important;
    border: 1px solid rgba(20, 184, 166, 0.3) !important;
    color: #14b8a6 !important;
}

.service-page-container .final-cta-form .wpcf7-mail-sent-ok {
    background: rgba(20, 184, 166, 0.1) !important;
    border: 1px solid rgba(20, 184, 166, 0.3) !important;
    color: #14b8a6 !important;
}

.service-page-container .final-cta-form .hidden-fields-container {
    display: none;
}

.service-page-container .final-cta-form .wpcf7-pum {
    display: none;
}

.service-page-container .final-cta-form br {
    display: none;
}

.service-page-container .final-cta-form .screen-reader-response {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.service-page-container .final-cta-form .wpcf7-not-valid {
    border-color: rgba(20, 184, 166, 0.5) !important;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2) !important;
}

.service-page-container .final-cta-form .wpcf7-not-valid:focus {
    border-color: #14b8a6 !important;
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.3) !important;
}

.service-page-container .final-cta-form .wpcf7-form.submitting .form-submit {
    opacity: 0.8;
    cursor: not-allowed;
    pointer-events: none;
}

.service-page-container .final-cta-form .wpcf7-form.submitting .form-submit::after {
    content: "";
    width: 16px;
    height: 16px;
    margin-left: 10px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.service-page-container .hero-section {
    min-height: 70vh;
    background: #fff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 1rem;
    margin-top: 120px;
    border-radius: 20px;
    margin-left: 0;
    margin-right: 0;
}

.service-page-container .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(20, 184, 166, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(20, 184, 166, 0.08) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
    border-radius: 20px;
}

@keyframes heroGlow {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.service-page-container .hero-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
    padding: 0 2rem;
}

.service-page-container .hero-content {
    color: white;
    max-width: 100%;
}

.service-page-container .section-badge i,
.service-page-container .hero-badge i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.service-page-container .problem-impact i {
    margin-right: 0.5rem;
    color: #14b8a6;
    font-size: 1rem;
}

.service-page-container .section-badge,
.service-page-container .hero-badge {
    display: inline-flex;
    align-items: center;
}

.service-page-container .hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(20, 184, 166, 0.15);
    color: #14b8a6;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(20, 184, 166, 0.3);
}

.service-page-container .hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    background-size: 200% 100%;
    animation: textShimmer 4s ease-in-out infinite;
}

@keyframes textShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.service-page-container .hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 2rem;
    color:#525252 !important;
}

.service-page-container .hero-cta-section {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
}

.service-page-container .primary-cta {
    background: #14b8a6;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.2);
    position: relative;
    overflow: hidden;
    max-width: fit-content;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
.service-page-container .primary-cta {
    font-size: 0.85rem;
}
}

.service-page-container .primary-cta span {
    color: #fff !important;
}

.service-page-container .primary-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.service-page-container .primary-cta:hover {
    background: #0d9488 !important;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
    color: white !important;
}

.service-page-container .primary-cta:hover span {
    color: white !important;
}

.service-page-container .primary-cta:hover::before {
    left: 100%;
}

.service-page-container .secondary-cta {
    color: white !important;
    text-decoration: none !important;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(20, 184, 166, 0.3);
    padding-bottom: 0.3rem;
    max-width: fit-content;
}

.service-page-container .secondary-cta:hover {
    border-bottom-color: #14b8a6;
    color: #14b8a6 !important;
    transform: translateX(5px);
    text-decoration: none !important;
}

.service-page-container .secondary-cta span {
    color: white !important;
}

.service-page-container .secondary-cta:hover span {
    color: #14b8a6 !important;
}

.service-page-container .hero-stats {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 1.8rem !important;
    margin-top: 0 !important;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    height: fit-content;
}

.service-page-container .hero-stats .stat-item {
    font-size: 1.3rem !important;
    gap: 1.5rem !important;
    align-items: center !important;
    padding: 0.5rem 0;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    color: white;
    box-shadow: none;
    transition: color 0.3s ease;
    overflow: visible;
    border-radius: 0;
    line-height: 1.2 !important;
    margin-bottom: 0;
}

.service-page-container .hero-stats .stat-item::before {
    display: none;
}

.service-page-container .hero-stats .stat-item:hover {
    color: #14b8a6;
    cursor: default;
    transform: none;
    box-shadow: none;
}

.service-page-container .hero-stats .stat-item i {
    font-size: 2.5rem !important;
    min-width: 50px;
    color: #14b8a6 !important;
}

.service-page-container .hero-stats .stat-label {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    color: white !important;
    opacity: 0.9;
    margin: 0;
    padding: 0;
    transition: none;
}

.service-page-container .hero-stats .stat-item:hover .stat-label {
    opacity: 1;
    color: white !important;
}

.service-page-container .hero-visual {
    display: none;
}

.service-page-container .problem-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f9f3 100%);
    position: relative;
}

@media (max-width: 768px) {
.service-page-container .problem-section {
    padding: 0rem 0rem;
    padding-top:2rem;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f9f3 100%);
    position: relative;
}
}

.service-page-container .problem-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.service-page-container .section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(20, 184, 166, 0.2);
}

.service-page-container .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #12373f 0%, #14b8a6 50%, #12373f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.service-page-container .section-subtitle {
    font-size: 1.3rem;
    color: #12373f;
    opacity: 0.7;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-page-container .problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-page-container .problem-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: left;
    border: 1px solid rgba(20, 184, 166, 0.1);
    box-shadow: 
        0 8px 32px rgba(18, 55, 63, 0.08),
        0 2px 8px rgba(20, 184, 166, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-page-container .problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #14b8a6, transparent);
    transition: left 0.6s ease;
}

.service-page-container .problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 48px rgba(18, 55, 63, 0.15),
        0 8px 24px rgba(20, 184, 166, 0.1);
    border-color: rgba(20, 184, 166, 0.3);
}

.service-page-container .problem-card:hover::before {
    left: 100%;
}

.service-page-container .problem-icon {
    width: 90px !important;
    height: 90px !important;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(20, 184, 166, 0.05));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #14b8a6;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.1);
}

.service-page-container .problem-icon i {
    font-size: 3rem !important;
    transition: all 0.3s ease;
}

.service-page-container .problem-card:hover .problem-icon {
    background: linear-gradient(135deg, #14b8a6, #2dd4bf);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.3);
}

.service-page-container .problem-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #12373f;
}

.service-page-container .problem-description {
    font-size: 1rem;
    color: #12373f;
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-page-container .problem-impact {
    background: rgba(20, 184, 166, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #14b8a6;
    font-size: 0.9rem;
    color: #12373f;
    font-weight: 600;
}

.service-page-container .solution-section {
    padding: 6rem 2rem;
    background: white;
    position: relative;
}

@media (max-width: 768px) {
.service-page-container .solution-section {
    padding: 0rem 0rem;
    background: white;
    position: relative;
}
}

.service-page-container .solution-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-page-container .solution-header {
    text-align: center;
    margin-bottom: 4rem;
}

.service-page-container .solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-page-container .solution-card {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.03), rgba(20, 184, 166, 0.01));
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(20, 184, 166, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-page-container .solution-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.1), transparent 70%);
    border-radius: 50%;
    transform: translate(30px, -30px);
    transition: all 0.4s ease;
}

.service-page-container .solution-card:hover {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(20, 184, 166, 0.03));
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(20, 184, 166, 0.15);
}

.service-page-container .solution-card:hover::after {
    transform: translate(20px, -20px) scale(1.2);
}

.service-page-container .solution-icon {
    width: 90px !important;
    height: 90px !important;
    background: linear-gradient(135deg, #14b8a6, #2dd4bf);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(20, 184, 166, 0.3);
}

.service-page-container .solution-icon i {
    font-size: 3rem !important;
    transition: all 0.3s ease;
}

.service-page-container .solution-card:hover .solution-icon {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 8px 28px rgba(20, 184, 166, 0.4);
}

.service-page-container .solution-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #12373f;
}

.service-page-container .solution-description {
    font-size: 1rem;
    color: #12373f;
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-page-container .solution-benefits {
    list-style: none;
    padding: 0;
}

.service-page-container .solution-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0rem;
    font-size: 0.95rem;
    color: #12373f;
    opacity: 0.8;
}

.service-page-container .solution-benefits li::before {
    content: '◉';
    color: #14b8a6;
    font-weight: bold;
    font-size: 1.5rem;
}

.service-page-container .cta-mid-section {
    background: linear-gradient(135deg, #12373f 0%, #1a4a54 100%);
    padding: 4rem 2rem;
    margin: 4rem 2rem;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-page-container .cta-mid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(20, 184, 166, 0.1), transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(20, 184, 166, 0.08), transparent 60%);
}

.service-page-container .cta-mid-content {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin: 0 auto;
}

.service-page-container .cta-mid-title {
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, white 0%, #14b8a6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-page-container .cta-mid-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-page-container .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.service-page-container .cta-primary {
    background: #14b8a6;
    color: white !important;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.service-page-container .cta-primary span {
    color: white !important;
}

.service-page-container .cta-primary:hover {
    background: #0d9488 !important;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
    color: white !important;
}

.service-page-container .cta-primary:hover span {
    color: white !important;
}

.service-page-container .cta-secondary {
    color: white !important;
    padding: 1.2rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    text-decoration: none !important;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    background: transparent;
}

.service-page-container .cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-2px);
    color: white !important;
    text-decoration: none !important;
}

.service-page-container .cta-secondary span {
    color: white !important;
    transition: color 0.3s ease;
}

.service-page-container .cta-secondary:hover span {
    color: white !important;
}

.service-page-container .process-section {
    padding: 6rem 2rem;
}

@media (max-width: 768px) {
.service-page-container .process-section {
    padding: 0rem 0rem;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f9f3 100%);
}
}

.service-page-container .process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-page-container .process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.service-page-container .process-timeline {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    position: static;
    overflow-x: hidden;
    padding-bottom: 1rem;
    flex-wrap: nowrap;
}

.service-page-container .process-timeline::-webkit-scrollbar {
    height: 8px;
}

.service-page-container .process-timeline::-webkit-scrollbar-track {
    background: rgba(20, 184, 166, 0.1);
    border-radius: 10px;
}

.service-page-container .process-timeline::-webkit-scrollbar-thumb {
    background: #14b8a6;
    border-radius: 10px;
}

.service-page-container .process-step {
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    position: relative;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    min-height: 380px;
    background: white;
    border-radius: 20px;
    padding: 1.5rem 2rem !important;
    box-shadow: 0 8px 32px rgba(18, 55, 63, 0.08);
    border: 1px solid rgba(20, 184, 166, 0.1);
    transition: all 0.4s ease;
    flex-shrink: 1;
    box-sizing: border-box;
}

.service-page-container .process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(20, 184, 166, 0.15);
}

.service-page-container .process-step::after {
    content: '→';
    position: absolute;
    top: 30%;
    right: -1.5rem;
    font-size: 2rem;
    color: #14b8a6;
    z-index: 5;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(20, 184, 166, 0.2);
    transition: all 0.3s ease;
}

.service-page-container .process-step:hover::after {
    transform: scale(1.1);
    background: #14b8a6;
    color: white;
}

.service-page-container .process-step:last-child::after {
    display: none;
}

.service-page-container .process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #14b8a6, #2dd4bf);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(20, 184, 166, 0.3);
    flex-shrink: 0;
}

.service-page-container .process-content {
    padding: 0;
    text-align: left;
    flex-grow: 1;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 100% !important;
}

.service-page-container .process-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #12373f;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-page-container .process-title::before {
    display: none;
}

.service-page-container .process-description {
    font-size: 0.95rem;
    color: #12373f;
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-page-container .process-deliverables {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.05), rgba(20, 184, 166, 0.02));
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #14b8a6;
    font-size: 0.85rem;
    color: #12373f;
    font-weight: 600;
    text-align: left;
    line-height: 1.4;
    margin-top: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.service-page-container .process-deliverables i {
    color: #14b8a6;
    margin-right: 0.5rem;
}

.service-page-container .final-cta-section {
    background: linear-gradient(135deg, #12373f 0%, #1a4a54 50%, #12373f 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-page-container .final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(20, 184, 166, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(20, 184, 166, 0.1) 0%, transparent 50%);
    animation: finalGlow 10s ease-in-out infinite alternate;
}

@keyframes finalGlow {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.service-page-container .final-cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.service-page-container .final-cta-title {
    color: white;
    font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, white 0%, #14b8a6 50%, white 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: textShimmer 4s ease-in-out infinite;
}

.service-page-container .final-cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.service-page-container .final-cta-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.service-page-container .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.service-page-container .form-label {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.service-page-container .form-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-page-container .form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.service-page-container .form-input:focus {
    outline: none;
    border-color: #14b8a6;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2);
}

.service-page-container .form-input option {
    background: #12373f;
    color: white;
}

.service-page-container .form-submit {
    background: linear-gradient(135deg, #14b8a6 0%, #2dd4bf 100%);
    color: white !important;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.service-page-container .form-submit:hover {
    background: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.3);
    color: white !important;
}

.service-page-container .guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

@media (max-width: 1200px) {
    .service-page-container .hero-section {
        margin-top: 120px;
        padding: 1.5rem;
    }
    
    .service-page-container .hero-container {
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .service-page-container .hero-stats {
        padding: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .service-page-container .hero-container {
        grid-template-columns: 1fr !important;
        gap: 3rem;
        text-align: center;
    }
    
    .service-page-container .hero-stats {
        margin-top: 3rem !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 1.5rem !important;
        padding: 1.5rem;
    }
    
    .service-page-container .hero-stats .stat-item {
        flex: 1;
        min-width: 200px;
        font-size: 1.1rem !important;
    }
    
    .service-page-container .hero-stats .stat-item i {
        font-size: 2rem !important;
        min-width: 40px;
    }

    .service-page-container .process-timeline {
        flex-direction: column;
        gap: 2rem;
        align-items: stretch;
    }

    .service-page-container .process-step {
        min-width: auto;
        max-width: 100%;
    }

    .service-page-container .process-step::after {
        display: none;
    }

    .service-page-container .process-content {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .service-page-container .hero-section {
        margin-top: 80px;
        padding: 1rem;
    }
    
    .service-page-container .hero-stats {
        flex-direction: column !important;
        gap: 1.2rem !important;
        padding: 1.2rem;
    }
    
    .service-page-container .hero-stats .stat-item {
        font-size: 1rem !important;
        min-width: auto;
    }
    
    .service-page-container .hero-stats .stat-item i {
        font-size: 1.8rem !important;
        min-width: 35px;
    }
    
    .service-page-container .hero-stats .stat-label {
        font-size: 1rem !important;
    }

    .service-page-container .hero-title {
        font-size: 2.5rem;
    }

    .service-page-container .section-title {
        font-size: 2.2rem;
    }

    .service-page-container .problem-icon, 
    .service-page-container .solution-icon {
        width: 70px !important;
        height: 70px !important;
    }
    
    .service-page-container .problem-icon i, 
    .service-page-container .solution-icon i {
        font-size: 2.2rem !important;
    }

    .service-page-container .problem-grid,
    .service-page-container .solution-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-page-container .cta-buttons {
        flex-direction: column;
    }

    .service-page-container .cta-mid-section,
    .service-page-container .final-cta-section {
        margin: 2rem 1rem;
        padding: 3rem 1.5rem;
    }
    
    @media (max-width: 768px) {
    .service-page-container .cta-mid-section,
    .service-page-container .final-cta-section {
        margin: 1rem 0rem;
        padding: 3rem 1.5rem;
        border-radius: 5px;
    }
}

    .service-page-container .final-cta-title {
        font-size: 2.2rem;
    }

    .service-page-container .process-step {
        padding: 1.5rem;
        font-size: 0.9rem;
    }

    .service-page-container .process-title {
        font-size: 1.1rem;
    }

    .service-page-container .process-description {
        font-size: 0.9rem;
    }

    .service-page-container .process-deliverables {
        font-size: 0.8rem;
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .service-page-container .hero-section {
        margin-top: 60px;
        padding: 1rem;
    }
    
    .service-page-container .hero-stats .stat-item i {
        font-size: 1.5rem !important;
    }

    .service-page-container .hero-title {
        font-size: 2rem;
    }

    .service-page-container .section-title {
        font-size: 1.8rem;
    }

    .service-page-container .final-cta-form {
        padding: 1.5rem;
    }
    
    .service-page-container .problem-icon, 
    .service-page-container .solution-icon {
        width: 65px !important;
        height: 65px !important;
    }
    
    .service-page-container .problem-icon i, 
    .service-page-container .solution-icon i {
        font-size: 2rem !important;
    }

    .service-page-container .final-cta-form .form-input {
        padding: 0.8rem !important;
        font-size: 0.9rem !important;
    }
    
    .service-page-container .final-cta-form .form-submit {
        padding: 0rem 1rem !important;
        font-size: 0.8rem !important;
    }
}

/*Industry pages */


* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            line-height: 1.6;
            color: #12373f;
            overflow-x: hidden;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        /* Contact Form 7 Styling for Automotive Industry */
        .cta-form .wpcf7 {
            width: 100%;
        }

        .cta-form .wpcf7-form {
            width: 100%;
        }

        .cta-form .wpcf7-form p {
            margin-bottom: 1.5rem;
        }

        .cta-form .form-label {
            color: white;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            display: block;
        }

        .cta-form .wpcf7-form-control-wrap {
            display: block;
            width: 100%;
        }

        .cta-form .form-input {
            width: 100% !important;
            padding: 1rem !important;
            border: 1px solid rgba(255, 255, 255, 0.2) !important;
            background: rgba(255, 255, 255, 0.1) !important;
            border-radius: 10px !important;
            color: white !important;
            font-size: 1rem !important;
            transition: all 0.3s ease !important;
            box-sizing: border-box !important;
            margin-top: 0.5rem !important;
        }

        .cta-form .form-input::placeholder {
            color: rgba(255, 255, 255, 0.7) !important;
        }

        .cta-form .form-input:focus {
            outline: none !important;
            border-color: #62d099 !important;
            background: rgba(255, 255, 255, 0.15) !important;
            box-shadow: 0 0 0 3px rgba(98, 208, 153, 0.2) !important;
        }

        .cta-form select.form-input {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M7 10l5 5 5-5z'/></svg>");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1.5rem;
            padding-right: 3rem !important;
            cursor: pointer;
        }

        .cta-form select.form-input option {
            background: #12373f !important;
            color: white !important;
            padding: 0.5rem !important;
        }

        .cta-form .form-submit {
            background: linear-gradient(135deg, #62d099 0%, #4ade80 100%) !important;
            color: white !important;
            padding: 1.2rem 2.5rem !important;
            border-radius: 12px !important;
            border: none !important;
            font-size: 1.1rem !important;
            font-weight: 700 !important;
            cursor: pointer !important;
            transition: all 0.3s ease !important;
            width: 100% !important;
            box-shadow: 0 4px 20px rgba(98, 208, 153, 0.3) !important;
        }

        .cta-form .form-submit:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 8px 30px rgba(98, 208, 153, 0.4) !important;
            color: white !important;
        }

        /* Industry Hero - Same styling as original pages */
        .industry-hero {
            min-height: 70vh;
            background: #fff;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 2rem 1rem;
            margin-top: 120px; /* Same as original pages */
            border-radius: 20px;
            margin-left: 0;
            margin-right: 0;
        }

        .industry-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(98, 208, 153, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(230, 126, 59, 0.08) 0%, transparent 50%);
            animation: heroGlow 8s ease-in-out infinite alternate;
            border-radius: 20px;
        }

        @keyframes heroGlow {
            0% { opacity: 0.7; }
            100% { opacity: 1; }
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .hero-content {
            color: white;
            max-width: 800px;
        }

        .industry-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(98, 208, 153, 0.15);
            color: #62d099;
            padding: 0.5rem 1.2rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1rem;
            border: 1px solid rgba(98, 208, 153, 0.3);
        }

        .industry-badge i {
            margin-right: 0.5rem;
            font-size: 0.9rem;
        }

        .hero-title {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1rem;
            
            background-size: 200% 100%;
            animation: textShimmer 4s ease-in-out infinite;
        }

        @keyframes textShimmer {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            line-height: 1.5;
            margin-bottom: 2rem;
            color:#525252;
        }

        .hero-cta {
            display: flex;
            justify-content: center;
        }

        .cta-primary {
            background: linear-gradient(135deg, #62d099 0%, #4ade80 100%);
            color: white !important;
            padding: 1rem 2rem;
            border-radius: 10px;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: none;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(98, 208, 153, 0.2);
            position: relative;
            overflow: hidden;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        .cta-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .cta-primary:hover {
            background: linear-gradient(135deg, #4ade80 0%, #62d099 100%) !important;
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 4px 12px rgba(98, 208, 153, 0.3);
            color: white !important;
        }

        .cta-primary:hover::before {
            left: 100%;
        }

        /* Industry Challenges Section */
        .challenges-section {
            padding: 6rem 2rem;
            background: linear-gradient(135deg, #f8fffe 0%, #e8f9f3 100%);
            position: relative;
        }

        .challenges-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(98, 208, 153, 0.1);
            color: #62d099;
            padding: 0.5rem 1.2rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(98, 208, 153, 0.2);
        }

        .section-badge i {
            margin-right: 0.5rem;
            font-size: 0.9rem;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #12373f 0%, #62d099 50%, #12373f 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .section-subtitle {
            font-size: 1.3rem;
            color: #12373f;
            opacity: 0.7;
            margin-bottom: 4rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .challenges-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .challenge-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            text-align: left;
            border: 1px solid rgba(98, 208, 153, 0.1);
            box-shadow: 
                0 8px 32px rgba(18, 55, 63, 0.08),
                0 2px 8px rgba(98, 208, 153, 0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .challenge-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #62d099, transparent);
            transition: left 0.6s ease;
        }

        .challenge-card:hover {
            transform: translateY(-8px);
            box-shadow: 
                0 20px 48px rgba(18, 55, 63, 0.15),
                0 8px 24px rgba(98, 208, 153, 0.1);
            border-color: rgba(98, 208, 153, 0.3);
        }

        .challenge-card:hover::before {
            left: 100%;
        }

        .challenge-icon {
            width: 90px !important;
            height: 90px !important;
            background: linear-gradient(135deg, rgba(98, 208, 153, 0.1), rgba(98, 208, 153, 0.05));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #62d099;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(98, 208, 153, 0.1);
        }

        .challenge-icon i {
            font-size: 3rem !important;
            transition: all 0.3s ease;
        }

        .challenge-card:hover .challenge-icon {
            background: linear-gradient(135deg, #62d099, #4ade80);
            color: white;
            transform: scale(1.05);
            box-shadow: 0 8px 24px rgba(98, 208, 153, 0.3);
        }

        .challenge-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #12373f;
        }

        .challenge-description {
            font-size: 1rem;
            color: #12373f;
            opacity: 0.7;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .challenge-impact {
            background: rgba(98, 208, 153, 0.05);
            padding: 1rem;
            border-radius: 10px;
            border-left: 4px solid #62d099;
            font-size: 0.9rem;
            color: #12373f;
            font-weight: 600;
        }

        .challenge-impact i {
            margin-right: 0.5rem;
            color: #62d099;
            font-size: 1rem;
        }

        /* Solutions Preview Section */
        .solutions-preview {
            padding: 6rem 2rem;
            background: white;
            position: relative;
        }

        .solutions-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .solution-preview {
            background: linear-gradient(135deg, rgba(98, 208, 153, 0.03), rgba(98, 208, 153, 0.01));
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid rgba(98, 208, 153, 0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .solution-preview::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(98, 208, 153, 0.1), transparent 70%);
            border-radius: 50%;
            transform: translate(30px, -30px);
            transition: all 0.4s ease;
        }

        .solution-preview:hover {
            background: linear-gradient(135deg, rgba(98, 208, 153, 0.08), rgba(98, 208, 153, 0.03));
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(98, 208, 153, 0.15);
        }

        .solution-preview:hover::after {
            transform: translate(20px, -20px) scale(1.2);
        }

        .solution-icon {
            width: 90px !important;
            height: 90px !important;
            background: linear-gradient(135deg, #62d099, #4ade80);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(98, 208, 153, 0.3);
        }

        .solution-icon i {
            font-size: 3rem !important;
            transition: all 0.3s ease;
        }

        .solution-preview:hover .solution-icon {
            transform: scale(1.08) rotate(5deg);
            box-shadow: 0 8px 28px rgba(98, 208, 153, 0.4);
        }

        .solution-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #12373f;
        }

        .solution-description {
            font-size: 1rem;
            color: #12373f;
            opacity: 0.8;
            line-height: 1.7;
        }

        /* CTA Section */
        .industry-cta {
            background: linear-gradient(135deg, #12373f 0%, #1a4a54 50%, #12373f 100%);
            padding: 5rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .industry-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 25% 25%, rgba(98, 208, 153, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(230, 126, 59, 0.1) 0%, transparent 50%);
            animation: finalGlow 10s ease-in-out infinite alternate;
        }

        @keyframes finalGlow {
            0% { opacity: 0.6; }
            100% { opacity: 1; }
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .cta-title {
            color: white;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, white 0%, #62d099 50%, white 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 200% 100%;
            animation: textShimmer 4s ease-in-out infinite;
        }

        .cta-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }

        .cta-form {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            max-width: 500px;
            margin: 0 auto;
            text-align: left;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            color: white;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            display: block;
        }

        .form-input {
            width: 100%;
            padding: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .form-input:focus {
            outline: none;
            border-color: #62d099;
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 0 3px rgba(98, 208, 153, 0.2);
        }

        .form-input option {
            background: #12373f;
            color: white;
        }

        .form-submit {
            background: linear-gradient(135deg, #62d099 0%, #4ade80 100%);
            color: white !important;
            padding: 1rem 2.5rem;
            border-radius: 25px;
            border: none;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            box-shadow: 0 2px 8px rgba(98, 208, 153, 0.2);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        .form-submit:hover {
            background: linear-gradient(135deg, #4ade80 0%, #62d099 100%) !important;
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(98, 208, 153, 0.3);
            color: white !important;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .challenges-grid,
            .solutions-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .industry-hero {
                margin-top: 80px;
                min-height: 60vh;
                padding: 2rem 1rem;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }

            .challenge-icon, .solution-icon {
                width: 70px !important;
                height: 70px !important;
            }
            
            .challenge-icon i, .solution-icon i {
                font-size: 2.2rem !important;
            }

            .cta-form {
                padding: 1.5rem;
            }

            .cta-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 480px) {
            .industry-hero {
                margin-top: 60px;
                padding: 1rem;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .challenge-icon, .solution-icon {
                width: 65px !important;
                height: 65px !important;
            }
            
            .challenge-icon i, .solution-icon i {
                font-size: 2rem !important;
            }
        }
/* END - Industry pages  */
