/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Maven+Pro&family=Share+Tech+Mono&display=swap');
/* Reset some default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Maven Pro', Arial, sans-serif;
  line-height: 1.6;
  color: #000;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #000;
}

nav .logo {
  font-family: 'Share Tech Mono', monospace;
  color: #fff;
  font-size: 2rem;
  /*text-transform: uppercase;*/
  
}
	
nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 1rem;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem;
  transition: background-color 0.3s;
}

nav ul li a:hover {
  background-color: #444;
}


/* Home section */
.home {
	font-family: 'Share Tech Mono', monospace;
  position: relative;
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden; /* Add this to prevent the pseudo-element from extending beyond the container */
}

.home::before {
  content: "";
  background-image: url('background.jpg'); /* Replace with your desired image */
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: brightness(50%) blur(3px); /* Adjust brightness and blur values as needed */
  z-index: -1; /* Place the pseudo-element below the content */
}

.home h2 {
	font-family: Audiowide, Monospace;
  font-size: 3rem;
	letter-spacing: 6px;
  margin-bottom: 1rem;
}

.home p {
  font-size: 1.5rem;
}

/* Services section */
.services {
  padding: 2rem;
  text-align: center;
}

.services h2 {
  margin-bottom: 1rem;
}

.service-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.service {
  width: 30%;
  min-width: 250px;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f4f4f4;
}

.service h3 {
  margin-bottom: 0.5rem;
}

/* About section */
.about {
  padding: 2rem;
}

.about h2 {
  margin-bottom: 1rem;
}

/* Contact section */
.contact {
  padding: 2rem;
  background-color: #f4f4f4;
}

.contact h2 {
  margin-bottom: 1rem;
}

.contact form {
  display: flex;
  flex-direction: column;
}

.contact label {
  margin-bottom: 0.5rem;
}

.contact input,
.contact textarea {
  margin-bottom: 1rem;
  padding: 0.5rem;
  border: 1px solid #ccc;
}

.contact button {
  background-color: #333;
  color: #fff;
  padding: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact button:hover {
  background-color: #444;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

.partners {
  text-align: center;
  padding: 50px 0;
}

.partners-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
	
}

.partner-logo {
  max-width: 150px;
  height: auto;
  transition: transform 0.3s ease-in-out;
	box-shadow: 5px 5px 5px lightblue;
	border: 0.5px
}

.partner-logo:hover {
  transform: scale(1.5);
	border: 1px
}

.service img {
  max-width: 100%; /* Ensures image is not wider than its container */
  max-height: 150px; /* Keeps the image size consistent */
  display: block; /* Removes extra space below the image */
  margin: 0 auto 20px; /* Centers the image and adds space below */
  object-fit: contain; /* Keeps the aspect ratio */
  transition: transform 0.3s ease; /* Smooth transition for scaling */
}

.service:hover img {
  transform: scale(1.3); /* Increases the image size by 10% on hover */
	transition: transform 0.6s ease-in-out;
	box-shadow: 5px 5px 5px lightblue;
}

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Maven+Pro&family=Share+Tech+Mono&display=swap');

/* Reset some default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Maven Pro', Arial, sans-serif;
  line-height: 1.6;
  color: #000;
  background-color: #f0f4f8; /* Light gray background for overall page */
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #0a0f14; /* Darker gray for contrast */
  border-bottom: 2px solid #2a2f33; /* Subtle border for separation */
}

nav .logo {
  color: #fff;
  font-size: 2rem;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 1rem;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem;
  transition: background-color 0.3s;
}

nav ul li a:hover {
  background-color: #444;
}

/* Home section */
.home {
  background-color: #e6eef2; /* Lighter gray with a hint of blue */
  color: #333;
  padding: 4rem 0; /* More padding for emphasis */
  border-bottom: 2px solid #ccd6dd; /* Subtle border for separation */
}

/* Services section */
.services {
  background-color: #d1dbe0; /* Medium gray with a hint of blue */
  padding: 2rem;
  border-bottom: 2px solid #b2c2c9; /* Subtle border for separation */
}

.service-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.service {
  background-color: #e6eef2; /* Light gray for service cards */
  border: 1px solid #ccd6dd; /* Subtle border for definition */
  border-radius: 5px; /* Rounded corners for modern look */
}

/* About section */
.about {
  background-color: #d1dbe0; /* Consistent with services for cohesive look */
  padding: 2rem;
  border-bottom: 2px solid #b2c2c9; /* Subtle border for separation */
}

/* Contact section */
.contact {
  background-color: #e6eef2; /* Lighter gray for contrast */
  padding: 2rem;
}

/* Footer */
footer {
  background-color: #0a0f14; /* Darker gray for footer */
  color: #fff;
  padding: 1rem;
  border-top: 2px solid #2a2f33; /* Subtle border for separation */
}

/* Partners section */
.partners {
  background-color: #d1dbe0; /* Consistent with other sections */
  padding: 50px 0;
  border-bottom: 2px solid #b2c2c9; /* Subtle border for separation */
}

.partner-logo:hover {
  border: 1px solid #fff; /* White border on hover for contrast */
}

/* Enhance visual hierarchy and interactivity */
.service:hover, .partner-logo:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Soft shadow for depth */
}


/* Partners section */
.partners {
  background-color: #c7d2d9; /* A specific shade of gray with a hint of blue */
  text-align: center;
  padding: 50px 0;
  border-bottom: 2px solid #afb9c1; /* Subtle border for separation */
}

section {
  padding: 20px;
  margin: auto;
  max-width: 98%; /* Adjust the max-width as needed */
  box-sizing: border-box; /* Include padding in the width calculation */
  border: 2px solid #afb9c1;
}
