/* General Styles */
/* General Styles */
body {
    margin: 0;
    font-family: 'Inter', 'Inter';
    background-color: #ffffff;
    color: #333;
}

a {
    text-decoration: none; /* Removes underline */
    color: inherit; /* Inherits the text color from the parent element */
    cursor: pointer; /* Makes sure the pointer cursor still shows on hover */
}

nav {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    color: #000000; /* Black text color */
    padding: 0; /* Remove top/bottom padding if unnecessary */
    z-index: 1000;
    display: flex;
    justify-content: center;
    border: none; /* Remove blue outline */
    backdrop-filter: blur(10px); /* Apply blur effect */
    margin-top: 20px; /* Adjust based on design */
}

nav .container {
    margin: 10px 0; /* Adjust margin as necessary */
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #000000; /* White color for logo */
    font-family: 'Jura';
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #000000; /* White color for nav links */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #143070; /* Blue color on hover */
}

.menu-toggle {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
    color: #ffffff; /* White color for hamburger icon */
}

/* Hero Section */
#hero-erp {
    display: flex;
    align-items: center; /* Vertically centers content */
    justify-content: center; /* Horizontally centers content */
    min-height: 100vh; /* Keeps this to fill viewport height */
    background: url("images/AdobeStock_687486376.jpeg") no-repeat center bottom;
    background-size: cover; /* Changed to cover for better scaling */
    color: #000000;
    overflow: visible;
    position: relative; /* Added for transition positioning */
    overflow: hidden;


}
#hero-erp::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 15%; /* Extend the transition area further up */
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    filter: blur(.5px); /* Smoother blur for a subtle transition */
    z-index: 1;
}

.hero-erp-content {
    text-align: center;
    z-index: 1; /* Ensure text is above the background */
    max-width: 500px; /* Added units for max-width */
    margin: 0 auto; /* Center the content if width is restricted */
}

.gradient-text {
    background: 
        radial-gradient(circle at 10% 20%, rgba(16, 112, 214, 0.4), rgba(16, 112, 214, 0) 60%),
        radial-gradient(circle at 80% 80%, rgba(69, 144, 224, 0.4), rgba(69, 144, 224, 0) 60%),
        radial-gradient(circle at 0% 0%, rgba(128, 0, 128, 0.7), rgba(128, 0, 128, 0) 60%),
        radial-gradient(circle at 100% 100%, rgba(238, 130, 238, 0.7), rgba(238, 130, 238, 0) 60%),
        #006fe5; /* Fallback color */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* Makes the text color transparent to show the background */
}

.hero-erp-content h1 {
    font-size: 2em;
    font-weight: bold;
    color: black;
    margin: -80px 0 30px 0; /* Adjust the negative margin as necessary */
}

.hero-erp-p-content {
    z-index: 1; /* Ensure text is above the background */
    margin-bottom: 30px; /* Adjusted for spacing */
    max-width: 400px; /* Added units for max-width */
}

.hero-erp-content p {
    font-size: 1.1em;
    color: #474747;
}

.hero-erp-buttons {
    display: flex; /* Use flexbox layout */
    justify-content: center; /* Center the buttons horizontally */
    gap: 20px; /* Adjust this value for spacing between buttons */
    margin-top: 60px;
}

/* Filled Buttons */
.erp-filled-button {
    padding: 10px 15px;
    font-size: 1em;
    color: #006fe5; /* Blue text color */
    cursor: pointer;
    border-radius: 20px; /* Rounded edges */
    transition: background-color 0.3s ease, filter 0.3s ease; /* Added filter transition */
    font-weight: 700;
    border: 2px solid #006fe5; /* Blue border */
    background-color: transparent; /* Transparent background */
    width: 130px; /* Fixed width for consistency */
    backdrop-filter: blur(5px); /* Blurs the background behind the button */

    
}

.erp-filled-button:hover {
     /* Darker fallback color */
    filter: brightness(0.95); /* Darkens the background */
}

