/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f0f2f5;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
header {
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  color: #fff;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar h1 {
  font-size: 1.8rem;
  font-weight: bold;
}

.navbar ul {
  display: flex;
  list-style: none;
}

.navbar ul li {
  margin-left: 1.5rem;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar ul li a:hover {
  color: #ff7e5f;
}

/* Hero */
.hero {
  background: linear-gradient(120deg, #6a11cb, #2575fc);
  color: white;
  padding: 5rem 2rem;
  text-align: center;
}

.hero h2 {
  font-size: 2.7rem;
  margin-bottom: 1rem;
  animation: fadeInDown 1.5s ease;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 2s ease;
}

.hero button {
  background: #ff7e5f;
  border: none;
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  color: white;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 12px rgba(255,126,95,0.6);
}

.hero button:hover {
  transform: scale(1.08);
  background: #ff986c;
}

/* Sections */
.about, .why-choose, .featured {
  padding: 4rem 2rem;
  text-align: center;
  background: white;
  margin: 2rem auto;
  border-radius: 20px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Resize images globally for index.html */
.small-img {
  max-width: 300px;   /* reduce width */
  height: auto;       /* keep aspect ratio */
  border-radius: 12px; /* optional: rounded corners */
  display: block;
  margin: 20px auto;  /* center images */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* subtle shadow */
}


/* Service Grid */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  padding: 3rem 2rem;
  width: 90%;
  margin: auto;
}

.service-card {
  background: linear-gradient(180deg, #ffffff, #f7f8fc);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 25px rgba(106,17,203,0.3);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 5px solid #2575fc;
}

.service-card h3 {
  padding: 1rem;
  font-size: 1.4rem;
  color: #6a11cb;
}

.service-card p {
  padding: 0 1rem 1.5rem;
  font-size: 1rem;
  color: #444;
}

/* Careers */
.careers {
  padding: 5rem 2rem;
  text-align: center;
}

.no-jobs {
  font-size: 1.6rem;
  color: #2575fc;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {opaci
