
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background: #f5f6fa;
}

a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo h1 {
  font-size: 1.4rem;
  color: #4b2354;
}

.logo p {
  font-size: 0.8rem;
  color: #777;
}

.nav-links {
  display: flex;
  gap: 18px;
  list-style: none;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 6px;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  background: #4b2354;
  color: #fff;
}

.hamburger {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
}

.hero {
  padding: 70px 0;
}

.hero-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-text h2 {
  font-size: 2.6rem;
  color: #4b2354;
  margin-bottom: 15px;
}

.hero-text p {
  color: #555;
  margin-bottom: 25px;
  max-width: 500px;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

#baba {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.btn {
  background: #4b2354;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  display: inline-block;
  margin-right: 10px;
  transition: 0.3s;
}

.btn:hover {
  background: #702d77;
}

.btn-outline {
  border: 2px solid #4b2354;
  color: #4b2354;
  background: transparent;
}

.btn-outline:hover {
  background: #4b2354;
  color: #fff;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #4b2354;
  margin-top: 50px;
}

.section-sub {
  text-align: center;
  color: #666;
  margin-top: 10px;
}

.creative-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.creative-card {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  transition: 0.3s;
  border: 1px solid #eee;
}

.creative-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.creative-card h3 {
  margin-top: 10px;
  color: #4b2354;
}

.creative-card p {
  font-size: 0.9rem;
  color: #555;
}

.sector-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

.sector-item {
  flex: 1;
  min-width: 240px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: 0.3s;
}

.sector-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.sector-item i {
  font-size: 2rem;
  color: #4b2354;
  margin-bottom: 10px;
}

.trust-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
}

.trust-flex div {
  min-width: 150px;
}

.trust-flex i {
  color: orange;
  font-size: 1.5rem;
}

#form-section {
  padding: 60px 0;
}

.form-card {
  max-width: 500px;
  margin: auto;
  padding: 25px;
  background: #fff;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

footer {
  background: #4b2354;
  color: white;
  text-align: center;
  padding: 25px 10px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .hero-grid {
    flex-direction: column;
    text-align: center;
  }

  .hero-text p {
    margin: auto;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    right: 10px;
    top: 70px;
    background: white;
    padding: 10px;
    border-radius: 8px;
  }

  .nav-links.active {
    display: flex;
  }
}

@media (max-width: 480px) {
  .hero-text h2 {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}