.hero-erp::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(10px); /* Blur effect */
    opacity: 0.7;
    z-index: -1;
    transform: scale(1.1);
  }
.transition {
    height: 100px; /* Adjust for the transition length */
    background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    filter: blur(10px); /* Blur effect matches the section */
    margin-top: -100px; /* Pull it up to overlap hero section */
  }


/* Power BI Custom Data Solutions Section */
#demo {
    padding: 60px 60px; /* Standard padding */
    background-color: #ffffff; /* Light background color */
} 

.demo-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1600px;
    margin: 0 auto;
    gap: 20px;
}

.demo-text {
    flex: 1;
    max-width: 600px;
}

.demo-h2 {
    color: #000;
    text-align: center;
    font-size: 2em;

   
    margin-bottom: 30px; /* Add spacing below the title */
}

.demo-text p {
    font-size: 1em;
    color: #333; /* Dark color for the paragraph text */
    line-height: 1.6;
}

.demo-details {
    color: #333; /* Dark color for the paragraph text */
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center items in demo-details */
}

.demo-details-p {
    text-align: center;
    padding-bottom: 0;
    padding-top: 0;
    color: #979797;
    font-size: 1em;
    font-weight: bold;
}

.iframe-container {
    position: relative;
    width: 100%;
    position: relative;
    width: 100%;
    padding-top: 64%; /* 16:9 ratio (9/16 = 0.5625) */
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.demo-details h3 {
    font-size: 1.5em;
    font-weight: bold;
    color: #000; /* Black color for sub-headers */
    margin-bottom: 10px;
}

.demo-details p {
    font-size: 1em;
    color: #333; /* Dark color for paragraph text */
    line-height: 1.6;
}



/* Power BI Custom Data Solutions Section */
#report {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    
    
}

#report .container {
    max-width: 1200px;
    text-align: center; /* Center the text inside the container */
}

#report h2 {
    font-size: 2em;
    color: rgb(0, 0, 0);
    margin-bottom: 10px; /* Add spacing below the title */
    text-align: center; /* Center the title */
}

#report .p-sub {
    font-size: .8em;
    color: rgba(255, 255, 255, 0.918);
    margin-bottom: 30px; /* Add spacing below the title */
    text-align: center; /* Center the title */
}



.icons-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px; /* Adjust spacing between icon boxes */
    padding: 20px 0; /* Padding around the row of icons */
}

/* Icon Item Styles with Rounded Box and Shadow */
.icon-item {
    max-width: 300px;
    background-color: white; /* Box background */
    border-radius: 15px; /* Rounded corners */
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow effect */
    transition: transform 0.2s ease; /* Animation for hover */
}

/* Icon Item Styles with Rounded Box and Shadow */
.icon-item .p {
    font-size: .5;
}
/* Icon styling */
.icon {
    font-size: 2rem;
    background: 
        radial-gradient(circle at 10% 20%, rgba(16, 112, 214, 0.4), rgba(16, 112, 214, 0) 60%),
        radial-gradient(circle at 80% 80%, rgba(69, 144, 224, 0.4), rgba(69, 144, 224, 0) 60%),
        radial-gradient(circle at 0% 0%, rgba(128, 0, 128, 0.7), rgba(128, 0, 128, 0) 60%),
        radial-gradient(circle at 100% 100%, rgba(238, 130, 238, 0.7), rgba(238, 130, 238, 0) 60%),
        #006fe5; /* Fallback color */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* Makes the text color transparent to show the background */
    margin-bottom: 10px;
}

.icon-item:hover {
    transform: translateY(-5px); /* Slight lift on hover */
}

.icon-item h3 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 10px;
}

.icon-item p {
    font-size: 1em;
    color: #000000;
    line-height: 1.2;
    text-align: left;

}





/* Solutions Section */
#solutions {
    padding: 60px 60px;
    background-color: #ffffff; /* Light background color */
}

.solutions-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.solutions-text {
    flex: 1;
    max-width: 1200px;
}

