/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0f172a;
  color: white;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: #1e293b;
}

.navbar .logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.btn-talk {
  padding: 8px 20px;
  width: auto;
  box-sizing: border-box;
  text-align: center;
  background-color: #38bdf8;
  color: black;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  margin-top: 100px;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
}

.hero-text h2 {
  font-size: 2rem;
  color: #e2e8f0;
}

.hero-text h1 {
  font-size: 3rem;
  color: #38bdf8;
  margin: 10px 0;
}

.hero-text p {
  max-width: 400px;
  margin: 20px 0;
}

.btn-contact {
  display: inline-block;
  padding: 10px 20px;
  background-color: #1d4ed8;
  color: white;
  border-radius: 5px;
  margin-bottom: 20px;
}

.social-icons a {
  margin-right: 10px;
  text-decoration: none;
  color: #38bdf8;
}

.hero-image img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 4px solid #38bdf8;

}
.logos {
  display: flex;
  justify-content: space-evenly;
  padding: 40px;
  background-color: #1e293b;
}
.logos img {
  width: 100px;
  opacity: 0.8;
}
.about {
  padding: 60px;
  background-color: #0f172a;
  color: white;
}
.about h2 {
  font-size: 2rem;
  color: #38bdf8;
  margin-bottom: 20px;
}
.about p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
.projects {
  padding: 60px;
  background-color: #1e293b;
  color: white;
}
.projects h2 {
  color: #38bdf8;
  font-size: 2rem;
}
.project {
  margin-top: 20px;
}
.project h3 {
  margin: 10px 0;
  font-size: 1.2rem;
}
.project a {
  color: #38bdf8;
  text-decoration: underline;
}
.services {
  padding: 60px;
  background-color: #0f172a;
  color: white;
}
.services h2 {
  color: #38bdf8;
}
.services ul {
  list-style: square;
  padding-left: 20px;
}
.services li {
  margin: 10px 0;
}
.contact {
  padding: 60px;
  background-color: #1e293b;
  color: white;
}
.contact h2 {
  color: #38bdf8;
}
.contact a {
  color: #38bdf8;
  text-decoration: none;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-content .left {
  text-align: left;
  flex: 1;
}

.footer-content .center {
  text-align: center;
  flex: 1;
}

.footer-content .right {
  text-align: right;
  flex: 1;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

footer {
  margin-top: auto;
}