 /***********************  start Scrolling     **********************************/
        :root {
            --card-width: 1100px;
            --primary-blue: #274d9f;
            --primary-orange: #ff903b;
            --accent-yellow: #FAA300;
            --danger-red: #dc3545;
            --success-green: #4CCD99;
            --purple: #6f42c1;
            --teal: #4596ac;
            --dark-bg: #0b1b2b;
            --card-bg: #ffffff;
            --text-dark: #1a1a2e;
            --text-muted: #6c757d;
        }

     
        .spacer {
            height: 60vh;
            /* height: 135vh; */
        }

        @media (max-width: 768px) {

.spacer {
    height: 146vh;
  
}

}


        /* Container */
        .stack-cards-container {
            position: relative;
            /* height: 850vh; */
               height: 550vh;
        }

        /* Sticky center holder */
        .stack-cards {
            position: sticky;
            top: 50%;
            transform: translateY(-50%);
            height: 0;
        }

        /* Card base */
        .stack-cards__item {
            position: absolute;
            top: 50%;
            left: 50%;
            width: var(--card-width);
            max-width: 94%;
            opacity: 0;
            transform: translate(-50%, 80%);
            transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1),
                        opacity 0.5s ease;
        }

        /* Active card */
        .stack-cards__item.is-active {
            /* margin-top: 3%; */
            opacity: 1;
            transform: translate(-50%, -50%);
            z-index: 5;
        }

        /* Past card */
        .stack-cards__item.is-past {
            opacity: 0;
            transform: translate(-50%, -160%);
            z-index: 1;
        }

        .inner {
            /* background: var(--card-bg);
            border-radius: 24px; */
            padding: 15px;
            /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                        0 0 0 1px rgba(255, 255, 255, 0.1); */
            position: relative;
            overflow: hidden;
        }

        /* Gradient overlay for each card */
        /* .inner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--card-accent), var(--accent-yellow));
            opacity: 0.8;
        } */

        /* Main Heading Styles */
        .card-title-new {
           
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            background: linear-gradient(135deg, var(--card-accent), var(--accent-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInDown 0.8s ease-out;
            letter-spacing: -0.5px;
        }

        .card-description {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 35px;
            line-height: 1.6;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        /* Section Headings */
        .section-heading {
            font-family: 'Poppins', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: var(--text-dark);
            padding-bottom: 8px;
            margin-bottom: 15px;
            position: relative;
            border-bottom: 3px solid;
            border-image: linear-gradient(90deg, var(--card-accent), transparent) 1;
        }

        /* Feature Lists */
        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            padding: 5px 0;
            font-size: 14px;
            color: var(--text-dark);
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .feature-list li:hover {
            padding-left: 10px;
            color: var(--card-accent);
        }

        .feature-list li i,
        .feature-list li::before {
            content: '✓';
            color: var(--card-accent);
            font-weight: bold;
            margin-right: 12px;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .feature-list li i {
            content: none;
        }

        /* Image Containers */
        .card-image {
            width: 100%;
            height: auto;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: transform 0.4s ease;
        }

        .card-image:hover {
            transform: scale(1.05) translateY(-5px);
        }

        /* Counter Badge */
        .counter {
            position: absolute;
            bottom: 25px;
            right: 30px;
            background: linear-gradient(135deg, var(--card-accent), var(--accent-yellow));
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        /* Column Styling */
        /* .feature-column {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6));
            padding: 25px;
            border-radius: 16px;
            margin-bottom: 20px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        } */

        .feature-column:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Color Variations for Each Card */
        .card-1 { --card-accent: #274d9f; }
        .card-2 { --card-accent: #dc3545; }
        .card-3 { --card-accent: #ff903b; }
        .card-4 { --card-accent: #4CCD99; }
        .card-5 { --card-accent: #6f42c1; }
        .card-6 { --card-accent: #4596ac; }
        .card-7 { --card-accent: #ff903b; }

        /* Responsive */
        @media(max-width: 992px) {
            .card-title-new {
                font-size: 2.2rem;
            }
            
            .inner {
                padding: 35px;
            }
            
            .feature-column {
                margin-bottom: 15px;
            }
        }

        @media(max-width: 768px) {
            .stack-cards-container {
                height: 900vh;
            }
            
            .card-title-new {
                font-size: 1.8rem;
            }
            
            .inner {
                padding: 25px;
            }
            
            .section-heading {
                font-size: 1.2rem;
            }
        }

        /* Icon Styles */
        .feature-icon {
            font-size: 4rem;
            color: var(--card-accent);
            margin-bottom: 20px;
            filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
        }

        .img-container {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
        }

        .img-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, transparent, rgba(0, 0, 0, 0.1));
            pointer-events: none;
        }


 /***********************  End Scrolling     **********************************/
            
 /*********************** start  Industry solutons      **********************************/
  
        :root {
            --primary-blue: #274d9f;
            --primary-orange: #ff903b;
            --accent-yellow: #FAA300;
            --dark-navy: #1a2332;
            --light-bg: #f8f9fa;
            --text-dark: #1a1a2e;
            --text-muted: #6c757d;
            --success-green: #4CCD99;
            --teal: #4596ac;
        }

      
        .industry-expertise-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        /* Background decorative elements */
        .industry-expertise-section::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--teal) 100%);
            opacity: 0.05;
            border-radius: 50%;
            z-index: 0;
        }

        .industry-expertise-section::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-yellow) 100%);
            opacity: 0.05;
            border-radius: 50%;
            z-index: 0;
        }

        .section-tag {
            color: var(--primary-orange);
            font-weight: 600;
            letter-spacing: 2px;
            font-size: 0.85rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .section-tag::before {
            content: '';
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-orange), var(--accent-yellow));
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-title span {
            background: linear-gradient(135deg, var(--primary-blue), var(--teal));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }

        .title-line {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-orange), var(--accent-yellow));
            border-radius: 2px;
            margin-bottom: 20px;
        }

        /* Left side decorative box */
        .left-content {
            position: relative;
            z-index: 1;
        }

        .expertise-stats {
            background: linear-gradient(135deg, var(--primary-blue), #1e3a7a);
            padding: 30px;
            border-radius: 20px;
            margin-top: 30px;
            box-shadow: 0 10px 40px rgba(39, 77, 159, 0.2);
            position: relative;
            overflow: hidden;
        }

        .expertise-stats::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            transform: translate(50%, -50%);
        }

        .stat-item {
            text-align: center;
            color: white;
            padding: 15px 10px;
            position: relative;
            z-index: 1;
        }

        .stat-item i {
            font-size: 2rem;
            margin-bottom: 10px;
            color: var(--accent-yellow);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            display: block;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 0.85rem;
            opacity: 0.9;
            font-weight: 400;
        }

        /* Right side industry card */
        .industry-card {
            background: white;
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
            position: relative;
            z-index: 1;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .industry-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 60px rgba(0, 0, 0, 0.12);
        }

        .industry-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-blue), var(--teal), var(--primary-orange));
            border-radius: 24px 24px 0 0;
        }

        .industry-card p {
            color: var(--text-dark);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .industry-card p:last-child {
            margin-bottom: 0;
        }

        /* Key features with icons */
        .key-features {
            margin-top: 30px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 15px;
            margin-bottom: 15px;
            background: linear-gradient(135deg, rgba(39, 77, 159, 0.03), rgba(69, 150, 172, 0.03));
            border-radius: 12px;
            border-left: 3px solid var(--primary-blue);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: linear-gradient(135deg, rgba(39, 77, 159, 0.08), rgba(69, 150, 172, 0.08));
            transform: translateX(5px);
            border-left-color: var(--primary-orange);
        }

        .feature-icon {
            flex-shrink: 0;
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary-blue), var(--teal));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        .feature-content h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 5px;
        }

        .feature-content p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 0;
            line-height: 1.6;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .section-title {
                font-size: 2.2rem;
            }

            .industry-card {
                padding: 30px;
                margin-top: 30px;
            }

            .expertise-stats {
                margin-top: 20px;
            }
        }

        @media (max-width: 768px) {
            .industry-expertise-section {
                padding: 50px 0;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .industry-card {
                padding: 25px;
            }

            .stat-item {
                padding: 10px 5px;
            }

            .stat-number {
                font-size: 1.5rem;
            }

            .feature-item {
                padding: 12px;
            }
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-on-scroll {
            animation: fadeInUp 0.8s ease-out;
        }
   
/********************* End  Industry solutons        *****************************/