/* =========================
     IRIA Header • Dark + Gradient + Motion
  ========================= */

:root {
  --bg0: #070a12;
  --bg1: #0a1022;
  --card: #0e1731cc;
  --stroke: rgba(255, 255, 255, 0.1);
  --text: #eaf0ff;
  --muted: rgba(234, 240, 255, 0.72);

  /* official-feel gradient set (blue→violet→cyan) */
  --g1: #6d5bff;
  --g2: #00d4ff;
  --g3: #ff4fd8;
}

.iria-header {
  background: radial-gradient(
      1200px 500px at 20% -10%,
      rgba(109, 91, 255, 0.25),
      transparent 60%
    ),
    radial-gradient(
      900px 450px at 90% 10%,
      rgba(0, 212, 255, 0.18),
      transparent 55%
    ),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  color: var(--text);
  position: relative;
  overflow: hidden;
}

/* Topbar */
.iria-topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #025a4b;
  backdrop-filter: blur(10px);
}
.iria-topbar .toplink {
  color: var(--text);
  text-decoration: none;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.iria-topbar .toplink:hover {
  opacity: 1;
}
.iria-topbar .sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.18);
  display: inline-block;
}
.iria-pill {
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.25) !important;
}

.iria-cta {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  position: relative;
  overflow: hidden;
}
.iria-cta::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(90deg, var(--g1), var(--g2), var(--g3));
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}
.iria-cta:hover::after {
  opacity: 0.2;
}

/* Branding band */
.iria-brandband {
  position: relative;
}

.iria-logoWrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  position: relative;
}
.iria-logoWrap::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    120deg,
    rgba(109, 91, 255, 0.35),
    rgba(0, 212, 255, 0.25),
    rgba(255, 79, 216, 0.2)
  );
  filter: blur(14px);
  opacity: 0.85;
  transform: translate3d(0, 0, 0);
  animation: floatGlow 6s ease-in-out infinite;
}
.iria-logoWrap img {
  position: relative;
  width: 46px;
  height: 46px;
  object-fit: contain;
  z-index: 2;
}
.iria-logoFallback {
  position: relative;
  z-index: 2;
  font-weight: 900;
  letter-spacing: 0.06em;
  opacity: 0.9;
}

.iria-badge {
  display: inline-block;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.82rem;
}

.iria-title {
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  font-weight: 900;
  letter-spacing: 0.2px;
}

.gradtext {
  background: linear-gradient(90deg, var(--g1), var(--g2), var(--g3));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.iria-sub {
  color: var(--muted);
  max-width: 52ch;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(234, 240, 255, 0.86);
  font-size: 0.88rem;
}

/* Contact card */
.iria-contactCard {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(14, 23, 49, 0.75),
    rgba(10, 16, 34, 0.55)
  );
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  padding: 1rem;
  overflow: hidden;
}
.iria-contactCard .card-label {
  color: rgba(234, 240, 255, 0.7);
  font-size: 0.85rem;
}
.iria-contactCard .card-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin-top: 0.2rem;
}
.iria-contactCard .card-line {
  margin-top: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(234, 240, 255, 0.82);
}
.iria-contactCard a {
  color: rgba(234, 240, 255, 0.92);
  text-decoration: none;
  border-bottom: 1px dashed rgba(234, 240, 255, 0.25);
}
.iria-contactCard a:hover {
  border-bottom-color: rgba(234, 240, 255, 0.65);
}

.shine {
  content: "";
  position: absolute;
  inset: -60px -80px auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(0, 212, 255, 0.22),
      transparent 60%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(109, 91, 255, 0.22),
      transparent 62%
    );
  filter: blur(2px);
  transform: rotate(12deg);
  animation: shineDrift 7s ease-in-out infinite;
  pointer-events: none;
}

.pulseDot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.9);
  box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.35);
  margin-left: auto;
  animation: pulse 1.8s infinite;
}

.iria-cta2 {
  border-radius: 999px;
  font-weight: 800;
  color: #07101f;
  background: linear-gradient(90deg, var(--g2), var(--g1));
  border: 0;
  padding: 0.45rem 0.8rem;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}
.iria-cta2:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.iria-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.35),
    rgba(109, 91, 255, 0.35),
    rgba(255, 79, 216, 0.2),
    transparent
  );
  opacity: 0.9;
}

/* Background glow blobs */
.glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  pointer-events: none;
  mix-blend-mode: screen;
}
.g1 {
  left: -140px;
  top: -220px;
  background: radial-gradient(circle, rgba(109, 91, 255, 0.9), transparent 60%);
  animation: blob 10s ease-in-out infinite;
}
.g2 {
  right: -180px;
  top: -140px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.9), transparent 60%);
  animation: blob 12s ease-in-out infinite reverse;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.35);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(0, 212, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
  }
}
@keyframes blob {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, 18px) scale(1.08);
  }
}
@keyframes floatGlow {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.75;
  }
  50% {
    transform: translateY(-6px);
    opacity: 0.95;
  }
}
@keyframes shineDrift {
  0%,
  100% {
    transform: translate(0, 0) rotate(12deg);
    opacity: 0.55;
  }
  50% {
    transform: translate(-18px, 10px) rotate(8deg);
    opacity: 0.75;
  }
}

/* Small screens spacing tweaks */
@media (max-width: 576px) {
  .iria-logoWrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }
  .meta-chip {
    font-size: 0.84rem;
  }
}
/* =====================================slider css start==================================== */

/* =========================
     HERO SLIDER • Dark + Gradient + Animation
  ========================= */
/* =========================
   IRIA HERO SLIDER • UPDATED FULL CSS
   Fix: blur CTA, improve sharpness + premium look
========================= */

