


/* Technology Section */



.tech-section {
    background-image: url("../images/sime.jpg");
    background-size: cover;
    background-position: center;
    padding: 50px; /* Padding for the section */
    text-align: left; /* Align content to the left */
    background-color: rgba(255, 255, 255, 0.8); /* Light overlay for better readability */
    display: flex;
    align-items: center; /* Vertically center the content */
    min-height: 100vh; /* Full viewport height */
	margin-top:0;
	
}

/* Left-Aligned Content */
.left-content {
    max-width: 60%; /* Slightly wider to accommodate bigger quick facts */
}


.left-content h1 {
    font-size:4em;
    margin-bottom: 20px;
    color: #333;
    font-weight:700;
    line-height: 1.3;
}



.left-content p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #555;
    max-width: 80%;
    font-weight: 400;
    line-height: 1.5;
}




/* Quick Facts Section */
.quick-facts {
    display: flex;
    justify-content: flex-start; /* Align quick facts to the left */
    gap: 30px; /* Wider gap between quick facts */
    margin-top: 50px;
}

.quick-facts div {
    padding: 20px; /* Bigger padding */
    border-radius: 10px; /* Rounded corners */
    text-align: center; /* Center text inside the boxes */
    width: 200px; /* Wider boxes */
}

.quick-facts div h2 {
    font-size: 3.12em;
    margin: 0;
    color: #0198da;
	font-weight:600;
}


.quick-facts div p {
    font-size: 1.3em;
    margin: 0;
    color: #333;
    font-weight:700;
}



/* Contact Button */
.contact-button {
    margin-top: 50px;
}

.contact-button a {
    background-color:#28a745;/* Blue background */
    color: white; /* White text */
    padding: 10px 20px; /* Adjusted padding for size */
    text-decoration: none;
    border-radius: 5px; /* Rounded corners */
    font-size: 1.1em; /* Adjusted font size */
    display: inline-block; /* Ensure proper sizing */
    width: 150px; /* Fixed width to match Quick Facts boxes */
    text-align: center; /* Center text inside the button */
	margin-left:35px;
}

/* Ends Here */


.services-button {
    padding: 8px 16px; /* Smaller padding */
    background-color: #28a745; /* Green color */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9em; /* Smaller font size */
    width: 125px; /* Fixed width */
	height:50px;
    margin: 10px 0; /* Margin for spacing */
    transition: background-color 0.3s ease; /* Smooth hover transition */
    text-decoration: none; /* Remove underline if it's a link */
    display: inline-block; /* Ensure it behaves like a button */
    text-align: center; /* Center text inside the button */
}