.solutions-text h2 {
    font-size: 2em;
    background: 
    radial-gradient(circle at 10% 20%, rgba(16, 112, 214, 0.8), rgba(16, 112, 214, 0) 60%),
    radial-gradient(circle at 80% 80%, rgba(69, 144, 224, 0.8), rgba(69, 144, 224, 0) 60%),
    radial-gradient(circle at 0% 0%, rgba(1, 38, 94, 0.9), rgba(128, 0, 128, 0) 60%),
    radial-gradient(circle at 100% 100%, rgba(1, 22, 245, 0.9), rgba(238, 130, 238, 0) 60%),
    #006fe5; /* Fallback color */
    
    /* Clip the background to the text */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* Makes the text color transparent to show the background */
}



.solutions-text p {
    font-size: 1em;
    color: #000000; /* Dark color for the paragraph text */
    line-height: 1.6;
    
}

.solutions-details {
    color: #000000; /* Dark color for the paragraph text */
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solutions-details ul {
    list-style-type: decimal;
    margin: 0;
    padding: 0;
}

.solutions-details li {
    margin-bottom: 20px;
}

.solutions-details h3 {
    font-size: 1.2em;
    font-weight: bold;
    color: #000; /* Black color for sub-headers */
    margin-bottom: 10px;
}

.solutions-details p {
    font-size: 1em;
    color: #000000; /* Dark color for paragraph text */
    line-height: 1.6;
}



/* Contact Us Section */
#contact {
    background-color: #0f172a; /* Completely black background */
    text-align: center; /* Center align text */
    padding: 40px 20px; /* Reduced padding for smaller height */
    height: auto; /* Allow height to be determined by content */
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Center items vertically */
    justify-content: center; /* Center items horizontally */
}

.contact-content {
    display: flex; /* Use flexbox for inner content */
    justify-content: space-between; /* Space between text and form */
    align-items: center; /* Center vertically */
    width: 100%; /* Full width */
    max-width: 1200px; /* Optional: set a max width for the content */
}

.contact-text {
    color: #ffffff; /* White text color */
    max-width: 50%; /* Limit width for the text */
    text-align: left; /* Align text to the left */
}

#contact h2 {
    font-size: 2em; /* Increased font size for text on the left */
    margin-bottom: 20px; /* Adjusted margin for spacing */
}

.contact-form-container {
    background-color: #ffffff; /* White background for the form container */
    border-radius: 10px; /* Rounded corners */
    padding: 20px; /* Padding for inner content */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Optional shadow for depth */
    flex: 1; /* Allow the form container to take available space */
    max-width: 400px; /* Limit width for the form container */
}

.contact-form-container h3 {
    font-size: 1.6em; /* Font size for the title */
    color: #0f172a; /* Black color for the title */
    margin-bottom: 30px; /* Spacing below the title */
    text-align: center; /* Center align the title */
}

/* Contact Form */
#contact form {
    display: flex;
    flex-direction: column;
}

#contact label {
    font-size: .8em;
    color: #5b5b5b; /* Black color for labels */
    text-align: left;
    margin-bottom: 5px;
    font-weight: 600;
}

#contact input[type="text"],
#contact input[type="email"],
#contact textarea {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border: 1px solid #ccc; /* Light border for inputs */
    border-radius: 4px; /* Slightly rounded corners */
    box-sizing: border-box;
    font-family: 'Inter';
    margin-bottom: 20px; /* Add more space between input fields and the following label */
}

#contact textarea {
    resize: vertical; /* Allow vertical resizing of textarea */
}


#contact button[type="submit"] {
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    border-radius: 20px; /* Rounded edges for the button */
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: bold;


    color: #006fe5; /* Blue text color */
    cursor: pointer;
    border-radius: 20px; /* Rounded edges */
    transition: background-color 0.3s ease, filter 0.3s ease; /* Added filter transition */
    font-weight: 700;
    border: 2px solid #006fe5; /* Blue border */
    background-color: transparent; /* Transparent background */
    backdrop-filter: blur(5px); /* Blurs the background behind the button */
}

