/*
 * Eduset reusable styles
 * Keep custom, project-wide CSS in this file.
 */
:root {
  --eduset-primary: #1a237e;
  --eduset-secondary: #ff6f00;
  --eduset-light: #edf2fa;
}

body {
  background-color: var(--eduset-light);
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
 
}

.container-fluid{
   --bs-gutter-x: 0rem;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.eduset-navbar {
  background: linear-gradient(90deg, var(--eduset-primary), #283593);
}

.navbar-tagline {
  font-size: .6rem;
  letter-spacing: .1em;
  color: #ffcc80;
  line-height: 1;
}

.hero-section {
  background: linear-gradient(135deg, var(--eduset-primary), #3949ab);
  color: #fff;
  padding: 70px 0;
}

.hero-section .btn-cta {
  background-color: var(--eduset-secondary);
  border: none;
  font-weight: 600;
  padding: 12px 32px;
}

.hero-section .btn-cta:hover {
  background-color: #e65100;
}

.feature-card {
  border: none;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(26, 35, 126, .08);
  height: 100%;
}

.feature-card .bi,
.verification-icon {
  color: var(--eduset-primary);
}

.feature-card .bi {
  font-size: 2rem;
}

.verification-icon {
  font-size: 2.2rem;
}

.eduset-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(26, 35, 126, .12);
}

.otp-input {
  letter-spacing: .6em;
  font-size: 1.4rem;
  text-align: center;
  font-weight: 600;
}

.eduset-footer {
  background-color: var(--eduset-primary);
  color: #fff;
}

.step-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--eduset-secondary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 10px;
}

/* Admit card */
.admit-card {
  border: 2px solid var(--eduset-primary);
  border-radius: 10px;
  overflow: hidden;
}

.admit-card-header {
  background: var(--eduset-primary);
  color: #fff;
  padding: 18px 24px;
}

.admit-photo-box {
  width: 120px;
  height: 140px;
  border: 1px solid #ccc;
  object-fit: cover;
  background: #eee;
}

.candidate-label {
  width: 40%;
}

@media print {
  .no-print,
  .eduset-navbar,
  .eduset-footer {
    display: none !important;
  }

  body {
    background: #fff;
  }
}
