/* General Reset */
body, h1, h2, p, ul, li {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #ffffff; /* Header background color */
    border-bottom: 2px solid #49046f;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    max-width: 150px; /* Adjust size as needed */
    height: auto;
}

.navbar {
    background-color: #280335; /* Navbar background color */
    margin: 0;
}

.navbar-nav .nav-link {
    color: #fff;
    margin-right: 20px;
}

/* .navbar-nav {
    flex-direction: row;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: bold;
    margin-right: 24px;
    font-size: 16px;
}

.navbar-nav .nav-link:hover {
    color: #49046f;
} */

section {
    padding: 0px 0;
}

section h1, section h2 {
    color: #49046f;
    margin-top: 10px;
}

.section-title {
    color: #ffffff;
    background: #49046f;
    padding: 10px;
    border-radius: 5px;
}

.section-about, .section-choose-us, .section-services, .section-contact {
    background-color: #ffffff; /* Section background color */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    margin-top: 20px; /* Space between sections */
}

p {
    text-align: justify;
} 

.section-about {
    background-color: #f9f9f9; /* Light background color for better contrast */
    padding: 40px 30px; /* Increased padding */
    margin-top: 0px !important; 
}

.section-about h1, .section-about h2 {
    margin-bottom: 20px; /* Space below headings */
}

.section-about p {
    line-height: 1.6; /* Improved line height for readability */
    margin-bottom: 20px; /* Space below paragraphs */
}

.section-about .section-title {
    margin-bottom: 30px; /* Space below section title */
    padding: 15px; /* More padding for title */
    background: #49046f; /* Background color for the title */
    color: white; /* Title text color */
    border-radius: 8px; /* Rounded corners for the title */
}

.section-about .highlight {
    background-color: #eaeaea; /* Subtle background for highlighted text */
    padding: 10px;
    border-radius: 5px;
}

/* Fancy Page Separator */
.page-separator {
    border: 1px solid #dcdcdc;
    margin: 40px 0;
    border-radius: 5px; /* Rounded corners for a softer look */
    background-color: #f4f4f4; /* Light gray background */
}

/* Process Diagram */
.process-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.process-diagram .step {
    background: #49046f;
    color: white;
    padding: 20px;
    border-radius: 10px;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1em;
    margin: 10px 0;
    position: relative;
}

.process-diagram .step:after {
    content: '';
    position: absolute;
    bottom: -20px;
    width: 5px;
    height: 20px;
    background: #49046f;
    z-index: -1;
}

.process-diagram .step:last-child:after {
    display: none;
}

/* Industries Chart */
.industries-chart {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.industry-item {
    background: #49046f;
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    flex: 1 1 calc(25% - 20px);
    margin: 10px;
    transition: transform 0.3s;
}

.industry-item:hover {
    transform: translateY(-10px);
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

/* Floating Icon */
.floating-icon {
    position: fixed;
    bottom: 20px; /* Distance from the bottom of the viewport */
    right: 20px; /* Distance from the right of the viewport */
    background-color: #49046f; /* Background color of the icon */
    color: white; /* Color of the icon */
    border-radius: 50%; /* Makes the icon round */
    width: 50px; /* Width of the icon */
    height: 50px; /* Height of the icon */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px; /* Size of the arrow */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Shadow effect */
    z-index: 1000; /* Ensures the icon is above other elements */
    transition: background-color 0.3s; /* Smooth transition effect */
    cursor: pointer;
}

.floating-icon a {
    color: white; /* Text color of the icon */
    text-decoration: none; /* Remove underline from the icon link */
}

.floating-icon:hover {
    background-color: #7e05a8; /* Color when hovering over the icon */
}


.title {
    color: white;
    font-weight: bold;
    font-size:large ;
}

/* Tile styles: */
.tile {
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 5px;
    overflow: hidden;
    margin-top:20px;
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.tile-container {
    padding-left: 5px;
    padding-right: 5px;
}

.tile:hover {
    transform: translateY(-10px);
}

.tile-header {
    padding: 10px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;

}

.tile-header h4.tile-number {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.tile-header h5.tile-title {
    margin: 0;
    font-size: 1.25rem;
    margin-top: 5px;
}

.tile-body {
    padding: 10px;
}

.tile-body p {
    color: #555555;
    margin: 0;
    text-align: left;
}


/* Tile styles: title_lr - title with left and right style */

.tile-lr {
    display: flex;
    width: 100%;
    border: 1px solid #ddd; /* Light grey border */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.tile-lr:hover {
    transform: scale(1.025);
}

.tile-title,
.tile-details {
    flex: 1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; /* Ensure equal height */
}

.tile-title {
    color: white;
    font-weight: bold;
}

.tile-details {
    background-color: #fff; /* White background for details */
    color: #333;
}

.summary {
    font-size: 1.2em;
    text-align: center;
    color: #555;
    padding: 20px;
    background-color: #ffffff; /* White background for better contrast */
    border: 1px solid #ddd; /* Light grey border to match tiles */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    margin: 20px auto; /* Center and add margin for spacing */
    transition: transform 0.3s;
    /*max-width: 800px; /* Limit width for better readability */
}

.summary:hover {
    transform: scale(1.025);
}