
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #c9a7ff, #e6d9ff);
  font-family: 'Nunito', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  width: 50%;
  background: #f9f6ff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(110, 70, 170, 0.25);
  overflow: hidden;
}

.banner {
  height: 230px;
  background: linear-gradient(135deg, #9b6cff, #c9a7ff);
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.links {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px;
  background: #efe7ff;
}

.links a {
  padding: 8px;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s;
  text-decoration: none!important;
  font-weight:bolder;
}

.links img {
  width: 22px;
  height: 22px;
  image-rendering: pixelated;
  transition: transform 0.2s ease;
}

.links a:hover {
  background: #e3d2ff;
  box-shadow: 0 6px 14px rgba(120, 80, 180, 0.35);
  transform: translateY(-3px);
}

.links a:hover img {
  transform: scale(1.1);
}

@keyframes icon-bounce {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

.links a:hover img {
  animation: icon-bounce 0.35s ease;
}


.sectionflex {
  display: flex;
  gap: 14px;
  padding: 18px;
}

.sectionimg img {
  width: 340px;
    height: 350px;
    border-radius: 14px;
    background: #ddd;
    object-fit: cover;
}

.sectiontext h2 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #4b2a84;
}

.sectiontext p {
  margin: 0;
  font-size: 14px;
  color: #5f4a7a;
  line-height: 1.4;
}
.sectiontext {
    margin: 0 auto;
    text-align: center;
    align-content: center;
}


.tab-content {
  padding: 18px;
}

.tab {
  display: none;
  animation: fadeIn 0.25s ease;
}

.tab.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.links a.active {
  background: #d9c6ff;
  box-shadow: 0 6px 14px rgba(120, 80, 180, 0.35);
}


.sparkle {
  position: absolute;
  pointer-events: none;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, #ffffff, #c9a7ff);
  border-radius: 50%;
  opacity: 0.9;
  animation: sparkle-fade 0.6s ease-out forwards;
}

@keyframes sparkle-fade {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--x), var(--y)) scale(0);
    opacity: 0;
  }
}

.services h2 {
  margin-bottom: 6px;
}

.services-note {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 14px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 12px;
}

.service-card {
  background: #f4edff;
  border-radius: 14px;
  padding: 14px;
}

.service-card h3 {
  margin-top: 0;
  font-size: 15px;
  color: #4b2a84;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 4px 0;
}

.service-card span {
  font-weight: bold;
}

.service-previews {
  display: flex;
  gap: 6px;
  margin: 8px 0 10px;
}

.service-previews img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  background: #ddd;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-previews img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(120, 80, 180, 0.35);
  z-index: 2;
}

.preview-more {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #e3d2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: bold;
  color: #4b2a84;
}

