/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

/* Header Styles */
header {
  background: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQmOH35b0gt8KZ6kcylYymeinPSPrlLPHVNxQ&s');
  padding: 20px 0;
  text-align: center;
}

header h1 {
  color: #080808;
  font-size: 2.5em;
  margin-bottom: 10px;
}

header nav ul {
  list-style: none;
}

header nav ul li {
  display: inline;
  margin: 0 15px;
}

header nav ul li a {
  color: #090808;
  text-decoration: none;
  font-size: 1.2em;
}

header nav ul li a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background-color: #00b3e6;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.profile {
  background-color: #22b083;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.hero-content h2 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.cta-button {
  background-color: #ff6600;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 1.2em;
  border-radius: 5px;
}

.cta-button:hover {
  background-color: #cc5200;
}

/* Services Section */
.services {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.services h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.service-cards {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

.card {
  background-color: #e6f7ff;
  padding: 20px;
  width: 30%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.card p {
  font-size: 1.1em;
}

/* Contact Section */
.contact {
  background-color: #e6f7ff;
  padding: 40px 20px;
  text-align: center;
}

.contact form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.contact form label {
  font-size: 1.1em;
  margin-bottom: 10px;
  display: block;
}

.contact form input,
.contact form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.contact form button {
  background-color: #0099cc;
  color: #fff;
  padding: 10px 20px;
  font-size: 1.2em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact form button:hover {
  background-color: #0077b3;
}

/* Footer Styles */
footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}
.profile-picture-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.profile-img {
    width: 150px; /* Adjust size as needed */
    height: 150px; /* Adjust size as needed */
    border-radius: 50%; /* Makes the image circular */
    object-fit: cover; /* Ensures the image fits nicely in the circle */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Optional: adds a shadow effect */
}
