/* uiux.css - Colorful & Attractive UI/UX Styles */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(to right, #fef9d7, #d299c2);
  color: #222;
  line-height: 1.6;
  overflow-x: hidden;
}

header {
  background: linear-gradient(to right, #6a11cb, #2575fc);
  padding: 20px 0;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 999;
}

header h1 {
  color: #fff;
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px #000;
}

.highlight {
  background: linear-gradient(45deg, #ff4e50, #f9d423);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

nav a:hover, nav a.active {
  color: #ffd700;
  text-decoration: underline;
}

.container {
  width: 90%;
  margin: auto;
  max-width: 1200px;
}

.hero {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(to right, #e0c3fc, #8ec5fc);
  color: #333;
}

.hero h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  padding: 12px 25px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary {
  background: linear-gradient(to right, #ff6a00, #ee0979);
  color: #fff;
  box-shadow: 0 8px 15px rgba(0,0,0,0.3);
}

.btn-glow {
  background: linear-gradient(to right, #00f260, #0575e6);
  color: #fff;
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from { box-shadow: 0 0 10px #00f260; }
  to { box-shadow: 0 0 20px #0575e6; }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transform-style: preserve-3d;
}

.card:hover {
  transform: scale(1.05) rotateY(5deg);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
  text-align: center;
}

.card-content h3 {
  margin-top: 10px;
  color: #333;
  font-size: 1.2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.service-card {
  background: #fefefe;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease-in-out;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card i {
  font-size: 2rem;
  color: #ee0979;
  margin-bottom: 10px;
}

.why-choose {
  padding: 60px 0;
  background: linear-gradient(to right, #fff1eb, #ace0f9);
  text-align: center;
}

.why-choose h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.why-choose ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  line-height: 2.2;
  font-size: 1.1rem;
}

.cta {
  background: linear-gradient(to right, #f953c6, #b91d73);
  color: #fff;
  text-align: center;
  padding: 70px 0;
}

footer {
  background: #222;
  color: #eee;
  padding: 40px 0;
  text-align: center;
}

footer input,
footer textarea {
  width: 90%;
  max-width: 400px;
  padding: 12px;
  margin: 10px auto;
  border-radius: 8px;
  border: none;
  outline: none;
  display: block;
}

footer button {
  background: linear-gradient(to right, #00b4db, #0083b0);
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

footer button:hover {
  background: linear-gradient(to right, #0083b0, #00b4db);
}