#contact button[type="submit"]:hover {
    background-color: #0056b3; /* Darker blue on hover */
}





.footer {
    padding: 20px;
    background-color: #000;
    color: #fff;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; /* Centers the container */
}

.footer-left p {
    margin: 0;
    font-size: 13px;
}

.footer-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-right a {
    color: #fff;
    text-decoration: none;
}






#integration .section-title h2 {
    font-size: 62px;
    color: #ffffff;
    /* margin-bottom: 20px; */
    font-weight: bold;
    text-align: center;
}

#integration .cards-title h3 {
    font-size: 32px;
    color: #ffffff;
    /* margin-bottom: 60px; */
    font-weight: bold;
    margin-top: 20;
}

#integration .section-title p {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 90px;
}

/* Styles for Icon Row */
.icons-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px; /* Adjust spacing between boxes */

}



.icon-item-analytics {
    text-align: center;
    max-width: 200px;
    background-color: white; /* Box background */
    border-radius: 15px; /* Rounded corners */
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow effect */
    transition: transform 0.2s ease; /* Animation for hover */
}

.icon-item-excel {
    text-align: center;
    max-width: 200px;
    background-color: white; /* Box background */
    border-radius: 15px; /* Rounded corners */
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow effect */
    transition: transform 0.2s ease; /* Animation for hover */
}


.icon-item:hover {
    transform: translateY(-5px); /* Slight lift on hover */
}

.icon-item-excel:hover {
    transform: translateY(-5px); /* Slight lift on hover */
}
.icon-item-analytics:hover {
    transform: translateY(-5px); /* Slight lift on hover */
}
.icon-item img {
    width: 100px;
    height: auto;
    margin-bottom: 15px;
    filter: grayscale(100%) brightness(0) invert(0); /* Black icons */
}

.icon-item-analytics img {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
    margin-top: 15px;
}

.icon-item-excel img {
    width: 120px;
    height: auto;
    margin-bottom: 15px;
}

.icon-item h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.icon-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.4;
}

.icon-item-excel p {
    font-size: 16px;
    color: #666;
    line-height: 1.4;
}

.icon-item-analytics p {
    font-size: 16px;
    color: #666;
    line-height: 1.4;
}







