*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 20px;
}

.page-bg {
  background: radial-gradient(ellipse at center, #1e2a4a 0%, #0d1117 100%);
  padding: 30px;
  border-radius: 20px;
}

/* ── Banner Wrapper ── */
.banner-wrapper {
  width: 1100px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 3px #FF6B00,
    0 0 0 6px #138808,
    0 0 0 9px #000080,
    0 30px 80px rgba(0,0,0,0.7);
  animation: fadeIn 0.8s ease both;
}

/* ── Top Ribbon ── */
.top-ribbon {
  background: linear-gradient(90deg, #000080 0%, #1a237e 40%, #000080 100%);
  padding: 10px 24px;
  text-align: center;
  border-bottom: 3px solid #FF6B00;
}

.ribbon-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.08em;
}

/* ── Banner Body ── */
.banner-body {
  background: linear-gradient(135deg,
    #fff9f0 0%,
    #fffdf8 30%,
    #f0f8ff 70%,
    #e8f4fd 100%
  );
  display: flex;
  align-items: center;
  padding: 32px 36px;
  gap: 28px;
  position: relative;
  overflow: hidden;
}

/* Decorative background pattern */
.banner-body::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255, 107, 0, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(19, 136, 8, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0, 0, 128, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Ashoka Chakra watermark */
.banner-body::after {
  content: '☸';
  position: absolute;
  font-size: 320px;
  color: rgba(0, 0, 128, 0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
}

/* ── Left Column ── */
.left-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  z-index: 2;
}

.emblem-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emblem-img {
  width: 100px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
  animation: emblemFloat 4s ease-in-out infinite;
}

.emblem-glow {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,200,0,0.15) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}

.csc-logo-box {
  background: linear-gradient(135deg, #000080, #1a237e);
  border-radius: 10px;
  padding: 10px 18px;
  border: 2px solid #FF6B00;
  box-shadow: 0 4px 15px rgba(0,0,128,0.3);
}

.csc-logo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.csc-logo-text {
  font-family: 'Baloo 2', cursive;
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.1em;
  line-height: 1;
}

.csc-logo-sub {
  font-size: 9px;
  font-weight: 600;
  color: #FF6B00;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ── Center Column ── */
.center-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.hindi-title {
  font-family: 'Baloo 2', cursive;
  font-size: 42px;
  font-weight: 800;
  color: #000080;
  line-height: 1.1;
  text-shadow: 1px 1px 0 rgba(0,0,128,0.15);
  animation: slideDown 0.7s ease both;
}

.english-title {
  font-family: 'Baloo 2', cursive;
  font-size: 28px;
  font-weight: 700;
  color: #FF6B00;
  letter-spacing: 0.15em;
  margin-top: 2px;
  animation: slideDown 0.7s ease 0.1s both;
}

/* Divider */
.divider-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  width: 100%;
  animation: fadeIn 0.7s ease 0.2s both;
}

.div-left, .div-right {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, #138808, #FF6B00, #000080, transparent);
}

.div-star {
  color: #FF6B00;
  font-size: 16px;
}

/* Operator Name */
.operator-name {
  font-family: 'Baloo 2', cursive;
  font-size: 30px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #000080, #138808);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideDown 0.7s ease 0.2s both;
}

/* Info Grid */
.info-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  margin-bottom: 16px;
  animation: fadeIn 0.7s ease 0.3s both;
}

.info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0, 0, 128, 0.05);
  border: 1px solid rgba(0, 0, 128, 0.12);
  border-radius: 8px;
  padding: 6px 14px;
}

.info-icon {
  font-size: 15px;
}

.info-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a3e;
  letter-spacing: 0.02em;
}

/* Services */
.services-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: center;
  animation: fadeIn 0.7s ease 0.4s both;
}

.service-tag {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1.5px solid;
}

.service-tag:nth-child(odd) {
  color: #000080;
  border-color: #000080;
  background: rgba(0, 0, 128, 0.07);
}

.service-tag:nth-child(even) {
  color: #138808;
  border-color: #138808;
  background: rgba(19, 136, 8, 0.07);
}

/* ── Right Column ── */
.right-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  z-index: 2;
}

.di-badge {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.di-circle {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.di-inner {
  position: relative;
  z-index: 5;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #000080, #1565C0);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,128,0.4);
}

.di-icon {
  font-size: 22px;
  line-height: 1;
}

.di-text {
  font-family: 'Baloo 2', cursive;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1.2;
  margin-top: 2px;
}

.di-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid;
  animation: rotateSpin linear infinite;
}

.ring1 {
  width: 88px;
  height: 88px;
  border-color: rgba(255, 107, 0, 0.5);
  animation-duration: 8s;
}

.ring2 {
  width: 104px;
  height: 104px;
  border-color: rgba(19, 136, 8, 0.4);
  animation-duration: 12s;
  animation-direction: reverse;
  border-style: dashed;
}

.ring3 {
  width: 118px;
  height: 118px;
  border-color: rgba(0, 0, 128, 0.25);
  animation-duration: 16s;
}

.right-tagline {
  font-family: 'Baloo 2', cursive;
  font-size: 13px;
  font-weight: 700;
  color: #000080;
  text-align: center;
  letter-spacing: 0.05em;
}

.right-tagline-en {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #138808;
  text-align: center;
  letter-spacing: 0.08em;
}

/* ── Bottom Ribbon ── */
.bottom-ribbon {
  background: linear-gradient(90deg, #138808 0%, #0a6b05 50%, #138808 100%);
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 3px solid #FF6B00;
}

.bottom-item {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* ── Animations ── */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-15px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes emblemFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1; transform: scale(1.1); }
}

@keyframes rotateSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}