.elementor-18608 .elementor-element.elementor-element-b88659e{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-18608 .elementor-element.elementor-element-b88659e > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-18608 .elementor-element.elementor-element-3cd9df8{--spacer-size:50px;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-18608 .elementor-element.elementor-element-414e090{text-align:center;font-family:"Nunito Sans", Sans-serif;font-weight:400;color:#7A7A7A;}.elementor-18608 .elementor-element.elementor-element-698d2ee{--spacer-size:26px;}.elementor-18608 .elementor-element.elementor-element-cc92377{margin-top:45px;margin-bottom:0px;}.elementor-18608 .elementor-element.elementor-element-2268f95{--spacer-size:22px;}.elementor-18608 .elementor-element.elementor-element-ade80cd{text-align:center;}/* Start custom CSS for html, class: .elementor-element-e69fcaf *//* General Styles */
.content-section, .cycle-section {
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    max-width: 1900px;
    margin: auto;
}

/* First Section Styling */
.header {
    font-size: 2em;
    font-weight: bold;
    color: #FE5A0E;
}

.content-text, .features-list {
    font-size: 1em;
    text-align: justify;
    margin-top: 10px;
}

.features-list {
    list-style-type: disc;
    padding-left: 20px;
    text-align: left;
}

/* Cycle Section Styling */
.cycle-section {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    font-family: 'Poppins', sans-serif;
    padding: 20px;
    max-width: 1200px; /* Adjust width as desired */
    margin: auto;
    gap: 40px; /* Space between left and right sections */
}

/* Left Section (Process Steps) */
.left-process {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 500px; /* Wider width for left section */
}

.step-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #FE5A0E;
    color: #ffffff;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    position: relative;
}

.image-box {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 4px;
    margin-right: 10px;
    /* Placeholder for images you can replace */
}

.step-text {
    text-align: left;
    line-height: 1.5;
}

/* Arrow Styling */
.arrow {
    width: 5px;
    height: 30px;
    background-color: black;
    margin-bottom: 10px;
    position: relative;
}

.arrow:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    transform: translateX(-50%);
}

/* Right Section (Red Box) */
.right-container {
    flex: 1;
    max-width: 900px; /* Wider width for right section */
    background-color: white;
    height: 500px;
    border-radius: 8px;
    padding-top: 106px;
}

/* Scrolling Animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .cycle-section {
        flex-direction: column;
        gap: 20px; /* Reduce gap between left and right sections */
    }

    .left-process, .right-container {
        max-width: 100%; /* Full width on smaller screens */
    }

    .right-container {
        height: auto;
        padding-top: 40px;
    }

    .header {
        font-size: 1.8em;
    }

    .features-list {
        font-size: 0.9em;
    }

    .step {
        font-size: 0.9em;
    }

    .image-box {
        width: 35px;
        height: 35px;
    }
}

@media screen and (max-width: 768px) {
    .content-section, .cycle-section {
        padding: 15px;
        
    }

    .header {
        font-size: 1.5em;
    }

    .content-text, .features-list {
        font-size: 0.9em;
    }

    .step {
        padding: 8px;
        
    }

    .arrow {
        height: 20px;
    }

    .image-box {
        width: 30px;
        height: 30px;
    }

    .right-container {
        height: auto;
        padding-top: 20px;
    }
}