/* Responsive Styles */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    /* .menu-toggle {
        display: block;
    } */

 

    /* Hide the navigation links on mobile and show the menu toggle */
    nav ul {
        display: none; /* Hide nav items initially */
        flex-direction: column;
        position: absolute;
        top: 100%; /* Place dropdown below the nav */
        left: 0;
        width: 100%; /* Full width dropdown */
        background-color: rgba(255, 255, 255, 0.9); /* Dropdown background */
        padding: 20px;
        gap: 10px;
        border-top: 1px solid #ddd;
    }

    /* Display toggle button for mobile */
    .menu-toggle {
        display: block;
        font-size: 1.8em;
        cursor: pointer;
        color: #000000;
    }

    /* Toggle open navigation on click */
    .menu-toggle.active + ul {
        display: flex;
    }
    #hero-erp {
        flex-direction: column; /* Stack elements vertically */
        align-items: center; /* Center align elements */
        justify-content: center; /* Center vertically */
        padding: 5% 5%; /* Adjust padding for mobile devices */
        overflow: hidden; /* Prevents any overflow */
        max-width: 500px;
        transition: filter 0.2s ease-in-out;


    }

    .hero-erp-content h1 {
        font-size: 2.2em;
        font-weight: bold;
        color: black;
        margin: -80px 0 30px 0; /* Adjust the negative margin as necessary */
    }

    .hero-erp-buttons {
        justify-content: center; /* Center align the buttons horizontally on mobile */
        width: 100%; /* Ensure it takes full width for centering */
        margin-bottom: 30px;
    }

    .hero-erp-image {
        max-width: 90%; /* Allow the image to take up more space */
    }

    .hero-erp-content {
        text-align: center; /* Center the text */
        max-width: 100%; /* Remove width restrictions for mobile */

    }

    

    

    .hero-erp-content p {
        font-size: 1.3em; /* Adjust font size for smaller screens */
    }

    

    .report-content {
        flex-direction: column;
    }

    .about-content {
        flex-direction: column;
    }

    .product {
        width: 100%;
    }

    

    .icon-item,
    .icon-item-analytics,
    .icon-item-excel {
        flex: 0 0 calc(50% - 10px); /* Take 50% of the width minus the gap */
        max-width: calc(50% - 10px); /* Ensure each item is at most 50% wide */
        margin: 0; /* Remove the margin to avoid affecting layout */
    }

    .icons-row {
        flex-direction: column;
        gap: 30px; /* Adjust spacing for smaller screens */
        align-items: center; /* Center the items vertically */
        /* height: 100vh; Make the container take full viewport height */
        /* justify-content: center;  */
        /* Vertically center the cards */
    }

    #solutions {
        padding: 30px 30px;
        background-color: #ffffff; /* Light background color */
    }

   

    .solutions-content {
        flex-direction: column; /* Stack content vertically */
        align-items: center; /* Center items horizontally */
        display: flex;
        justify-content: center;
        align-items: flex-start;
        margin: 0 auto;
        gap: 0px;
    }

    .solutions-text {
        max-width: 100%; /* Adjust max width for smaller screens */
        text-align: center; /* Center align text */
    }

    .solutions-details  {
        max-width: 100%; /* Adjust max width for smaller screens */
        text-align: left; /* Center align text */
    }

    

    
    
    .section-title h2 {
        font-size: 62px;
        color: #ffffff;
        margin-left: 20px;
        margin-right: 20px;

        font-weight: bold;
    }

    .section-title p {
        font-size: 62px;
        color: #ffffff;
        margin-left: 20px;
        margin-right: 20px;

        
    }

    .contact-content {
        flex-direction: column; /* Stack the content vertically on mobile */
        align-items: center; /* Center everything */
        text-align: center; /* Center text on mobile */
    }

    .contact-text {
        font-size: 1.8em; /* Slightly smaller text size for mobile */
        max-width: 100%; /* Take up full width on mobile */
        margin-bottom: 20px;
    }

    #contact h2 {
        font-size: 1.5em; /* Adjust heading size */
    }

    .contact-form-container {
        max-width: 90%; /* Form should take most of the screen width */
        margin-bottom: 30px; /* Add some space below the form */
    }

    #demo {
        padding: 40px 20px; /* Less padding on mobile */
    }

    .demo-content {
        flex-direction: column; /* Stack vertically on mobile */
        align-items: center; /* Center content */
        gap: 10px; /* Adjust gap */
    }

    .demo-details {
        order: -1; /* Move demo-details (report) to the top on mobile */
        max-width: 100%; /* Allow full width on mobile */
        min-width: 100%;
    }

    .demo-text {
        max-width: 100%; /* Allow full width on mobile */
        text-align: center; /* Center text for mobile */
    }

    .demo-h2 {
        font-size: 1.5em; /* Smaller title size on mobile */
    }

    .demo-text h3,
    .demo-details h3 {
        font-size: 1.2em; /* Adjust heading sizes for mobile */
    }

    .demo-text p,
    .demo-details p {
        font-size: 0.9em; /* Adjust paragraph sizes for mobile */
    }

    .iframe-container {
        padding-top: 75%; /* Increase aspect ratio to make it taller */
        max-height: 400px; /* Limit height to a max for mobile */
    }

    .iframe-container iframe {
        height: 100%; /* Ensure it takes full height */
    }

    /* Icon Item Styles with Rounded Box and Shadow */
.icon-item {
    max-width: 300px;
    background-color: white; /* Box background */
    border-radius: 15px; /* Rounded corners */
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow effect */
    transition: transform 0.2s ease; /* Animation for hover */
}
/* Icon styling */
.icon {
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 10px;
}

}