
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background: #f9fbfc;
  color: #333;
}
header {
  background: linear-gradient(180deg, #ffffff, #e6f6f8);
  color: white;
  text-align: center;
  padding: 40px 20px;
}
.logo {
  width: 100px;
  margin-bottom: 15px;
  
}
header h1 {
  font-size: 2.5rem;
  margin: 0 0 10px;
  
}
header p {
  font-size: 1.2rem;
}
.cta {
  display: inline-block;
  background: #FF9800;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 15px;
}
.section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}
.section-header {
  text-align: center;
  margin-bottom: 30px;
}
.section-header h2 {
  font-size: 2rem;
  background: linear-gradient(90deg, #0097A7, #FF9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  margin-bottom: 10px;
}
.section-header p {
  color: #555;
  font-size: 1rem;
  margin-top: 10px;
}
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.service {
  background: #e0f7fa;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.agency-details {
  text-align: center;
  margin-top: 15px;
}
.agency-details p {
  margin: 5px 0;
}
iframe {
  width: 100%;
  border: 0;
  height: 300px;
  margin-top: 20px;
}
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
input, textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
button {
  padding: 12px;
  font-size: 1rem;
  background-color: #0097A7;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
footer {
  text-align: center;
  padding: 20px;
  background: #0097A7;
  color: white;
}
.social {
  margin-top: 10px;
}
.social a {
  color: #FF9800;
  font-size: 1.5rem;
  margin: 0 10px;
  text-decoration: none;
}

.section {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.2s;
}
@keyframes fadeIn {
  to { opacity: 1; }
}

body {
  background: linear-gradient(180deg, #f4fafa, #fdfdfd);
  background-attachment: fixed;
  transition: background-position 0.2s ease;
}

.logo {
  width: 160px;
  max-width: 80%;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.logo {
  width: 180px;
  max-width: 90%;
  margin: 20px auto 10px;
}
@media (min-width: 768px) {
  .logo {
    width: 220px;
  }
}
header {
  background: linear-gradient(180deg, #ffffff, #dff6f9 90%);
}
.hero-overlay {
  background: rgba(255, 255, 255, 0.7);
  padding: 20px 30px;
  border-radius: 12px;
  display: inline-block;
}
header h1, header p {
  color: #1e3a5f;
}
@media (min-width: 768px) {
  header h1, header p {
    color: #0097A7;  }
}


/* Scroll animation with AOS */
[data-aos] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: none;
}
[data-aos="fade-up"] {
  transform: translateY(20px);
}

/* Service card hover */
.services-container .service-card:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease-in-out;
}

/* Pulse effect on WhatsApp button */
.cta-button:hover {
  animation: pulse 1s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
