/* General Styles */
body, html {
    font-family: 'Futura', sans-serif;
    margin: 0;
    padding: 0;
    color: #FFFFFF;
    scroll-behavior: smooth;
}

h1, h2 {
    font-weight: 700;
    color: #f79155; /* Green tone */
}

h1{
	font-size: 1em;
}


p {
    font-weight: 300;
    color: #FFFFFF;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}


.logo{
	width: 350px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-image: url('images/4.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
}

.hero h1 {
    color: white;
    font-size: 3rem;
}

.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #005a32;
    color: white;
    font-size: 1.2rem;
    border-radius: 30px;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #004122;
}

/* About Section */
.section {
    padding: 80px 0;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.section-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}

/* Services Section */
.services {
    color: white;
    background-size: cover;
    background-position: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-item {
    text-align: center;
}

.service-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 20px;
}

/* Mission & Vision Section */
.mission-vision {
    background-color: #f8f8f8;
    padding: 80px 0;
}

/* Contact Section */
form {
    display: flex;
    flex-direction: column;
}

input, textarea {
    padding: 15px;
    margin-bottom: 20px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    padding: 15px;
    font-size: 1.2rem;
    background-color: #005a32;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #004122;
}

/* Footer */
footer {
    background-color: #333;
    padding: 20px;
    text-align: center;
    color: white;
}

.social-links img {
    width: 30px;
    height: 30px;
    margin: 0 10px;
}



@media all and (max-width:800px), (max-device-width:800px){
	
.logo{
	width: 250px;
}	
	
}
