/* style.css */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f5f7fa;
  color: #111;
  overflow-x: hidden;
}

.container {
  max-width: 960px;
  margin: auto;
  padding: 2rem;
}

.hero {
  background: url('https://images.unsplash.com/photo-1482062364825-616fd23b8fc1?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 6rem 2rem;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1.2s ease-in-out;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn {
  background: #ff5e3a;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background: #e14a28;
}

section {
  padding: 4rem 0;
  animation: fadeUp 1s ease-in-out both;
}

.about {
  background: #ffffff;
  text-align: center;
}

.services {
  background: #f0f4f8;
  text-align: center;
}

.portfolio {
  background: #ffffff;
  text-align: center;
}

.testimonials {
  background: #f9fafb;
  text-align: center;
}

.contact {
  background: #eef2f6;
  text-align: center;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

p, span, blockquote {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.services .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card span {
  display: block;
  margin-top: 0.5rem;
  font-size: 1rem;
}

blockquote {
  font-style: italic;
  text-align: center;
  margin: 2rem auto;
  max-width: 600px;
  color: #555;
  border-left: 4px solid #ff5e3a;
  padding-left: 1rem;
}

footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

form {
  display: grid;
  gap: 1rem;
  max-width: 600px;
  margin: auto;
}

input, select, textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  font-size: 1rem;
}

textarea {
  height: 120px;
  resize: vertical;
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: background 0.3s;
}

.whatsapp-float:hover {
  background-color: #1ebe5b;
}

.whatsapp-float i {
  font-size: 28px;
}

/* Captcha Style */
.captcha {
  background: #fff;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.captcha label {
  margin-right: 1rem;
  white-space: nowrap;
}

.captcha input[type="text"] {
  width: 100px;
  margin-left: auto;
}

/* Logo Animation */
.project-logo img {
  max-width: 200px;
  margin: 2rem auto 0;
  display: block;
  transition: transform 0.3s ease;
}
.project-logo img:hover {
  transform: scale(1.05) rotate(-1deg);
}


/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 1rem;
  }
}