@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #fff;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 10%;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo {
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}

/* Navigation */
.navbar {
  display: flex;
}

.navbar a {
  font-size: 18px;
  color: #fff;
  margin-left: 35px;
  text-decoration: none;
  transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
  color: #00abf0;
}

/* Menu Icon Base */
#menu-icon {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* About Section */
.about {
  padding: 120px 10% 60px;
}

.container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.about-text h1 span {
  color: #00abf0;
}

.about-text p {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-img {
  flex: 1 1 300px;
  text-align: center;
}

.about-img img {
  max-width: 300px;
  width: 100%;
  border-radius: 12px;
  border: 3px solid #00abf0;
  box-shadow: 0 0 20px rgba(0, 171, 240, 0.2);
}

/* Contact Section (Optional if present on the same page) */
.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 120px 10% 60px;
  gap: 40px;
}

.contact-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-inputs {
  padding: 12px;
  border-radius: 8px;
  border: none;
  width: 100%;
}

.contact-left-title h2 {
  font-size: 36px;
}

.contact-left button {
  padding: 14px 28px;
  background-color: #00abf0;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.contact-right img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive Styles */
@media (max-width: 800px) {
  .contact-container {
    flex-direction: column;
    padding-top: 120px;
    text-align: center;
  }

  .contact-inputs {
    width: 80vw;
  }

  .contact-right {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h1 {
    font-size: 36px;
  }

  .about-text p {
    font-size: 15px;
  }

  .about-img img {
    max-width: 200px;
  }

  /* Navbar Mobile */
  .navbar {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(15, 32, 39, 0.95);
    text-align: center;
    padding: 20px 0;
  }

  .navbar.active {
    display: flex;
  }

  .navbar a {
    margin: 10px 0;
    font-size: 16px;
  }

  .logo {
    font-size: 20px;
  }

  #menu-icon {
    display: block;
  }
}

@media (max-width: 480px) {
  .contact-inputs {
    width: 90vw;
  }

  .contact-left-title h2 {
    font-size: 28px;
  }

  .contact-left button {
    font-size: 14px;
    padding: 12px 24px;
  }

  .navbar a {
    font-size: 14px;
  }

  .logo {
    font-size: 18px;
  }
}
