* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f8f9fc;
  color: #222;
}


/* HERO */
.hero {
  width: 100%;
  aspect-ratio: 1080 / 617;   /* PERFECT for your image size */
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;       /* NO CUTTING */
  background: #000;          /* fills empty space neatly */
}

/* TAGLINE */
.tagline-section {
  padding: 50px 20px;
  text-align: center;
}

#tagline {
  font-size: 2.4rem;
  font-weight: 700;
  font-style: italic;
  background: linear-gradient(90deg, #000000, #5a189a, #c77dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: zoomPulse 3s ease-in-out infinite;
  text-align: center;
}
@keyframes zoomPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.6;
  }
}


/* GRADIENT HEADINGS */
.gradient-text {
  font-size: 2rem;
  background: linear-gradient(90deg, #000, #5a189a, #c77dff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

/* ABOUT */
.about {
  padding: 70px 20px;
  text-align: center;
}

.about h2 {
  color: #2a7fff;
  margin-bottom: 20px;
}

.about p {
  max-width: 900px;
  margin: auto;
  line-height: 1.8;
  color: #444;
}

/* SERVICES */
.services {
  padding: 70px 20px;
  background: #eef3ff;
  text-align: center;
}

.services h2 {
  color: #2f9e44;
  margin-bottom: 35px;
}

.slider-container {
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: auto;
}

.slider {
  display: flex;
  transition: transform 0.4s ease;
}
/* 🔥 GRADIENT BORDER SERVICE CARD */
.service-card {
  min-width: 20%;
  margin: 12px;
  padding: 35px 20px;
  background: #ffffff;
  border-radius: 20px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

/* Gradient Border */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 10px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    #000000,
    #4a148c,
    #b39ddb
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.service-card:hover {
  transform: scale(1.08);
   transition: 0.3s ease;
}

/* MANUAL SCROLL SLIDER */
.slider-container {
  overflow-x: auto;
  padding-bottom: 10px;
}

.slider {
  display: flex;
  gap: 20px;
  scroll-behavior: smooth;
}

.slider-container::-webkit-scrollbar {
  height: 8px;
}

.slider-container::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 10px;
}
/* FOOTER */
footer {
  padding: 45px 20px;
  background: #ffffff;
  text-align: center;
}

.footer-icons a {
  color: #333;
  font-size: 22px;
  margin: 0 12px;
}

.footer-icons a:hover {
  color: #25D366;
}

footer p {
  margin-top: 15px;
  font-size: 14px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .service-card { min-width: 50%; }
}

@media (max-width: 600px) {
  #tagline { font-size: 1.8rem; }
  .service-card { min-width: 100%; }
}

