/* GLOBAL RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
  background-color: rgb(17, 16, 16);
  color: #fff;
}

/* NAVBAR */
.custom-navbar {
  padding: 12px 20px;
  min-height: 60px;
  background: linear-gradient(to right, #17acd1, #17acd1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

.logo-icon {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 50%;
  margin-left: 10px;
  border: 2px solid #e0e0e0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.navbar-title {
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-left: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ABOUT SECTION */
.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px;
  background: linear-gradient(to bottom right, #fefefe, #f0f4f8);
  border-top: 1px solid #e0e0e0;
  color: #333;
}

.about-content {
  flex: 1;
  max-width: 55%;
  padding-right: 40px;
  text-align: left;
  line-height: 1.7;
  font-size: 1.1rem;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.about-content p {
  margin-bottom: 16px;
  color: #555;
}

.about-image {
  flex: 1;
  max-width: 40%;
  text-align: right;
}

.about-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.03);
}

/* RESPONSIVE DESIGN */
@media (max-width: 868px) {
  .about-section {
    flex-direction: column;
    padding: 30px 20px;
  }

  .about-content,
  .about-image {
    max-width: 140%;
    padding: 0;
    text-align: center;
  }

  .about-image {
    margin-top: 30px;
  }

  .about-content {
    padding: 0 10px;
  }
}

/* Footer Styling */
footer {
  background-color: #1c1c1c;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  width: 100%;
}

footer a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #17acd1;
}

footer p {
  margin: 5px 0;
  font-size: 1rem;
}


