/* Basic page styling */
body, html {
	font-family: 'Verdana', sans-serif;
    margin: 0;
    padding: 0;
	background-image: url("home-background.png");
	background-size: 100%;
	width: 100%;
	background-attachment: fixed;
}

/* NAV BAR CSS */
/* The side navigation bar */
.sidenav {
    width: 0; /* Initial width set to 0 to hide */
    height: 100%; /* Full height */
    position: fixed; /* Fix the position */
    z-index: 1; /* Stay on top */
    top: 0;
    left: 0;
    background-color: #c1fab9; /* background */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* Transition effect for sliding */
    padding-top: 60px; /* Space from the top */
}

/* Links inside the sidenav */
.sidenav a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 30px;
    color: black;
    display: block;
    transition: 0.3s;
}

/* Hover effect on nav links */
.sidenav a:hover {
    color: #8CA4B0;
}

/* Button to close the sidenav */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
    color: black;
}

/* Button to open the sidenav */
.open-btn {
    font-size: 60px;
    cursor: pointer;
    position: fixed;
    top: 30px;
    left: 20px;
    color: black;
}

/* Transition the main content to move left when the nav opens */
@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}
/* END OF NAV BAR CSS */

/* Header bar */
.header-bar {
    background-color: transparent;
    text-align: left;
    padding: 60px;
    position: relative;
}

#logo {
	position: fixed;
	padding-left: 10px;
	padding-top: 0px;
	width: 90px;
	height: 90px;
	margin-right: 20px;
}

/* large Company name in the welcome box H1*/
.company-name {
    margin: 0;
	color: black;
	text-align: center;
	padding-top: 1px;
	padding-bottom: 0px;
	font-size: 90px;
	font-family: 'Helvetica', sans-serif;
}
#N-style {
	color: #008947;
}

.section-divider {
	border: none;
	height: 10px;
	background: #008947 /*linear-gradient(to right, black, red)*/;
	width: 90%;
}

/* Welcome Page Section */
#welcome-page {
	width: 100%;
	padding-top: 50px;
}

#welcomepic {
	height: 280px;
	width: 320px;
	float: left;
	margin-left: 200px;
}

#welcome-content {
	text-align: right;
	width: 50%;
    margin-left: auto; /* Adjust to leave space for navigation */
	margin-right: 90px;
    padding: 20px;
	background-image: linear-gradient(to left, #40b870, #dbf2d8);
	border-radius: 20px;
	margin-bottom: 100px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

#welcome-title {
	color: black;
	text-align: center;
	padding-top: 10px;
}

#welcometext {
	color: black;
	width: 95%;
	text-align: center;
	margin: 10px;
	padding: 0px;
}

/* About Page Section */
#about-page {
	width: 100%;
	margin-left: 0px;
	padding-top: 100px;
}

#about-background-img {
	background-image: url("about-servers-pic.jpg");	
	background-position: center;
	background-size: 100% auto;
	margin-bottom: 100px;
}

#about-content {
	text-align: center;
	width: 50%;
    margin-left: 200px; /* Adjust to leave space for navigation */
    padding: 20px;
	background-image: linear-gradient(to right, #40b870, #dbf2d8);
	border-radius: 20px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

#about-title {
	text-align: center;
	padding-top: 10px;
}

/* Services Page Section */
#services-page {
	width: 100%;
	padding-top: 100px;
}

#services-background-img {
	background-image: url("services-background.png");	
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
	margin-bottom: 100px;
	padding-top: 15px;
}

#services-content {
	text-align: center;
	width: 75%;
	margin-left: 200px;
	margin-right: 200px;
	background-image: linear-gradient(to left, #40b870, #dbf2d8, #40b870);
	border-radius: 20px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

#services-title {
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
	margin: 5;
}

.service-list {  /* Service Boxes Area */
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-evenly;
	margin-left: 150px;
	margin-right: 130px;
	padding-bottom: 100px;
}

.service-item {  /* Individual Service Boxes */
	text-align: center;
	background-image: linear-gradient(to bottom, #40b870, #dbf2d8);
	padding: 15px;
	margin: 15px;
	border-radius: 10px;
	width: 40%;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.service-item:hover {
	transform: scale(1.1); /* Slightly increases the size of the box */
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Adds a shadow for the "pop out" effect */
}

/* Contact Page Section */
#contact-page {
	width: 100%;
	padding-top: 100px;
	padding-bottom: 30px;
}

#contact-background {
	background-image: linear-gradient(to bottom, #40b870, #dbf2d8);
	width: 60%;
	margin: auto;
	border-radius: 20px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

#contact-content {
	text-align: center;
	margin-bottom: 50px;
	width: 70%;
    margin-left: 200px; /* Adjust to leave space for navigation */
    padding: 20px;
	background-image: linear-gradient(to top, #40b870, #dbf2d8);
	border-radius: 20px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

#content-title {
	text-align: center;
}

/* CONTACT FORM CSS */
.contact-form {
	text-align: center;
    width: 80%;
    margin: 0 auto;
    background-image: transparent; /*linear-gradient(to right, #40b870, #dbf2d8);*/
    padding: 20px;
	margin-bottom: 40px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.contact-form input, 
.contact-form textarea {
    width: 95%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    background-color: #f9f9f9;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
	margin-top: 10px;
}

.contact-form button:hover {
	background-color: #218838;
}

.g-recaptcha {
	display: inline-block;
}


/* Footer */
.footercontent {
	background-color: #d0f2de;
	margin: 0;
	padding: 0;
	padding-bottom: 5px;
	width: 100%;
}

#weblink {
	text-align: center;
	padding-top: 15px;
}

#compinfo {
	text-align: left;	
	font-size: 10px;
	padding-left: 15px;
	text-align: left;
	line-height: 2px;
	margin-bottom: 15px;
}

@media (max-width: 1028px) {	
    /* General adjustments */
	body {
		background-color: blue;
        background-size: cover;
		background-attachment: scroll;
    }
	/*img {
		display: none;
	}*/
	
	#logo {
		width: 70px;
		height: 70px;
	}
	
    /* Navbar */
    .sidenav a {
        font-size: 40px;
        padding: 8px;
    }

    .open-btn {
        font-size: 40px;
        top: 20px;
        left: 15px;
    }

    /* Header */
    .company-name {
        font-size: 50px;
    } 
	
	#welcomepic {
		display: none;
	}
	
	#welcome-content {
        width: 70%;
        text-align: center;
		margin-right: auto;
		margin-top: 20px;
    }
	
	#welcome-page, #about-page, #Services-page {
		width: 100%;
		padding: 0;
		margin: 0;
		padding-bottom: 80px;
	}
	
	#contact-page {
		padding-top: 80px;
	}
	
    #about-content, #services-content, #contact-content {
        width: 90%;
		text-align: center;
        margin-left: 4%;
        padding: 10px;
		margin-bottom: 0;
    }

    /* Service section */
	.service-list {
		padding: 30px;
		width: 90%;
		text-align: center;
		margin: 20px;
	}
	
    .service-item {
        width: 80%;
        margin: 30px 0;
    }

    /* Contact form */
    .contact-form {
        width: 70%;
		background: #91e07b;
		border-radius: 50px;
		box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    }
		
	#contact-background {
		background-image: none;
	}
	
	#services-background-img {
		background-image: none;
	}
	
	#compinfo { /* footer text */
		font-size: 70%;
		padding: 10px;
	}
}