@media screen and (max-width: 480px) {
    .content-section, .cycle-section {
        padding: 10px;
    }

    .header {
        font-size: 1.2em;
    }

    .content-text, .features-list {
        font-size: 0.8em;
    }

    .step {
        padding: 6px;
    }

    .arrow {
        height: 15px;
    }

    .image-box {
        width: 25px;
        height: 25px;
    }

    .right-container {
        height: auto;
        padding-top: 15px;
    }

    .step-text {
        font-size: 0.8em;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-dc257d0 *//* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main container styling */
.drasis-services-container {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
    background-color: #EFEFEF;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    overflow: hidden;
    margin: 0 auto;
}

/* Title and content description */
.drasis-header-section {
    margin-bottom: 30px;
}

.drasis-header-section h2 {
    font-size: 32px;
    color: #FE5A0E;
    margin-bottom: 15px;
}

.drasis-header-section p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

/* Draggable container holding all the boxes */
.drasis-scroll-container {
    display: flex;
    overflow-x: auto;
    cursor: grab;
    width: 100%;
    height: auto;
    scroll-behavior: smooth; /* Smooth scrolling */
}

/* Individual service box styling */
.drasis-service-box {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-width: 300px;  /* Ensure each box has a minimum width */
    padding: 20px;
    margin-right: 20px; /* Space between boxes */
    transition: transform 0.5s ease;
}

/* Image section styling */
.drasis-image-section {
    background-color: #e0e0e0;
    width: 100%;
    height: 250px;  /* Adjusted for larger image */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 15px;
}

.drasis-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

/* Description section styling */
.drasis-description-section {
    background-color: white;
    
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
    border-radius: 5px;
    opacity: 1; /* Visible by default */
    transition: opacity 0.3s ease;
}

/* Heading inside description box */
.drasis-description-section h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

/* Paragraph inside description box */
.drasis-description-section p {
    font-size: 16px;
    color: #777;
}

/* Add responsiveness for mobile view */
@media (max-width: 768px) {
    .drasis-services-container {
        padding: 15px;
    }

    .drasis-header-section h2 {
        font-size: 26px;
    }

    .drasis-service-box {
        width: 100%;  /* Adjust the width on smaller screens */
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-995ae22 *//* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Gallery layout styling */
.protocol-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 40px;
    justify-content: space-evenly;
    background-color: black;
    perspective: 1000px; /* Adds a 3D effect */
    border-radius: 13px
}

/* Card styling */
.protocol-card {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 300px; /* Set a fixed height */
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
    transform: rotateY(0);
    overflow: hidden;
    border-radius: 12px;
}

.protocol-card:hover {
    transform: rotateY(15deg);
}

/* Image container */
.protocol-image-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.protocol-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(10%);
    transition: filter 0.3s ease;
}

.protocol-card:hover .protocol-image {
    filter: grayscale(0%);
}

/* Content overlay */
.protocol-content {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    width: 100%;
    padding: 20px;
    border-radius: 0 0 12px 12px;
    transform: translateY(100%);
    opacity: 0; /* Initially hidden */
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.protocol-card:hover .protocol-content {
    transform: translateY(0); /* Slide up on hover */
    opacity: 1; /* Fade in on hover */
}

/* Content text styling */
.protocol-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.protocol-content p {
    font-size: 14px;
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .protocol-gallery {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-80fce0a *//* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container Styling */
.benefits-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: White;
}

.benefits-title {
    font-size: 36px;
    font-weight: bold;
    color: #FF7F00;
    text-align: center;
    margin-bottom: 40px;
}

/* Benefits List Styling */
.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    list-style: none;
    padding: 0;
}

/* Individual Benefit Item */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* Circle around the icon with orange outline */
.benefit-item-icon {
    flex-shrink: 0;
    font-size: 40px;
    color: #ff7f00; /* Icon color */
    background-color: #fff; /* White background for the circle */
    border: 4px solid #ff7f00; /* Orange border around the circle */
    border-radius: 50%; /* Makes the background circular */
    padding: 20px; /* Adds space around the icon */
}

/* Content Section */
.benefit-item-content {
    max-width: 900px;
}

.benefit-item-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.benefit-item-description {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .benefit-item-icon {
        font-size: 36px;
        padding: 15px; /* Adjust padding on smaller screens */
    }

    .benefit-item-title {
        font-size: 22px;
    }

    .benefit-item-description {
        font-size: 16px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1af31f2 *//* Container for OEM and ODM Section */
.oem-odm-section {
    padding: 40px 20px;
    background-color: #fff;
}

/* Main Container with Left and Right Columns */
.oem-odm-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Container for Text */
.oem-odm-left {
    flex: 1;
}

/* Title Styling (Orange Header) */
.oem-odm-title {
    font-size: 32px;
    font-weight: bold;
    color: #ff7f00; /* Orange Color */
    margin-bottom: 20px;
}

/* Paragraph for Content */
.oem-odm-description {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
}

/* Right Container for Image */
.oem-odm-right {
    flex: 1;
}

/* Image Styling */
.oem-odm-image {
    width: 100%;
    height: auto;
    border-radius: 18px; /* Optional: For rounded corners */
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .oem-odm-container {
        flex-direction: column;
        align-items: center;
    }

    .oem-odm-left {
        text-align: center;
        margin-bottom: 20px;
    }

    .oem-odm-title {
        font-size: 28px;
    }

    .oem-odm-description {
        font-size: 16px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-29a36fd *//* Container for the whole section */
.firmware-section {
    padding: 40px 20px;
}

/* Main container with flexbox layout */
.firmware-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left container for image */
.firmware-left {
    flex: 1;
    /* You can set a fixed width if needed */
}

/* Empty image placeholder styling */
.firmware-image {
    width: 100%;
    height: auto;
    background-color: #e0e0e0; /* Placeholder background color */
    border-radius: 8px;
}

/* Right container for text content */
.firmware-right {
    flex: 1;
}

/* Title Styling */
.firmware-title {
    font-size: 32px;
    font-weight: bold;
    color: #ff7f00; /* Orange color */
    margin-bottom: 20px;
    padding-left: 20px;
    
}

/* Paragraph for content */
.firmware-description {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    padding-left: 20px;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .firmware-container {
        flex-direction: column;
        align-items: center;
    }

    .firmware-left {
        text-align: center;
        margin-bottom: 20px;
    }

    .firmware-title {
        font-size: 28px;
    }

    .firmware-description {
        font-size: 16px;
    }
}/* End custom CSS */