.about-section {
  padding: 80px 10%;
  background: #f5f5f5;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-img img {
  width: 350px;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.about-text h4 {
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: gray;
}

.about-features {
  padding: 80px 10%;
  background: #eaeaea;
}

.features-container {
  display: flex;
  align-items: center;   
  justify-content: space-between;
  gap: 80px;
}

.features-text ul {
  margin-top: 20px;
}

.features-text li {
  margin-bottom: 12px;
}

.features-img {
  flex: 0 0 350px; 
  display: flex;
  justify-content: center;
}

.features-img img {
  width: 100%;
  max-width: 350px;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

.portfolio {
  text-align: center;
  padding: 80px 10%;
}

.portfolio h5 {
  letter-spacing: 3px;
  color: gray;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 50px 0;
}

.portfolio-grid img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border: 4px solid #d39118;
  border-radius: 10px;
  transition: all 0.3s ease; 
}

.portfolio-grid img:hover {
  transform: scale(1.03);
  border-color: #ffd600;
}



/* message */

.contact-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #333063, #b6ca90);
  display: flex;
  align-items: center;
  padding: 80px 10%;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}

.contact-form {
  flex: 1;
  color: white;
}

.small-text {
  opacity: 0.8;
  margin-bottom: 10px;
}

.contact-form h2 {
  font-size: 40px;
  margin-bottom: 30px;
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: none;
  outline: none;
  background: #e6e6e6;
  font-size: 14px;
}

.contact-form textarea {
  height: 120px;
  resize: none;
  margin-bottom: 20px;
}

.contact-form input {
  width: 100%;
  padding: 12px;
  border: none;
  outline: none;
  background: #e6e6e6;
  font-size: 14px;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  background: #d35400;
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #e67e22;
}

/* RIGHT BOX */

.contact-info {
  flex: 1;
  display: flex;
  align-items: center;
}

.info-box {
  background: #f2f2f2;
  padding: 40px;
  width: 100%;
}

.info-box h4 {
  margin-top: 20px;
  margin-bottom: 8px;
  color: #d35400;
}

.alert {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 25px;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  animation: fadeSlide 4s forwards;
  z-index: 9999;
}

.success {
  background: #2ecc71;
}

.error {
  background: #e74c3c;
}

@keyframes fadeSlide {
  0%   { opacity: 0; transform: translateY(-20px); }
  10%  { opacity: 1; transform: translateY(0); }
  80%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-20px); }
}