.iria-hero {
  background: linear-gradient(180deg, #070a12, #0a1022);
  color: #eaf0ff;
  position: relative;
  overflow: hidden;
}

.min-vh-75 {
  min-height: 75vh;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Overlay on image */
.hero-overlay {
  position: absolute;
  inset: 0;
  /* background:
    radial-gradient(800px 420px at 20% 20%, rgba(109, 91, 255, 0.25), transparent 60%),
    radial-gradient(760px 420px at 80% 25%, rgba(0, 212, 255, 0.18), transparent 60%),
    linear-gradient(90deg, rgba(7, 10, 18, 0.90), rgba(7, 10, 18, 0.60) 55%, rgba(7, 10, 18, 0.86)); */
  /* keep blur tiny (optional) */
}

/* Small badge */
.hero-badge {
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(234, 240, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Title */
.hero-title {
  letter-spacing: 0.2px;
  text-shadow: 0 14px 50px rgba(0, 0, 0, 0.55);
  animation: heroIn 0.85s ease both;
}

/* Gradient text */
.hero-grad {
  background: linear-gradient(90deg, #00d4ff, #6d5bff, #ff4fd8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Primary CTA */
.hero-cta {
  border: 0;
  color: #07101f !important;
  background: linear-gradient(90deg, #00d4ff, #6d5bff);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.40),
              inset 0 0 0 1px rgba(255,255,255,0.12);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  will-change: transform;
}

.hero-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.48),
              inset 0 0 0 1px rgba(255,255,255,0.16);
}

/* =========================
   FIXED: Secondary CTA (View Registration Slabs)
   IMPORTANT: crisp button inside blur card
========================= */
.hero-cta2 {
  position: relative;
  isolation: isolate;                 /* prevents parent blur affecting */
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  filter: none !important;

  transform: translateZ(0);           /* GPU crisp */
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;

  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.25px;

  color: #ffffff !important;
  background: linear-gradient(90deg, #ff4fd8 0%, #6d5bff 55%, #00d4ff 100%);

  box-shadow:
    0 10px 30px rgba(109, 91, 255, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);

  transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
  will-change: transform;
}

.hero-cta2:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow:
    0 14px 40px rgba(109, 91, 255, 0.48),
    inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.hero-cta2:active {
  transform: translateY(0);
  box-shadow:
    0 8px 22px rgba(109, 91, 255, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.hero-cta2:focus-visible,
.hero-cta:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 0.25rem rgba(0, 212, 255, 0.18),
    0 16px 50px rgba(0, 0, 0, 0.40);
}

/* Chips */
.hero-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(234, 240, 255, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Glass card */
.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  /* CRITICAL: don't blur children */
  filter: none !important;

  animation: floatCard 6s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

/* Card glow */
.hero-card::after {
  content: "";
  position: absolute;
  inset: -80px -80px auto auto;
  width: 260px;
  height: 260px;
  background:
    radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.20), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(109, 91, 255, 0.20), transparent 65%);
  opacity: 0.9;
  pointer-events: none;
}

/* Pulse dot */
.pulseDot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(0, 212, 255, 0.95);
  box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.35);
  animation: pulse 1.8s infinite;
}

/* Ambient glows */
.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.22;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 0;
}

.hero-glow.g1 {
  left: -180px;
  top: -220px;
  background: radial-gradient(circle, rgba(109, 91, 255, 0.95), transparent 60%);
  animation: blob 10s ease-in-out infinite;
}

.hero-glow.g2 {
  right: -220px;
  top: -180px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.95), transparent 60%);
  animation: blob 12s ease-in-out infinite reverse;
}

/* Carousel fade polish */
.carousel-fade .carousel-item {
  transition: opacity 0.7s ease-in-out;
}

/* Keyframes */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

@keyframes blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(30px, 18px) scale(1.08); }
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.35); }
  70%  { box-shadow: 0 0 0 14px rgba(0, 212, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}

/* Mobile optimization */
@media (max-width: 576px) {
  .min-vh-75 { min-height: 72vh; }
  .hero-cta2 { padding: 0.85rem 1.1rem; font-size: 0.92rem; }
}

/* ===================================slider css end======================================== */

/* ================================== registration details css start ======================= */

/* ===============================
   IPF REGISTRATION SECTION UI
   (Color-name based theme only)
================================ */

.about{
  background: rgba(187, 248, 223, 0.37);
  padding: 70px 0;
}

/* Headings */
.about h6{
  color: purple;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about h1{
  color: purple;
  font-weight: 800;
}

/* Main CTA */
.about .btn-success{
  background-color: green;
  border: none;
  padding: 12px 26px;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 10px 20px rgba(0,0,0,.15);
}
.about .btn-success:hover{
  background-color: darkgreen;
}

/* Section titles */
.nine span{
  color: purple;
  font-weight: 900;
  position: relative;
}

/* Pricing cards */
.fee-box{
  background: white;
  border: 1px solid lightgray;
  border-radius: 18px;
  padding: 22px;
  height: 100%;
  box-shadow: 0 18px 35px rgba(0,0,0,.08);
  transition: all .25s ease;
}
.fee-box:hover{
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(0,0,0,.15);
}

.fee-box h3{
  color: purple;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
}

.fee-box ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.fee-box ul li{
  background: lavender;
  border: 1px solid lightgray;
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.pricing-tag{
  color: green;
  font-weight: 700;
  font-size: 16px;
}

.fee-box span.text-end{
  font-size: 13px;
  color: dimgray;
  margin-top: 10px;
}

/* Guidelines & Cancellation */
.about ul li{
  background: white;
  padding: 5px 5px;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

.about ul li b.text-success{
  color: green;
}

/* Responsive */
@media(max-width:768px){
  .fee-box{
    margin-bottom: 20px;
  }
}
li ul {
  list-style-type: none;
}


/* ================================== registration details css end ======================= */

