body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #f5f7fb;
}

/* Header */
.header {
    background: linear-gradient(135deg, #4a90e2, #6a5acd);
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.header::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    top: -50%;
    left: -50%;
    transform: rotate(25deg);
}

.header h1 {
    font-size: 42px;
    margin-bottom: 10px;
    position: relative;
}

.header p {
    font-size: 18px;
    opacity: 0.95;
    position: relative;
}

/* Sections */
.section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.section h2 {
    font-size: 28px;
}

.section p {
    color: #666;
    font-size: 16px;
    line-height: 1.7;
}

/* Grid */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Cards */
.card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.4s;
    position: relative;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
}

.card::before {
    content: "";
    position: absolute;
    height: 5px;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #4a90e2, #6a5acd);
    border-radius: 15px 15px 0 0;
}

/* Why Section */
.why {
    margin-top: 60px;
    text-align: center;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.feature-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    width: 220px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-8px);
}

/* Footer */
footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 60px;
}
.navbar .nav-link {
    font-weight: 500;
    margin-right: 10px;
    transition: 0.3s;
}

.navbar .nav-link:hover {
    color: #4a90e2;
}

.navbar .nav-link.active {
    border-bottom: 2px solid #4a90e2;
}
.benefits-section {
  background: linear-gradient(135deg, #f8f9fa, #eef3ff);
}

.custom-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-left: 5px solid #0d6efd;
}

.custom-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.custom-card h4 {
  color: #0d6efd;
  font-weight: 600;
}

.custom-list {
  padding-left: 0;
  list-style: none;
}

.custom-list li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
}

.custom-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #198754;
  font-weight: bold;
}

.placement-card img {
  max-width: 120px;
  height: 50px;
  object-fit: contain;
}
.placement-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap; /* important */
}

.card-right {
  text-align: center;
}