.elementor-19985 .elementor-element.elementor-element-a67794f{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-19985 .elementor-element.elementor-element-a67794f.e-con{--flex-grow:0;--flex-shrink:0;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-19985 .elementor-element.elementor-element-a67794f{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-ba2e061 *//* Reset and Base Styles */
      
        
        /* Industries Section */
        .industries-section {
            padding: 0;
            background: #fff;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-title h2 {
            font-size: 3rem;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 5px;
            background: #9C0002;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .section-title p {
            color: #666;
            max-width: 700px;
            margin: 2rem auto 0;
            font-size: 1.2rem;
            font-weight: 500;
            line-height: 1.8;
        }
        
        /* Industry Row Styles */
        .industry-row {
            display: flex;
            align-items: center;
            margin-bottom: 6rem;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s, transform 0.8s;
            background: white;
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
        }
        
        .industry-row:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }
        
        .industry-row.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .industry-row:nth-child(even) {
            flex-direction: row-reverse;
        }
        
        .industry-content {
            flex: 1;
            padding: 3rem;
            position: relative;
        }
        
        .industry-content h3 {
            font-size: 2rem;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
            position: relative;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .industry-content h3::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: #9C0002;
            bottom: -12px;
            left: 0;
            border-radius: 2px;
            transition: width 0.3s ease;
        }
        
        .industry-row:hover .industry-content h3::after {
            width: 100px;
        }
        
        .industry-row:nth-child(even) .industry-content h3::after {
            left: auto;
            right: 0;
        }
        
        .industry-content p {
            color: #555;
            font-size: 1.1rem;
            line-height: 1.8;
            font-weight: 500;
            margin-top: 1.5rem;
        }
        
        .industry-image {
            flex: 1;
            height: 450px;
            overflow: hidden;
            position: relative;
        }
        
        .industry-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(156, 0, 2, 0.2), rgba(0, 0, 0, 0.1));
            z-index: 1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .industry-row:hover .industry-image::before {
            opacity: 1;
        }
        
        .industry-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top right; 
            transition: transform 0.7s ease;
        }
        
        .industry-row:hover .industry-image img {
            transform: scale(1.08);
        }
        
        /* Industry Badge */
        .industry-badge {
            display: inline-block;
            background: #9C0002;
            color: white;
            padding: 0.5rem 1.2rem;
            border-radius: 0px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
        }
        
        /* Euroslot Read More Button */
        .euroslot-read-more {
            display: inline-flex;
            align-items: center;
            margin-top: 1.8rem;
            color: #666;
            font-weight: 500;
            font-size: 1rem;
            text-decoration: none;
            position: relative;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
            letter-spacing: 0.3px;
             text-decoration: none !important;
        }
        
        .euroslot-read-more::before {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: 5px;
            left: 0;
            background-color: #9C0002;
            transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
           
        }
        
        .euroslot-read-more::after {
            content: '';
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .euroslot-read-more:hover {
            color: #9C0002;
            padding-left: 5px;
            font-weight: 600;
        }
        
        .euroslot-read-more:hover::before {
            width: 100%;
        }
        
        .euroslot-read-more:hover::after {
            transform: translateX(4px);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .industry-image {
                height: 400px;
            }
        }
        
        @media (max-width: 768px) {
            .industry-row, .industry-row:nth-child(even) {
                flex-direction: column;
            }
            
            .industry-image {
                height: 300px;
                width: 100%;
                order: -1;
            }
            
            .industry-content {
                padding: 2rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .industry-content h3 {
                font-size: 1.7rem;
            }
            
            .section-title p {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 576px) {
            .industries-section {
                padding: 3rem 0;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .industry-content h3 {
                font-size: 1.5rem;
            }
            
            .industry-content p {
                font-size: 1rem;
            }
        }/* End custom CSS */