/* ==========================================================================
   Figtree Font Family
   ========================================================================== */

@font-face {
    font-family: 'Figtree';
    src: url('/wp-content/themes/parul/assets/font/Figtree-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Figtree';
    src: url('/wp-content/themes/parul/assets/font/Figtree-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Figtree';
    src: url('/wp-content/themes/parul/assets/font/Figtree-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Figtree';
    src: url('/wp-content/themes/parul/assets/font/Figtree-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Figtree';
    src: url('/wp-content/themes/parul/assets/font/Figtree-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* ==========================================================================
   Polymath Display Font Family
   ========================================================================== */

@font-face {
    font-family: 'PolymathDisplay';
    src: url('/wp-content/themes/parul/assets/font/Polymath-Display-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PolymathDisplay';
    src: url('/wp-content/themes/parul/assets/font/Polymath-Display-Extralight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PolymathDisplay';
    src: url('/wp-content/themes/parul/assets/font/Polymath-Display-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PolymathDisplay';
    src: url('/wp-content/themes/parul/assets/font/Polymath-Display-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PolymathDisplay';
    src: url('/wp-content/themes/parul/assets/font/Polymath-Display-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PolymathDisplay';
    src: url('/wp-content/themes/parul/assets/font/Polymath-Display-Semibold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PolymathDisplay';
    src: url('/wp-content/themes/parul/assets/font/Polymath-Display-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PolymathDisplay';
    src: url('/wp-content/themes/parul/assets/font/Polymath-Display-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}



/* --------------------------------------------------------------------------
   2. Design Tokens & Root Variables
   -------------------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --color-yellow: #ffc800;
  --color-yellow-hover: #e6b400;
  --color-blue: #25135f;
  --color-blue-dark: #1b0c48;
  --color-blue-deep: #130739;
  --color-sky-top: #0087ff;
  --color-sky-mid: #0b80f8;
  --color-sky-bottom: #248bf4;
  --color-white: #ffffff;
  --color-text-light: #f5f6fa;
  --color-form-bg: #e2e4f0;
  --color-bg-gray: #f3f3f3;
  --color-border-light: rgba(255, 255, 255, 0.25);

  /* Global Gradient */
  --gradient-primary: linear-gradient(90deg, #b53c72 0%, #5641e0 100%);
  --gradient-sky: linear-gradient(180deg, #0084ff 0%, #0d83fc 50%, #1e87f5 100%);

  /* Typography */
  --font-heading: "PolymathDisplay", sans-serif;
  --font-body: "Figtree", sans-serif;

  /* Spacing & Transitions */
  --transition-base: all 0.3s ease;
  --puiv-section-spacing: 80px;
}

/* --------------------------------------------------------------------------
   3. Base / Reset
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background: #f1f4f9;
}

::-webkit-scrollbar-thumb {
  background: #aab2c8;
  border-radius: 8px;
  border: 3px solid #f1f4f9;
}

::-webkit-scrollbar-thumb:hover {
  background: #7a86a6;
}

html {
  scrollbar-width: auto;
  scrollbar-color: #aab2c8 #f1f4f9;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: #333333;
  background-color: #ffffff;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-white);
  margin-bottom: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

a:hover {
  color: var(--color-yellow);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   4. Reusable Common Classes & Utilities (puiv-)
   -------------------------------------------------------------------------- */
.puiv-text-gradient {
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
	font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
	line-height: inherit;
}

.puiv-section-spacing {
  padding-block: var(--puiv-section-spacing);
}

.puiv-section-spacing--large {
  padding-block: 120px;
}

.puiv-section-spacing--small {
  padding-block: 60px;
}

/* Badges */
.puiv-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-yellow);
  color: #170B38;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 18px;
  line-height: 1;
}

.puiv-badge--yellow {
  background-color: var(--color-yellow);
  color: #170B38;
}

/* Common Buttons */
.puiv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 19px;
  line-height: 1;
  padding: 16px 32px;
  border-radius: 72px;
  border: 3px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.puiv-btn--primary {
  background-color: var(--color-yellow);
  color: #170B38;
  border: 3px solid rgba(255, 255, 255, 0.4);
}

.puiv-btn--primary:hover {
  background-color: #F0BC00;
  border-color: rgba(255, 255, 255, 0.65);
  color: #170B38;
}

.puiv-btn--outline-white {
  background-color: transparent;
  color: var(--color-white);
  border: 3px solid var(--color-white);
}

.puiv-btn--outline-white:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

.puiv-btn--nav-apply {
  background-color: var(--color-yellow);
  color: #170B38;
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-size: 18px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 72px;
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  font-family: var(--font-body);
}

.puiv-btn--nav-apply:hover {
  background-color: #F0BC00;
  border-color: rgba(255, 255, 255, 0.65);
  color: #170B38;
}

/* --------------------------------------------------------------------------
   5. Header Navigation Styles (Desktop & Mobile - puiv-)
   -------------------------------------------------------------------------- */

/* Header Top Bar (Desktop) */
.puiv-header-desktop {
  background-color: var(--color-blue-dark);
  color: var(--color-white);
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.puiv-header-desktop__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.puiv-header-desktop__left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.puiv-announcement-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-weight: 600;
  font-size: 18px;
}

.puiv-announcement-badge__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.puiv-announcement-badge span{
	font-size: inherit;
	font-family: inherit;
	color: inherit;
}

.page-id-57878 .puiv-announcement-badge span{
	font-size: 16px !important;
}

.puiv-announcement-badge span{
	font-family: var(--font-body);
}


.puiv-announcement-badge__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.puiv-header-divider {
  display: inline-block;
  width: 1px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.35);
}

.puiv-toll-free-link {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
}

.page-id-57878 .puiv-toll-free-link{
	font-size: 16px !important;
}

.puiv-toll-free-link:hover {
  color: var(--color-yellow);
}

.puiv-header-desktop__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.puiv-nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.puiv-nav-links a{
  font-family: var(--font-body);
}

.puiv-nav-link {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 4px 0;
}

.puiv-nav-link:hover {
  color: var(--color-yellow);
}

.page-id-57878 .puiv-nav-link{
	font-size: 16px;
}

.puiv-nav-dropdown-arrow {
  display: inline-block;
  font-size: 9px;
  margin-left: 2px;
  opacity: 0.8;
}

/* Header Top Bar (Mobile) */
/* Header Top Bar (Mobile) */
.puiv-header-mobile {
  background-color: #0c0238;
  padding: 14px;
  position: relative;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.puiv-header-mobile__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.puiv-header-mobile__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.puiv-header-mobile__logo img {
  height: 36px;
  width: auto;
}

.puiv-header-mobile__divider {
  width: 1px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  margin: 0 4px;
}

.puiv-header-mobile__slider-wrapper {
  width: 90px;
  flex-shrink: 0;
  overflow: hidden;
  margin-left: 0;
}

.puiv-slider {
  margin: 0;
  width: 100%;
}

.puiv-slider .puiv-slider-item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  height: 24px;
  outline: none;
}

.puiv-slider .puiv-slider-item img {
  height: 28px;
  max-width: 90px;
  width: auto;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   6. Hero Section Styles (puiv-)
   -------------------------------------------------------------------------- */
.puiv-hero {
  position: relative;
  background-color: #0b80f8;
  color: var(--color-white);
  padding-top: 60px;
  padding-bottom: 0;
  overflow: hidden;
  min-height: 1000px;
  height: 1057px;
  max-height: 1080px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Background Gate Layer (HTML img element) - Full Hero Background (z-index: 1) */
.puiv-hero-bg-gate {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.puiv-hero-bg-gate-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

/* Hero Content Area (Text, CTA Buttons & Form Placeholder) - z-index: 10 */
.puiv-hero-container {
  position: relative;
  z-index: 10;
  padding-top: 15px;
}

.puiv-hero-content {
  padding-right: 15px;
}

.puiv-hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.08;
  color: var(--color-white);
  margin-bottom: 22px;
  text-shadow: 0 2px 10px rgba(0, 50, 150, 0.15);
}

.page-id-57875 .puiv-hero-title {
	font-size: 54px;
}

.page-id-57875 .puiv-hero-subtitle {
	font-size: 24px;
}

/* Divider line between hero title and subtitle (per Figma) */
.puiv-hero-divider {
  width: 100%;
  max-width: 580px;
  height: 1px;
  margin: 0 0 20px;
  border: none;
  background-color: rgb(255, 255, 255);
  opacity: 1;
}

.puiv-hero-subtitle {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(17px, 1.8vw, 26px);
  line-height: 1.3;
  color: var(--color-white);
  margin-bottom: 20px;
  letter-spacing: 0.005em;
  text-shadow: 0 1px 6px rgba(0, 50, 150, 0.12);
}

.puiv-hero-description {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.2vw, 20px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.95);
  max-width: 550px;
  margin-bottom: 32px;
  font-weight: 400;
  text-shadow: 0 1px 4px rgba(0, 50, 150, 0.1);
}

.puiv-hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   Hero Form Card & International Enquiry Form
   -------------------------------------------------------------------------- */
.puiv-hero-form-card {
  background: #ffffff;
  border-radius: 24px;
  width: 100%;
  max-width: 410px;
  height: auto;
  min-height: auto;
  padding: 26px 22px 24px;
  display: block;
  margin-left: auto;
  position: relative;
  z-index: 10;
  box-shadow: 0 20px 50px rgba(17, 7, 48, 0.16), 0 2px 10px rgba(17, 7, 48, 0.04);
  border: 1px solid rgba(230, 228, 240, 0.8);
  box-sizing: border-box;
}

.puiv-hero-form-card--mobile {
  display: block !important;
  background: #ffffff;
  border-radius: 22px;
  width: 100%;
  max-width: 420px;
  height: auto;
  min-height: auto;
  padding: 24px 18px 22px;
  margin: 0 auto;
  box-shadow: 0 12px 35px rgba(17, 7, 48, 0.1);
  border: 1px solid rgba(230, 228, 240, 0.8);
}

/* International Enquiry Form Styling */
.puiv-enquiry-form {
  width: 100%;
}

.puiv-enquiry-heading {
  margin-bottom: 16px;
  text-align: left;
  position: relative;
  padding-bottom: 12px;
  border-bottom: 1px solid #EFEFF5;
}

.puiv-enquiry-heading h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.15;
  color: #170B38;
  letter-spacing: -0.02em;
}

.puiv-enquiry-heading p {
  margin: 3px 0 0;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.4;
  color: #726E8D;
  font-weight: 500;
}

.puiv-enquiry-form .row {
  --bs-gutter-x: 8px;
  --bs-gutter-y: 8px;
}

.puiv-enquiry-form p {
  margin: 0;
}

.puiv-enquiry-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  position: relative;
}

.puiv-enquiry-form .callback-input,
.puiv-enquiry-form input[type="text"].callback-input,
.puiv-enquiry-form input[type="email"].callback-input,
.puiv-enquiry-form input[type="tel"].callback-input,
.puiv-enquiry-form select.callback-input,
.puiv-enquiry-form select.form-select {
  width: 100%;
  height: 44px;
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid #E4E3ED;
  border-radius: 10px;
  background-color: #F6F5FB;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #170B38;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.puiv-enquiry-form .callback-input::placeholder,
.puiv-enquiry-form input::placeholder {
  color: #8C89A3;
  opacity: 1;
  font-weight: 400;
  font-size: 13.5px;
}

.puiv-enquiry-form .callback-input:focus,
.puiv-enquiry-form input:focus,
.puiv-enquiry-form select:focus {
  border-color: #25135F;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 19, 95, 0.08);
}

.puiv-enquiry-form .callback-input:hover,
.puiv-enquiry-form select.callback-input:hover {
  background-color: #F1EFF8;
  border-color: #DAD8E5;
}

.puiv-enquiry-form .callback-input:focus:hover,
.puiv-enquiry-form select.callback-input:focus:hover {
  background-color: #ffffff;
  border-color: #25135F;
}

/* Custom Select Dropdown Chevron */
.puiv-enquiry-form select.callback-input,
.puiv-enquiry-form select.form-select,
.puiv-enquiry-form select.select-arrow {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2325135F' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 12px;
  padding-right: 36px;
  cursor: pointer;
}

/* Phone Group (Country Code + Phone Input) */
.puiv-enquiry-form .puiv-phone-group {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: 100%;
}

.puiv-enquiry-form .puiv-country-code {
  flex: 0 0 92px;
  width: 92px;
}

.puiv-enquiry-form .puiv-country-code select,
.puiv-enquiry-form select.puiv-code-select {
  width: 100%;
  height: 44px;
  min-height: 44px;
  padding: 9px 24px 9px 12px;
  border: 1px solid #E4E3ED;
  border-radius: 10px;
  background-color: #F6F5FB;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: #170B38;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2325135F' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 11px 11px;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.puiv-enquiry-form .puiv-country-code select:focus,
.puiv-enquiry-form select.puiv-code-select:focus {
  border-color: #25135F;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 19, 95, 0.08);
}

.puiv-enquiry-form .puiv-country-code select:hover,
.puiv-enquiry-form select.puiv-code-select:hover {
  background-color: #F1EFF8;
  border-color: #DAD8E5;
}

.puiv-enquiry-form .puiv-phone-number {
  flex: 1;
  min-width: 0;
}

.puiv-enquiry-form .puiv-phone-number input,
.puiv-enquiry-form input.puiv-phone-input {
  width: 100%;
  height: 44px;
  min-height: 44px;
  padding: 9px 14px;
  border: 1px solid #E4E3ED;
  border-radius: 10px;
  background-color: #F6F5FB;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #170B38;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.puiv-enquiry-form .puiv-phone-number input:focus,
.puiv-enquiry-form input.puiv-phone-input:focus {
  border-color: #25135F;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 19, 95, 0.08);
}

.puiv-enquiry-form .puiv-phone-number input:hover,
.puiv-enquiry-form input.puiv-phone-input:hover {
  background-color: #F1EFF8;
  border-color: #DAD8E5;
}

/* Submit Button */
.puiv-enquiry-form .btn-yellow-submit,
.puiv-enquiry-form input[type="submit"].btn-yellow-submit {
  width: 100%;
  height: 48px;
  min-height: 48px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(180deg, #FFD014 0%, #FFC800 100%);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 800;
  color: #170B38;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: 6px;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(255, 200, 0, 0.35);
  box-sizing: border-box;
}

.puiv-enquiry-form .btn-yellow-submit:hover,
.puiv-enquiry-form input[type="submit"].btn-yellow-submit:hover {
  background: linear-gradient(180deg, #FFD726 0%, #FFD014 100%);
  color: #170B38;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 200, 0, 0.5);
}

.puiv-enquiry-form .btn-yellow-submit:active,
.puiv-enquiry-form input[type="submit"].btn-yellow-submit:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(255, 200, 0, 0.25);
}

/* Contact Form 7 Feedback Tips */
.puiv-enquiry-form .wpcf7-not-valid-tip {
  font-family: var(--font-body);
  font-size: 11.5px;
  color: #dc3545;
  margin-top: 3px;
  margin-left: 2px;
  display: block;
}

.puiv-enquiry-form .wpcf7-response-output {
  margin: 10px 0 0 !important;
  padding: 8px 12px !important;
  font-family: var(--font-body);
  font-size: 12.5px !important;
  border-radius: 8px !important;
  text-align: center;
  display: none !important;
}

.puiv-enquiry-form form.invalid .wpcf7-response-output,
.puiv-enquiry-form form.unaccepted .wpcf7-response-output,
.puiv-enquiry-form form.failed .wpcf7-response-output {
  display: block !important;
}

.puiv-enquiry-form .wpcf7-spinner {
  display: none !important;
  margin: 0 !important;
  height: 0 !important;
  width: 0 !important;
  position: absolute;
}

/* ==========================================================================
   Interactive Math Captcha Component
   ========================================================================== */
.puiv-captcha-container {
  margin: 0px 0 11px 0px;
  width: 100%;
}

.puiv-captcha-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #EBF1F6;
  border: 1px solid #D8E2EC;
  border-radius: 8px;
  padding: 6px 12px;
  min-height: 46px;
  box-sizing: border-box;
  gap: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.puiv-captcha-math {
  display: flex;
  align-items: center;
  gap: 6px;
  user-select: none;
  -webkit-user-select: none;
  white-space: nowrap;
}

.puiv-captcha-num1 {
  font-family: var(--font-heading), "Polymath Display", sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #170B38;
  letter-spacing: -0.02em;
}

.puiv-captcha-op {
  font-family: var(--font-heading), "Polymath Display", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #170B38;
}

.puiv-captcha-num2 {
  font-family: "Polymath Display", cursive, sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #6F42C1;
  font-style: italic;
  transform: rotate(-5deg) skew(-4deg);
  display: inline-block;
  letter-spacing: -0.02em;
}

.puiv-captcha-eq {
  font-family: var(--font-heading), "Polymath Display", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #170B38;
}

.puiv-captcha-input-wrap {
  flex: 1;
  max-width: 90%;
}

.puiv-captcha-input {
  width: 100%;
  height: 34px;
  padding: 4px 8px;
  background-color: #ffffff;
  border: 1px solid #C4CDD5;
  border-radius: 4px;
  font-family: var(--font-body), "Figtree", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #170B38;
  outline: none;
  box-sizing: border-box;
  text-align: left;
  transition: all 0.2s ease;
}

.puiv-captcha-input::placeholder {
  color: #788A96;
  font-weight: 400;
  font-size: 13.5px;
}

.puiv-captcha-input:focus {
  border-color: #25135F;
  box-shadow: 0 0 0 3px rgba(37, 19, 95, 0.12);
}

.puiv-captcha-input.is-invalid {
  border-color: #DC3545 !important;
  background-color: #FFF8F8 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15) !important;
}

.puiv-captcha-refresh-btn {
  background: transparent;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #0D6EFD;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: color 0.2s ease, transform 0.3s ease, background-color 0.2s ease;
}

.puiv-captcha-refresh-btn:hover {
  color: #0B5ED7;
  background-color: rgba(13, 110, 253, 0.08);
}

.puiv-captcha-refresh-btn.is-spinning svg {
  transform: rotate(360deg);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.puiv-captcha-error {
  font-family: var(--font-body), "Figtree", sans-serif;
  font-size: 12px;
  color: #DC3545;
  margin-top: 4px;
  margin-left: 2px;
  font-weight: 500;
  display: none;
}

@keyframes puivCaptchaShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.puiv-captcha-shake {
  animation: puivCaptchaShake 0.4s ease-in-out;
}

/* Hero Foreground Student Group (Center Layer - z-index: 3) */
.puiv-hero-students-wrapper {
  position: absolute;
  bottom: -41px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}

.puiv-hero-students-img {
  width: 100%;
  max-width: 1180px;
  height: auto;
  object-fit: contain;
  margin-bottom: 0;
  display: block;
}

/* Hero Foreground Cloud Overlay (Footer Layer - z-index: 8) */
.puiv-hero-clouds-wrapper {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 8;
  pointer-events: none;
  line-height: 0;
}

.puiv-hero-clouds-img {
  width: 100%;
  min-height: 180px;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

/* --------------------------------------------------------------------------
   7. Mobile Form Section & Sticky Bar (puiv-)
   -------------------------------------------------------------------------- */
.puiv-mobile-form-section {
  display: none;
  background-color: #ffffff;
  padding: 36px 16px 80px;
  justify-content: center;
  position: relative;
  z-index: 20;
}

.puiv-mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: rgba(19, 7, 57, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px 16px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 991.98px) {
  .puiv-mobile-form-section {
    display: flex;
  }
  .puiv-mobile-sticky-bar {
    display: block;
  }
}

/* --------------------------------------------------------------------------
   7.5 Why Parul University Section Styles (puiv-)
   -------------------------------------------------------------------------- */
.puiv-why-pu {
  background-color: #ffffff;
  padding-top: 50px;
  padding-bottom: 90px;
  position: relative;
  overflow: hidden;
}

.puiv-why-pu-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.15;
  color: #25135f;
  margin-bottom: 26px;
  letter-spacing: -0.015em;
}

.puiv-why-pu-descriptions {
  max-width: 960px;
  margin: 0 auto 48px;
}

.puiv-why-pu-desc-p {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.5;
  color: #25135f;
  margin-bottom: 18px;
  font-weight: 400;
}

.puiv-why-pu-desc-p:last-child {
  margin-bottom: 0;
}

/* Infinite Scroll Image Slider (Slick Center Mode) */
.puiv-infinite-slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 40px 0 20px;
}

.puiv-infinite-slider-track {
  width: 100%;
}

.puiv-infinite-slider-track .slick-list {
  overflow: visible !important;
  padding: 0 !important;
}

.puiv-infinite-slider-track .slick-track {
  display: flex !important;
  align-items: flex-end !important;
}

.puiv-infinite-slider-item {
  width: 850px;
  height: 600px;
  margin: 0 6px;
  border-radius: 36px;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
  transform: scale(0.93);
  transform-origin: center bottom;
  opacity: 0.75;
  outline: none;
}

.puiv-infinite-slider-track .slick-slide.slick-center,
.puiv-infinite-slider-item.slick-center {
  transform: scale(1);
  transform-origin: center bottom;
  opacity: 1;
  z-index: 2;
}

.puiv-infinite-slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.puiv-btn-play-icon {
  width: 23px;
  height: 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-yellow);
  flex-shrink: 0;
}

.puiv-btn-play-icon svg,
.puiv-btn-play-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.puiv-btn-play-icon span{
	font-family: inherit;
	font-size: inherit;
	color: inherit;
}


.puiv-btn--campus-film {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #1A0D46;
  border: 2px solid #5641E0;
  border-radius: 50px;
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-yellow);
  text-decoration: none;
  transition: all 0.3s ease;
}

.puiv-btn--campus-film span {
	font-size: inherit;
	font-family: inherit;
	color: inherit;
}

.puiv-btn--campus-film:hover {
  background-color: #25135F;
  color: #ffffff;
  border-color: var(--color-yellow);
}

/* .puiv-btn--campus-film {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

 */






/* ============================================================
   7.6 ACCREDITATION STRIP (The receipts? Right here) (puiv-)
============================================================ */
.puiv-accred {
  background: #F5F5F8;
  color: var(--color-blue);
  padding: 5rem 0;
  overflow: hidden;
}

.puiv-accred-h,
.puiv-accred-h-accent {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 62px;
  line-height: 1.12;
  color: var(--color-blue);
  margin-bottom: 1.25rem;
}

.puiv-accred-h-accent {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.puiv-accred-p {
  font-family: var(--font-body);
  color: #4A4A68;
  font-size: 20px;
  line-height: 1.55;
  max-width: 530px;
  margin: 0;
}

.puiv-accred-marquee-box {
  position: relative;
  max-width: 597px;
  height: 380px;
  overflow: hidden;
  margin-left: auto;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 1) 18%, rgba(0, 0, 0, 1) 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 1) 18%, rgba(0, 0, 0, 1) 82%, transparent 100%);
  padding: 10px 0;
}

.puiv-accred-marquee-track {
  display: flex;
  flex-direction: column;
  gap: 18px;
  will-change: transform;
}

.puiv-accred-card {
  display: flex;
  width: 597px;
  max-width: 100%;
  padding: 28px 36px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #FFF;
}

.puiv-accred-card-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.puiv-accred-card-title,
.puiv-accred-card-sub {
  font-family: var(--font-body);
  color: #0F0445;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25;
}

.puiv-accred-card-year {
  font-family: var(--font-body);
  color: #0F0445;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin-top: 6px;
}

.puiv-accred-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
}

.puiv-accred-flower {
  width: 32px;
  height: 64px;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.puiv-accred-logo-img {
  height: 75px;
  width: 140px;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

/* ============================================================
   7.7 PROGRAMME FINDER SECTION (puiv-)
============================================================ */
.puiv-programs {
  background-color: #ffffff;
  padding-block: 90px;
  position: relative;
}

.puiv-programs-header {
  margin-bottom: 36px;
}

.puiv-programs-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(38px, 4.4vw, 62px);
  line-height: 1.12;
  color: var(--color-blue);
  /* letter-spacing: -0.015em; */
  margin-bottom: 16px;
}

.puiv-programs-desc {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.55;
  color: #4A4A68;
  margin: 0 auto;
}

.puiv-programs-divider {
  width: 100%;
  max-width: 960px;
  height: 1.5px;
  background: linear-gradient(
    90deg,
    rgba(37, 19, 95, 0) 0%,
    rgb(37 19 95) 50%,
    rgba(37, 19, 95, 0) 100%
  );
  margin: 28px auto 32px;
}

/* Level Filter Tabs */
.puiv-programs-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.puiv-programs-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.puiv-programs-tab {
  background-color: #F0EEF8;
  color: #21134E;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.puiv-programs-tab span {
	font-size: inherit;
	font-family: inherit;
	color: inherit;
}

.puiv-programs-tab:hover {
  background-color: #E6E2F4;
  color: #170B38;
}

.puiv-programs-tab.active {
  background-color: #21134E;
  color: var(--color-yellow);
}

.puiv-programs-tab.active:hover {
  background-color: #170B38;
  color: var(--color-yellow);
}

.puiv-tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
}

.puiv-tab-icon--check {
  color: var(--color-yellow);
}

.puiv-tab-icon--check circle{
  color: var(--color-yellow);
}

.puiv-tab-icon--arrow {
  color: #21134E;
}

/* AI Search Bar Container */
.puiv-programs-search-container {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.puiv-programs-search-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  max-width: 680px;
}

.puiv-programs-search-box {
  background-color: #F0EFF5;
  border-radius: 50px;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.puiv-search-ai-icon {
  color: #989BB0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.puiv-programs-search-input {
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 15.5px;
  color: #21134E;
  width: 100%;
  padding: 6px 0;
}

.puiv-programs-search-input::placeholder {
  color: #989BB0;
  font-size: 15px;
}

.puiv-btn--program-search,
.puiv-btn--program-clear {
  background-color: #21134E;
  color: var(--color-yellow);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 13px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition-base);
}

.puiv-btn--program-search:hover,
.puiv-btn--program-clear:hover {
  background-color: #170B38;
  color: var(--color-yellow-hover);
}

/* Programs Grid */
.puiv-programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 auto;
}

.puiv-program-card {
  background-color: #F4F4F6;
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: background-color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.puiv-program-card:hover {
  background-color: #EAE9F2;
  border-color: rgba(33, 19, 78, 0.08);
}

.puiv-program-card-icon {
  width: 45px;
  height: 45px;
  object-fit: contain;
  flex-shrink: 0;
}

.puiv-program-card-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: #0F0445;
  line-height: 1.25;
  margin: 0;
}

/* Bottom Action Button */
.puiv-programs-bottom-action {
  margin-top: 45px;
}

.puiv-btn--view-programs {
  background-color: #21134E;
  color: var(--color-yellow);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 34px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: none;
  text-decoration: none;
  transition: var(--transition-base);
}

.puiv-btn--view-programs span{
	font-family: inherit;
	font-size: inherit;
	color: inherit;
}

.puiv-btn--view-programs:hover {
  background-color: #170B38;
  color: var(--color-yellow-hover);
}

.puiv-btn-book-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   7.8 SCHOLARSHIP GUIDANCE BANNER (Inside Programme Finder)
============================================================ */
.puiv-scholarship-banner {
  background-color: #FFC800;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  margin-top: 75px;
  padding: 50px 60px;
  min-height: 570px;
  display: flex;
  align-items: center;
}

.puiv-scholarship-bg-svg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  pointer-events: none;
  z-index: 1;
  object-fit: cover;
  object-position: right center;
}

.puiv-scholarship-content {
  position: relative;
  z-index: 3;
  max-width: 530px;
}

.puiv-scholarship-badge {
  background-color: #170B38;
  color: var(--color-yellow);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}

.puiv-scholarship-title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 3.8vw, 50px);
  font-weight: 700;
  line-height: 1.06;
  color: #110038;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.puiv-scholarship-desc {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: #21134E;
  max-width: 510px;
  margin-bottom: 22px;
}

.puiv-scholarship-criteria {
  margin-bottom: 24px;
}

.puiv-scholarship-criteria-title {
  font-family: var(--font-body);
  font-weight: 700;
  color: #110038;
  margin-bottom: 8px;
}

.puiv-scholarship-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.puiv-scholarship-list li {
  font-family: var(--font-body);
  color: #21134E;
  line-height: 1.45;
  margin-bottom: 3px;
}

.puiv-scholarship-btn-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.puiv-btn--scholarship-primary {
  background-color: #FF0033;
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition-base);
}

.puiv-btn--scholarship-primary:hover {
  background-color: #d9002b;
  color: #ffffff;
}

.puiv-btn--scholarship-outline {
  background-color: transparent;
  color: #21134E;
  border: 2px solid #21134E;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15.5px;
  padding: 11px 26px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition-base);
}

.puiv-btn--scholarship-outline:hover {
  background-color: #21134E;
  color: var(--color-yellow);
}

.puiv-scholarship-disclaimer {
  font-family: var(--font-body);
  font-size: 16px;
  font-style: italic;
  line-height: 1.4;
  color: rgba(33, 19, 78, 0.85);
  max-width: 480px;
  margin: 0;
}

/* Visual Container on Desktop */
.puiv-scholarship-visual-container {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 58%;
  max-width: 660px;
  pointer-events: none;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.puiv-scholarship-student-img {
  height: 100%;
  max-height: 580px;
  width: auto;
  object-fit: contain;
  object-position: right bottom;
  display: block;
}

/* 100% Scholarship Floating Pill Badge (Exact Figma Stacked Two-Tone Design) */
.puiv-scholarship-pill-badge {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  pointer-events: none;
  overflow: visible;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.16));
}

.puiv-scholarship-badge-left {
  position: relative;
  z-index: 2;
  background-color: #32208E;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  flex-shrink: 0;
}

.puiv-scholarship-badge-percent {
  font-family: var(--font-heading);
  font-size: 54px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
	
}

.puiv-scholarship-badge-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  margin-left: -26px;
  overflow: hidden;
  border-top-right-radius: 28px;
  border-bottom-right-radius: 28px;
}

.puiv-scholarship-badge-top {
  background-color: #ffffff;
  padding: 8px 28px 7px 34px;
  border-top-right-radius: 28px;
  display: flex;
  align-items: center;
}

.puiv-scholarship-badge-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 900;
  color: #000000;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.puiv-scholarship-badge-bottom {
  background-color: #E60028;
  padding: 6px 28px 8px 34px;
  border-bottom-right-radius: 28px;
  display: flex;
  align-items: center;
	width: 85%;
}

.puiv-scholarship-badge-sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

/* ============================================================
   7.9 THE PU LEARNING EXPERIENCE SECTION
============================================================ */
.puiv-learning {
  position: relative;
  overflow: hidden;
  padding-block: 85px;
  background-color: #ffffff;
	padding-top: 35px;
}

.puiv-learning-earth-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

/* Layer 1: Back Flag */
.puiv-learning-flag-back {
  position: absolute;
  top: 130px;
  width: 821px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

/* Layer 2: Earth GIF (Large globe in Figma: 1441px width) */
.puiv-learning-earth-gif {
  position: absolute;
  top: 370px;
  left: 50%;
  transform: translateX(-50%);
  width: 1440px;
  max-width: none;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

/* Layer 3: Front Flag */
.puiv-learning-flag-front {
  position: absolute;
  top: 80px;
  right: 0%;
  height: auto;
  z-index: 3;
  pointer-events: none;
}

/* Layer 4: Soft White Mist Gradient Overlay (Over Front Flag & Earth, behind Cards) */
.puiv-learning-earth-overlay {
  position: absolute;
  top: 640px;
  left: 0;
  width: 100%;
  height: calc(100% - 640px);
  min-height: 850px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 15%,
    rgba(255, 255, 255, 0.7) 35%,
    rgba(255, 255, 255, 0.95) 60%,
    #ffffff 85%
  );
  z-index: 4;
  pointer-events: none;
}

/* Layer 5: Cards Container */
.puiv-learning-container {
  position: relative;
  z-index: 5;
}

.puiv-learning-header {
  margin-bottom: 500px;
  position: relative;
  z-index: 5;
}

.puiv-learning-title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 700;
  line-height: 1.08;
  color: #25135F;
  margin-bottom: 16px;
}

.puiv-learning-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: #4A4A68;
  margin: 0 auto;
}

/* 6 Cards Grid on Desktop */
@media (min-width: 992px) {
  .puiv-learning-slider {
    display: grid;
    grid-template-columns: repeat(3, 360px);
    justify-content: center;
    gap: 24px;
  }
}

.puiv-learning-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 360px;
  height: 399px;
  background-color: #0b0726;
  cursor: pointer;
}

.puiv-learning-card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.puiv-learning-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.puiv-learning-card-cloud {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: bottom center;
  z-index: 2;
  pointer-events: none;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

/* .puiv-learning-card-cloud img{
  width: 150% !important;
} */

.puiv-learning-card:hover .puiv-learning-card-cloud {
  bottom: 0;
  height: 460px;
}

.puiv-learning-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px 22px 20px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}

.puiv-learning-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #170B38;
  line-height: 1.2;
  margin: 0;
  transition: color 0.3s ease;
}

.puiv-learning-card-hover-desc {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, margin-top 0.3s ease;
  margin-top: 0;
}

.puiv-learning-card:hover .puiv-learning-card-hover-desc {
  max-height: 120px;
  opacity: 1;
  margin-top: 8px;
}

.puiv-learning-card-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.45;
  color: #21134E;
  font-weight: 500;
  margin: 0;
}

/* Slick Dots Styling for Learning Experience Slider */
.puiv-slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
}

.puiv-slick-dots li {
  margin: 0;
}

.puiv-slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background-color: #D9D7E8;
  cursor: pointer;
  transition: all 0.3s ease;
}

.puiv-slick-dots li.slick-active button {
  width: 28px;
  background-color: var(--color-yellow);
  border-radius: 10px;
}

/* ============================================================
   7.10 ENTREPRENEURSHIP AT PU SECTION
============================================================ */
.puiv-entre {
  padding-block: 85px;
  background-color: #ffffff;
  position: relative;
  padding-top: 35px;
}

.puiv-entre-header {
  margin-bottom: 50px;
}

.puiv-entre-title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.2vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  color: #25135F;
  margin-bottom: 16px;
}

.puiv-entre-subtitle-highlight {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: #25135F;
  margin-bottom: 8px;
}

.puiv-entre-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: #4A4A68;
  max-width: 820px;
  margin: 0 auto;
}

/* 5 Steps Grid (Desktop: 3 top row, 2 bottom row centered) */
.puiv-entre-steps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin: 0 auto 55px;
}

.puiv-entre-step-card {
  grid-column: span 2;
  background-color: #F4F0FB;
  border-radius: 18px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.puiv-entre-step-card--bottom-1 {
  grid-column: 2 / span 2;
}

.puiv-entre-step-card--bottom-2 {
  grid-column: 4 / span 2;
}

.puiv-entre-step-icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.puiv-entre-step-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.puiv-entre-step-content {
  flex: 1;
}

.puiv-entre-step-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: #170B38;
  line-height: 1.25;
  margin-bottom: 6px;
}

.puiv-entre-step-desc {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.45;
  color: #4A4A68;
  margin: 0;
}

/* Building Across Categories */
/* .puiv-entre-categories {
  margin-bottom: 45px;
} */

.puiv-entre-categories-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 700;
  color: #25135F;
  margin-bottom: 28px;
}

.puiv-entre-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 0 auto;
}

.puiv-entre-pill {
  background-color: #F4F0FB;
  border-radius: 50px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.puiv-entre-pill-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #D9D5E8;
  flex-shrink: 0;
}

.puiv-entre-pill-text {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: #170B38;
  line-height: 1;
}

/* Primary CTA Button */
.puiv-entre-cta-wrap {
  margin-top: 10px;
}

.puiv-entre-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #1A0D46;
  border: 2px solid #5641E0;
  border-radius: 50px;
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-yellow);
  text-decoration: none;
  transition: all 0.3s ease;
}

.puiv-entre-cta-btn span {
	font-size: inherit;
	font-family: inherit;
	color: inherit;
}

.puiv-entre-cta-btn:hover {
  background-color: #25135F;
  color: #ffffff;
  border-color: var(--color-yellow);
}

.puiv-entre-cta-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* ============================================================
   7.11 STUDY IN INDIA / DESTINATION VADODARA SECTION
============================================================ */
.puiv-dest {
  padding-block: 85px;
  background-color: var(--color-bg-gray);
  position: relative;
}

.puiv-dest-header {
  margin-bottom: 50px;
}

.puiv-dest-title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 700;
  line-height: 1.08;
  color: #25135F;
  margin-bottom: 16px;
}

.puiv-dest-title span{
	font-size: inherit;
	font-family: inherit;
	color: inherit;
}

.puiv-dest-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: #4A4A68;
  max-width: 820px;
  margin: 0 auto;
}

/* 3 Cards Grid on Desktop */
@media (min-width: 992px) {
  .puiv-dest-slider {
    display: grid;
    grid-template-columns: repeat(3, 360px);
    justify-content: center;
    gap: 24px;
    max-width: 1160px;
    margin: 0 auto;
  }
}

.puiv-dest-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  max-width: 360px;
  height: 420px;
  background-color: #0b0726;
  margin: 0 auto;
}

.puiv-dest-card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.puiv-dest-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.puiv-dest-card-gradient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 42%,
    rgba(0, 0, 0, 0.72) 70%,
    rgba(0, 0, 0, 0.96) 95%
  );
  pointer-events: none;
  z-index: 1;
}

.puiv-dest-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 26px 22px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}

.puiv-dest-card-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 8px;
}

.puiv-dest-card-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* ============================================================
   7.12 CULTURE AT PU SECTION
============================================================ */
.puiv-culture {
  padding-block: 85px;
  background-color: #1A0D46;
  position: relative;
  overflow: hidden;
}

.puiv-culture-header {
  margin-bottom: 45px;
}

.puiv-culture-title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-yellow);
  margin-bottom: 16px;
}

.puiv-culture-title span {
  font-size: inherit;
  font-family: inherit;
  color: inherit;
}

.puiv-culture-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  color: #ffffff;
  opacity: 0.9;
  margin: 0 auto;
  max-width: 860px;
}

.puiv-culture-highlight-text,
.puiv-culture-footer-text {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 20px auto 0;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* Culture Cards Slider */
.puiv-culture-slider-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}

.puiv-culture-slider {
  margin-inline: -12px;
}

.puiv-culture-slide {
  padding: 0 12px;
  outline: none;
}

.puiv-culture-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  height: 440px;
  background-color: #0b0726;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.puiv-culture-card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.puiv-culture-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.puiv-culture-card-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.05) 30%, rgba(0, 0, 0, 0.6) 65%, rgba(0, 0, 0, 0.95) 100%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease;
}

/* Hover effects */
.puiv-culture-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.puiv-culture-card:hover .puiv-culture-card-img {
  transform: scale(1.05);
}

.puiv-culture-card:hover .puiv-culture-card-overlay {
  opacity: 0.92;
}

.puiv-culture-card-content {
  position: relative;
  z-index: 2;
  padding: 24px 22px 26px;
  text-align: left;
}

.puiv-culture-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.puiv-culture-card-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

/* Culture Slider Dots */
.puiv-culture-dots.puiv-slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}

.puiv-culture-dots.puiv-slick-dots li {
  margin: 0;
}

.puiv-culture-dots.puiv-slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #4B3E75;
  cursor: pointer;
  transition: all 0.3s ease;
}

.puiv-culture-dots.puiv-slick-dots li.slick-active button {
  width: 28px;
  height: 8px;
  background-color: var(--color-yellow);
  border-radius: 10px;
}

/* ============================================================
   7.13 GLOBAL ICONS AT PU SECTION
============================================================ */
.puiv-icons {
  padding-block: 85px;
  background-color: #ffffff;
  position: relative;
}

.puiv-icons-header {
  margin-bottom: 50px;
}

.puiv-icons-title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 700;
  line-height: 1.1;
  color: #25135F;
  margin-bottom: 16px;
}

.puiv-icons-title span {
	font-size: inherit;
	font-family: inherit;
	color: inherit;
}

.puiv-icons-subtitle-highlight {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: #25135F;
  margin-bottom: 8px;
}

.puiv-icons-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  color: #4A4A68;
  width: 85%;
  margin: 0 auto;
}

/* 7 Cards Desktop Grid: Row 1 (3 items), Row 2 (4 items) */
.puiv-icons-grid-desktop {
  margin: 0 auto;
}

.puiv-icons-row--top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.puiv-icons-row--bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.puiv-icon-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
  background-color: #0b0726;
}

.puiv-icon-card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.puiv-icon-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.puiv-icon-card-gradient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.85) 90%
  );
  pointer-events: none;
  z-index: 1;
}

.puiv-icon-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 16px;
  z-index: 2;
  text-align: center;
}

.puiv-icon-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.25;
}

/* Primary CTA Button */
.puiv-icons-cta-wrap {
  margin-top: 10px;
}

.puiv-icons-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #1A0D46;
  border: 2px solid #5641E0;
  border-radius: 50px;
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-yellow);
  text-decoration: none;
  transition: all 0.3s ease;
}

.puiv-icons-cta-btn span{
	font-size: inherit;
	font-family: inherit;
	color: inherit;
}

.puiv-icons-cta-btn:hover {
  background-color: #25135F;
  color: #ffffff;
  border-color: var(--color-yellow);
}

.puiv-icons-cta-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* ============================================================
   7.14 THE EXPERIENCE BEYOND YOUR DEGREE SECTION
============================================================ */
.puiv-beyond {
  padding-block: 85px;
  background-color: var(--color-bg-gray);
  position: relative;
}

.puiv-beyond-col-content {
  padding-right: 40px;
}

.puiv-beyond-title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  color: #25135F;
  margin-bottom: 18px;
}

.puiv-beyond-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: #4A4A68;
  margin-bottom: 24px;
}

.puiv-beyond-highlight {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #25135F;
  margin-bottom: 24px;
}

.puiv-beyond-cta-wrap {
  margin-top: 10px;
}

.puiv-beyond-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #1A0D46;
  border: 2px solid #5641E0;
  border-radius: 50px;
  padding: 14px 34px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-yellow);
  text-decoration: none;
  transition: all 0.3s ease;
}

.puiv-beyond-cta-btn span{
	font-size: inherit;
	font-family: inherit;
	color: inherit;
}

.puiv-beyond-cta-btn:hover {
  background-color: #25135F;
  color: #ffffff;
  border-color: var(--color-yellow);
}

.puiv-beyond-cta-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Right Column Card Showcase Slider */
.puiv-beyond-col-media {
  display: flex;
  justify-content: flex-end;
}

.puiv-beyond-col-media .slick-dotted.slick-slider{
	margin-bottom: 0px !important;
}

.puiv-beyond-slider {
  width: 100%;
  max-width: 480px;
  margin-left: auto;
}

.puiv-beyond-card-item {
  padding: 0 10px;
}

.puiv-beyond-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 512px;
  background-color: #0b0726;
}

.puiv-beyond-card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.puiv-beyond-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.puiv-beyond-card-gradient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.95) 90%
  );
  pointer-events: none;
  z-index: 1;
}

.puiv-beyond-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 26px 22px;
  z-index: 2;
  text-align: left;
}

.puiv-beyond-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.25;
}

.puiv-beyond-card-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* ============================================================
   7.15 GRADUATION AT PU SECTION
============================================================ */
.puiv-grad {
  padding-block: 85px;
  background-color: #ffffff;
  position: relative;
}

.puiv-grad-banner {
  background: radial-gradient(54.77% 242.03% at 26.19% 36.04%, #480303 0%, #6A0909 100%);
  border: 3px solid #E69500;
  border-radius: 36px;
  padding: 48px 45px;
  position: relative;
  overflow: hidden;
}

.puiv-grad-col-content {
  padding-right: 35px;
}

.puiv-grad-title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 4.2vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.puiv-grad-tagline {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  opacity: 0.95;
  margin-bottom: 24px;
}

.puiv-grad-desc-wrap {
  margin-bottom: 24px;
}

.puiv-grad-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 12px;
}

.puiv-grad-desc:last-child {
  margin-bottom: 0;
}

.puiv-grad-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}

.puiv-grad-highlight {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-yellow);
  line-height: 1.45;
  margin: 0;
}

/* Right Media Wrap */
.puiv-grad-media-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #1a0101;
  border: 1.5px solid rgba(230, 149, 0, 0.45);
  transform: translateZ(0);
}

.puiv-grad-media-wrap--playable {
  cursor: pointer;
}

.puiv-grad-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), filter 0.3s ease;
}

.puiv-grad-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.0) 0%, rgba(20, 0, 0, 0.15) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Play Button */
.puiv-grad-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: transparent;
  padding: 0;
  pointer-events: none;
  z-index: 2;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.puiv-grad-play-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 149, 0, 0.5) 0%, rgba(230, 149, 0, 0) 70%);
  animation: puivGradPulse 2.4s infinite ease-in-out;
}

.puiv-grad-play-circle {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFC800 0%, #E69500 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b0303;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), 0 0 0 4px rgba(255, 255, 255, 0.25);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.puiv-grad-play-svg {
  transition: transform 0.3s ease;
}

/* Hover & Focus states */
.puiv-grad-media-wrap--playable:hover .puiv-grad-img,
.puiv-grad-media-wrap--playable:focus .puiv-grad-img {
  transform: scale(1.04);
}

.puiv-grad-media-wrap--playable:hover .puiv-grad-play-btn,
.puiv-grad-media-wrap--playable:focus .puiv-grad-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
}

.puiv-grad-media-wrap--playable:hover .puiv-grad-play-circle,
.puiv-grad-media-wrap--playable:focus .puiv-grad-play-circle {
  box-shadow: 0 12px 30px rgba(230, 149, 0, 0.6), 0 0 0 6px rgba(255, 255, 255, 0.4);
}

.puiv-grad-media-wrap--playable:active .puiv-grad-play-btn {
  transform: translate(-50%, -50%) scale(0.96);
}

@keyframes puivGradPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.25);
    opacity: 1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.5;
  }
}

/* Playing state */
.puiv-grad-media-wrap.is-playing .puiv-grad-img,
.puiv-grad-media-wrap.is-playing .puiv-grad-overlay,
.puiv-grad-media-wrap.is-playing .puiv-grad-play-btn {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.puiv-grad-media-wrap.is-playing {
  cursor: default;
}

.puiv-grad-media-wrap iframe,
.puiv-grad-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  z-index: 3;
}

.puiv-grad-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   7.16 YOUR NEXT MOVE SECTION
============================================================ */
.puiv-next-move {
  padding-top: 50px;
  background-color: #ffffff;
}

.puiv-next-move-content {
  text-align: left;
  padding-right: 25px;
}

.puiv-next-move-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.12;
  color: #25135F;
  margin-bottom: 14px;
}

.puiv-next-move-title span {
  font-size: inherit;
  font-family: inherit;
  color: inherit;
}

.puiv-next-move-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  color: #4A4A68;
  margin-bottom: 10px;
}

.puiv-next-move-highlight {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: #25135F;
  margin: 0 0 28px 0;
  line-height: 1.55;
}

.puiv-next-move-btns {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.puiv-next-move-btn-apply {
  min-width: 200px;
  padding: 15px 30px;
  border-radius: 72px;
}

.puiv-next-move-form-card {
  margin-left: auto;
  box-shadow: 0 16px 45px rgba(23, 11, 56, 0.12), 0 2px 10px rgba(23, 11, 56, 0.04);
}

.puiv-btn--outline-navy {
  background: transparent;
  border: 3px solid #25135F;
  color: #25135F;
  font-weight: 700;
  min-width: 200px;
  padding: 15px 30px;
  text-align: center;
  border-radius: 72px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.puiv-btn--outline-navy:hover {
  background-color: #25135F;
  color: #ffffff;
}

.puiv-next-move-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}

.puiv-next-move-bottom-bar {
  width: 100%;
  height: 28px;
  background-color: var(--color-yellow);
}

/* ============================================================
   RESPONSIVE TYPOGRAPHY & LAYOUT BREAKPOINTS
============================================================ */

/* 1. Large Desktop (>= 1440px): Headings 62px */
@media (min-width: 1440px) {
  .puiv-hero {
    height: 1057px;
    min-height: 1057px;
    max-height: 1080px;
  }
  .puiv-hero-title {
    font-size: 62px;
  }
  .puiv-why-pu-title,
  .puiv-prog-title,
  .puiv-scholarship-title,
  .puiv-learning-title,
  .puiv-entre-title,
  .puiv-dest-title,
  .puiv-culture-title,
  .puiv-icons-title,
  .puiv-beyond-title,
  .puiv-next-move-title {
    font-size: 62px;
  }
  .puiv-accred-h,
  .puiv-accred-h-accent {
    font-size: 58px;
  }
  .puiv-grad-title {
    font-size: 56px;
  }
  .puiv-hero-subtitle {
    font-size: 26px;
  }
  .puiv-hero-description {
    font-size: 18px;
    max-width: 550px;
  }
  .puiv-hero-form-card {
    max-width: 420px;
    height: auto;
  }
  .puiv-hero-students-wrapper {
    max-width: 1220px;
  }
  .puiv-hero-students-img {
    max-width: 1180px;
    margin-bottom: 0;
  }
  .puiv-infinite-slider-item {
    width: 900px;
    height: 530px;
  }
  .puiv-why-pu-desc-p {
    font-size: 20px;
  }
}

/* 2. Laptop (1200px - 1439px): Headings 52–58px */
@media (min-width: 1200px) and (max-width: 1439.98px) {
  .puiv-hero {
    height: 980px;
    min-height: 980px;
    max-height: 1020px;
  }
  .puiv-hero-title {
    font-size: 56px;
  }
  .puiv-why-pu-title,
  .puiv-prog-title,
  .puiv-scholarship-title,
  .puiv-learning-title,
  .puiv-entre-title,
  .puiv-dest-title,
  .puiv-culture-title,
  .puiv-icons-title,
  .puiv-beyond-title,
  .puiv-next-move-title {
    font-size: 54px;
  }
  .puiv-accred-h,
  .puiv-accred-h-accent {
    font-size: 52px;
  }
  .puiv-grad-title {
    font-size: 48px;
  }
  .puiv-hero-subtitle {
    font-size: 24px;
  }
  .puiv-hero-description {
    font-size: 17px;
    max-width: 520px;
  }
  .puiv-hero-form-card {
    max-width: 390px;
    height: auto;
  }
  .puiv-hero-students-wrapper {
    max-width: 1080px;
  }
  .puiv-hero-students-img {
    max-width: 1040px;
    margin-bottom: 0;
  }
  .puiv-infinite-slider-item {
    width: 660px;
    height: 420px;
    margin: 0 6px;
  }
}

/* 3. Tablet Landscape & Small Laptop (992px - 1199px): Headings 44–52px */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .puiv-hero {
    height: 880px;
    min-height: 880px;
    max-height: 920px;
  }
  .puiv-hero-title {
    font-size: 50px;
  }
  .puiv-why-pu-title,
  .puiv-prog-title,
  .puiv-scholarship-title,
  .puiv-learning-title,
  .puiv-entre-title,
  .puiv-dest-title,
  .puiv-culture-title,
  .puiv-icons-title,
  .puiv-beyond-title,
  .puiv-next-move-title {
    font-size: 48px;
  }
  .puiv-accred-h,
  .puiv-accred-h-accent {
    font-size: 46px;
  }
  .puiv-grad-title {
    font-size: 44px;
  }
  .puiv-hero-subtitle {
    font-size: 22px;
  }
  .puiv-hero-form-card {
    max-width: 360px;
    height: auto;
  }
  .puiv-hero-students-wrapper {
    max-width: 920px;
  }
  .puiv-hero-students-img {
    max-width: 880px;
    margin-bottom: 0;
  }
  .puiv-infinite-slider-item {
    width: 540px;
    height: 350px;
    border-radius: 28px;
    margin: 0 6px;
  }
}

/* 4. Tablet Portrait (768px - 991px): Headings 44–52px */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* Hide mobile-only sticky bar on tablet */
  .puiv-mobile-sticky-bar {
    display: none !important;
  }

  /* Display mobile form section on tablet with 100% width adjusted */
  .puiv-mobile-form-section {
    display: flex !important;
    background-color: #ffffff;
    padding: 30px 16px 30px;
    justify-content: center;
    width: 100%;
  }

  .puiv-mobile-form-section .puiv-hero-form-card--mobile {
    display: flex !important;
    width: 100% !important;
    max-width: 580px !important;
    margin: 0 auto;
  }

  /* 7.1 Hero Section Tablet */
  .puiv-hero {
    padding-top: 50px;
    padding-bottom: 0;
    min-height: auto;
    height: auto;
    max-height: none;
    display: block;
    overflow: hidden;
    position: relative;
  }

  .puiv-hero-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 20px;
  }

  .puiv-hero-title {
    font-size: 46px;
    margin-bottom: 14px;
  }

  .puiv-why-pu-title,
  .puiv-prog-title,
  .puiv-scholarship-title,
  .puiv-learning-title,
  .puiv-entre-title,
  .puiv-dest-title,
  .puiv-culture-title,
  .puiv-icons-title,
  .puiv-beyond-title,
  .puiv-next-move-title {
    font-size: 44px;
  }

  .puiv-accred-h,
  .puiv-accred-h-accent {
    font-size: 42px;
  }

  .puiv-grad-title {
    font-size: 40px;
  }

  .puiv-hero-divider {
    max-width: 320px;
    margin: 0 auto 18px;
  }

  .puiv-hero-subtitle {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .puiv-hero-cta-group {
    justify-content: center;
    gap: 14px;
    margin-bottom: 10px;
  }

  .puiv-hero #puiv-form-container {
    display: none;
  }

  .puiv-hero-students-wrapper {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    max-width: 680px;
    margin: 25px auto 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 3;
  }

  .puiv-hero-students-img {
    width: 100%;
    max-width: 640px;
    margin-inline: auto;
    margin-bottom: -30px;
    display: block;
  }

  .puiv-hero-clouds-wrapper {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    margin-top: -80px;
    z-index: 8;
    pointer-events: none;
  }

  .puiv-hero-clouds-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    object-position: center bottom;
    display: block;
  }

  /* 7.5 Why PU Section Tablet */
  .puiv-why-pu {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .puiv-infinite-slider-item {
    width: 440px;
    height: 290px;
    margin: 0 6px;
    border-radius: 24px;
  }

  /* 7.6 Accreditation Section Tablet */
  .puiv-accred {
    padding: 3rem 0;
  }

  .puiv-accred-marquee-box {
    margin-left: 0;
    margin-top: 1.5rem;
    max-width: 100%;
  }

  .puiv-accred-card {
    width: 100%;
    padding: 24px 28px;
    gap: 20px;
  }

  /* 7.7 Programs Section Tablet */
  .puiv-programs {
    padding-block: 60px;
  }

  .puiv-programs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  /* 7.8 Scholarship Section Tablet */
  .puiv-scholarship-banner {
    padding: 36px 28px 24px;
    border-radius: 28px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
    min-height: auto;
  }

  .puiv-scholarship-content {
    max-width: 58%;
    position: relative;
    z-index: 5;
  }

  .puiv-scholarship-title {
    font-size: 36px;
    line-height: 1.1;
    margin-bottom: 14px;
  }

  .puiv-scholarship-desc {
    font-size: 14.5px;
    line-height: 1.45;
    margin-bottom: 14px;
  }

  .puiv-scholarship-criteria {
    margin-bottom: 16px;
  }

  .puiv-scholarship-criteria-title {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .puiv-scholarship-list li {
    font-size: 13.5px;
    line-height: 1.4;
  }

  .puiv-scholarship-btn-group {
    gap: 10px;
    margin-bottom: 12px;
  }

  .puiv-btn--scholarship-primary {
    padding: 10px 20px;
    font-size: 14px;
  }

  .puiv-btn--scholarship-outline {
    padding: 9px 18px;
    font-size: 14px;
  }

  .puiv-scholarship-disclaimer {
    font-size: 12.5px;
    line-height: 1.35;
    max-width: 440px;
  }

  .puiv-scholarship-visual-container {
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 46%;
    max-width: 340px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 2;
    pointer-events: none;
  }

  .puiv-scholarship-student-img {
    height: 90%;
    max-height: 440px;
    width: auto;
    object-fit: contain;
    object-position: right bottom;
    margin-right: 0;
  }

  .puiv-scholarship-pill-badge {
    bottom: 20px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) scale(0.85);
    transform-origin: bottom center;
    z-index: 6;
  }

  /* 7.9 Learning Experience Section Tablet */
  .puiv-learning {
    padding-block: 0px;
    position: relative;
    overflow: hidden;
  }

  .puiv-learning-header {
    margin-bottom: 240px;
    position: relative;
    z-index: 5;
    text-align: center;
  }

  .puiv-learning-earth-wrap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
  }

  .puiv-learning-flag-back {
    position: absolute;
    top: 60px;
    left: -80px;
    width: 480px;
    height: auto;
    z-index: 1;
  }

  .puiv-learning-earth-gif {
    position: absolute;
    top: 235px;
    left: 50%;
    transform: translateX(-50%);
    width: 820px;
    max-width: none;
    z-index: 2;
  }

  .puiv-learning-flag-front {
    position: absolute;
    top: 40px;
    right: -60px;
    width: 450px;
    height: auto;
    z-index: 1;
  }

  .puiv-learning-earth-overlay {
    position: absolute;
    top: 320px;
    left: 0;
    width: 100%;
    height: calc(100% - 320px);
    min-height: auto;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.7) 40%,
      #ffffff 80%
    );
    z-index: 4;
  }

  .puiv-learning-slider {
    margin-inline: -12px;
    position: relative;
    z-index: 5;
  }

  .puiv-learning-card-item {
    padding: 0 12px;
  }

  .puiv-learning-card {
    height: 380px;
    border-radius: 20px;
    max-width: 100%;
  }

  .puiv-learning-card-cloud {
    height: 220px;
    bottom: 0;
  }

  /* 7.10 Entrepreneurship Section Tablet */
  .puiv-entre {
    padding-block: 65px;
  }

  .puiv-entre-header {
    margin-bottom: 35px;
    text-align: center;
  }

  .puiv-entre-steps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 35px;
  }

  .puiv-entre-step-card {
    width: calc(33.333% - 10px);
    min-width: 220px;
    padding: 22px 18px;
  }

  .puiv-entre-categories {
    margin-bottom: 35px;
    text-align: center;
  }

  .puiv-entre-pills-wrap {
    gap: 10px;
    justify-content: center;
  }

  .puiv-entre-pill {
    padding: 10px 18px;
  }

  /* 7.11 Study in India Section Tablet */
  .puiv-dest {
    padding-block: 65px;
    position: relative;
    overflow: hidden;
  }

  .puiv-dest-header {
    margin-bottom: 35px;
    text-align: center;
  }

  .puiv-dest-title {
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 12px;
  }

  .puiv-dest-subtitle {
    font-size: 16px;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
  }

  .puiv-dest-slider {
    margin-inline: -12px;
    position: relative;
    z-index: 2;
  }

  .puiv-dest-card-item {
    padding: 0 12px;
  }

  .puiv-dest-card {
    height: 400px;
    border-radius: 20px;
  }

  /* 7.12 Culture Section Tablet */
  .puiv-culture {
    padding-block: 65px;
  }

  .puiv-culture-header {
    margin-bottom: 35px;
  }

  .puiv-culture-slider-wrapper {
    max-width: 100%;
  }

  .puiv-culture-card {
    height: 400px;
    border-radius: 22px;
  }

  .puiv-culture-highlight-text,
  .puiv-culture-footer-text {
    font-size: 16px;
    margin-top: 16px;
  }

  /* 7.13 Global Icons Section Tablet */
  .puiv-icons {
    padding-block: 65px;
  }

  .puiv-icons-slider {
    margin-inline: -12px;
    /* margin-bottom: 30px; */
  }

  .puiv-icon-card-item {
    padding: 0 12px;
  }

  .puiv-icon-card {
    height: 300px;
    border-radius: 20px;
  }

  /* 7.14 Beyond Degree Section Tablet */
  .puiv-beyond {
    padding-block: 65px;
  }

  .puiv-beyond-col-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 30px;
  }

  .puiv-beyond-title {
    font-size: 42px;
    margin-bottom: 14px;
  }

  .puiv-beyond-subtitle {
    font-size: 15px;
    margin-bottom: 18px;
    max-width: 580px;
    margin-inline: auto;
  }

  .puiv-beyond-highlight {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .puiv-beyond-cta-btn {
    padding: 14px 34px;
  }

  .puiv-beyond-col-media {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .puiv-beyond-slider {
    width: 100%;
    max-width: 480px;
    margin-inline: auto;
  }

  .puiv-beyond-card {
    height: 420px;
    border-radius: 24px;
  }

  /* 7.15 Graduation Section Tablet */
  .puiv-grad {
    padding-block: 65px;
  }

  .puiv-grad-banner {
    padding: 40px 30px;
  }

  .puiv-grad-media-wrap {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  /* 7.16 Your Next Move Section Tablet */
  .puiv-next-move {
    padding-top: 65px;
  }

  .puiv-next-move-content {
    text-align: center;
    margin-bottom: 24px;
  }

  .puiv-next-move-btns {
    justify-content: center;
  }

  .puiv-next-move .puiv-hero-form-card,
  .puiv-next-move-form-card {
    display: flex !important;
    width: 100% !important;
    max-width: 580px !important;
    margin: 30px auto 0 auto !important;
  }
}

/* 5. Mobile (<= 767px): Headings 32–38px */
@media (max-width: 767.98px) {
  /* Reusable Compact Badge for Mobile */
  .puiv-badge {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.035em;
    padding: 5px 14px;
    border-radius: 40px;
    margin-bottom: 12px;
    line-height: 1.25;
    text-align: center;
    max-width: 92%;
    word-break: normal;
  }

  .puiv-hero {
    padding-top: 26px;
    padding-bottom: 0;
    overflow: hidden;
    position: relative;
    min-height: auto;
    height: 730px;
    max-height: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .puiv-hero-bg-gate-img {
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }

  .puiv-hero-container {
    padding-top: 0;
    padding-inline: 16px;
  }

  .puiv-hero-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 0;
  }

  .puiv-hero-title {
    font-size: clamp(30px, 8.2vw, 36px);
    line-height: 1.12;
    margin-bottom: 14px;
    letter-spacing: -0.015em;
    max-width: 360px;
    margin-inline: auto;
  }

  .puiv-hero-divider {
    max-width: 320px;
    width: 85%;
    height: 1px;
    margin: 0 auto 16px;
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    opacity: 0.7;
  }

  .puiv-hero-subtitle {
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 22px;
    max-width: 340px;
    margin-inline: auto;
  }

  .puiv-hero-cta-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-bottom: 24px;
  }

  .puiv-btn {
    padding: 12px 22px;
    font-size: 15px;
    font-weight: 700;
  }

  .puiv-btn--primary {
    background-color: #ffc800;
    color: #0F0445;
    min-width: 136px;
    text-align: center;
  }

  .puiv-btn--outline-white {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    min-width: 158px;
    text-align: center;
  }

  .puiv-hero-students-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 0;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 3;
    pointer-events: none;
    bottom: -60px;
  }

  .puiv-hero-students-img {
    width: 215%;
    min-width: 760px;
    max-width: 820px;
    height: auto;
    margin-bottom: 0;
    object-fit: contain;
    display: block;
  }

  .puiv-hero-clouds-wrapper {
    position: relative;
    width: 204%;
    left: -50%;
    margin-top: -165px;
    margin-bottom: 0;
    z-index: 8;
    pointer-events: none;
    line-height: 0;
  }

  .puiv-hero-clouds-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    object-position: center bottom;
    display: block;
  }

  .puiv-mobile-form-section {
    padding: 35px 0 40px;
    background-color: #ffffff;
  }

  .puiv-hero-form-card--mobile {
    display: flex !important;
    background-color: #e2e4f0;
    border-radius: 28px;
    min-height: 440px;
    width: calc(100% - 16px);
    max-width: 360px;
    margin: 0 auto;
  }

  .puiv-why-pu {
    padding-top: 15px;
    padding-bottom: 50px;
    text-align: center;
  }

  .puiv-why-pu-title {
    font-size: clamp(28px, 7.5vw, 34px);
    line-height: 1.16;
    margin-bottom: 18px;
    text-align: center;
  }

  .puiv-why-pu-desc-p {
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 14px;
    text-align: center;
    max-width: 440px;
    margin-inline: auto;
    color: #25135f;
  }

  .puiv-infinite-slider-container {
    padding: 25px 0 20px;
  }

  .puiv-infinite-slider-track {
    gap: 0;
  }

  .puiv-infinite-slider-item {
    width: 78vw;
    max-width: 320px;
    height: 230px;
    margin: 0 4px;
    border-radius: 20px;
  }

  .puiv-btn--campus-film {
    width: auto;
    max-width: 280px;
    font-size: 14.5px;
    padding: 12px 26px;
    margin-top: 20px;
    justify-content: center;
    display: inline-flex;
  }

  .puiv-accred {
    padding: 50px 0 60px;
    background: #F5F5F8;
    text-align: center;
  }

  .puiv-accred-h,
  .puiv-accred-h-accent {
    font-size: clamp(30px, 8vw, 36px);
    line-height: 1.12;
    margin-bottom: 14px;
    text-align: center;
  }

  .puiv-accred-p {
    font-size: 14.5px;
    line-height: 1.5;
    text-align: center;
    max-width: 340px;
    margin: 0 auto 28px;
    color: #4A4A68;
  }

  .puiv-accred-marquee-box {
    height: 240px;
    margin: 0 auto;
    max-width: 360px;
  }

  .puiv-accred-card {
    padding: 16px 20px;
    gap: 14px;
    min-height: 76px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #ffffff;
  }

  .puiv-accred-card-title,
  .puiv-accred-card-sub {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
    color: #0F0445;
  }

  .puiv-accred-card-year {
    font-size: 11.5px;
    color: #6c757d;
    margin-top: 4px;
  }

  .puiv-accred-flower {
    height: 38px;
    width: auto;
  }

  .puiv-accred-logo-img {
    height: 45px;
    width: 90px;
  }

  /* Programme Finder Mobile */
  .puiv-programs {
    padding-block: 50px 60px;
  }

  .puiv-programs-header {
    margin-bottom: 24px;
  }

  .puiv-programs-title {
    font-size: clamp(28px, 7.8vw, 36px);
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .puiv-programs-desc {
    font-size: 14.5px;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  .puiv-programs-tabs-wrapper {
    margin-bottom: 20px;
  }

  .puiv-programs-tabs {
    gap: 10px 8px;
    max-width: 360px;
    margin: 0 auto;
  }

  .puiv-programs-tab {
    padding: 9px 16px;
    font-size: 13.5px;
    gap: 6px;
  }

  .puiv-tab-icon {
    width: 17px;
    height: 17px;
  }

  .puiv-programs-search-container {
    margin-bottom: 24px;
    width: 100%;
  }

  .puiv-programs-search-form {
    width: 100%;
    max-width: 100%;
  }

  .puiv-programs-search-box {
    width: 100%;
    padding: 10px 18px;
  }

  .puiv-programs-search-input {
    font-size: 14px;
  }

  .puiv-btn--program-search,
  .puiv-btn--program-clear {
    display: none !important;
  }

  .puiv-programs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 100%;
  }

  .puiv-program-card {
    padding: 14px 12px;
    border-radius: 12px;
    gap: 10px;
  }

  .puiv-program-card-icon {
    width: 24px;
    height: 24px;
  }

  .puiv-program-card-name {
    font-size: 13.5px;
  }

  .puiv-programs-bottom-action {
    margin-top: 30px;
  }

  .puiv-btn--view-programs {
    width: calc(100% - 20px);
    max-width: 340px;
    font-size: 14.5px;
    padding: 13px 20px;
    justify-content: center;
  }

  /* Scholarship Banner Mobile */
  .puiv-scholarship-banner {
    display: block;
    padding: 28px 18px 80px;
    border-radius: 28px;
    margin-top: 45px;
    min-height: auto;
    position: relative;
    overflow: hidden;
  }

  .puiv-scholarship-bg-svg {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
    opacity: 0.9;
    pointer-events: none;
    z-index: 1;
  }

  .puiv-scholarship-content {
    padding-bottom: 0;
    text-align: left;
    position: relative;
    z-index: 3;
    max-width: 100%;
  }

  .puiv-scholarship-badge {
    font-size: 13px;
    padding: 6px 16px;
    margin-bottom: 14px;
  }

  .puiv-scholarship-title {
    font-size: 34px;
    line-height: 1.08;
    margin-bottom: 16px;
  }

  .puiv-scholarship-desc {
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 18px;
    max-width: 100%;
  }

  .puiv-scholarship-criteria {
    margin-bottom: 18px;
    max-width: 65%;
  }

  .puiv-scholarship-criteria-title {
    /* font-size: 14.5px; */
    margin-bottom: 6px;
  }

  .puiv-scholarship-list {
    padding-left: 18px;
    margin: 0;
  }

  .puiv-scholarship-list li {
    font-size: 13.5px;
    margin-bottom: 2px;
  }

  .puiv-scholarship-btn-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    width: 100%;
  }

  .puiv-btn--scholarship-primary {
    width: fit-content;
    max-width: 82%;
    font-size: 14.5px;
    padding: 12px 20px;
    text-align: center;
    white-space: nowrap;
    display: block;
  }

  .puiv-btn--scholarship-outline {
    width: fit-content;
    max-width: 70%;
    font-size: 14.5px;
    padding: 10px 20px;
    text-align: center;
    white-space: nowrap;
    display: block;
  }

  .puiv-scholarship-disclaimer {
    font-size: 11px;
    line-height: 1.35;
    max-width: 56%;
    margin: 0 0 16px 0;
    font-style: italic;
  }

  .puiv-scholarship-visual-container {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
  }

  .puiv-scholarship-student-img {
    position: absolute;
    right: -12px;
    bottom: 0;
    width: 72%;
    max-width: 285px;
    height: auto;
    object-fit: contain;
    object-position: right bottom;
    display: block;
    margin: 0;
  }

  .puiv-scholarship-pill-badge {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    pointer-events: none;
    width: max-content;
    max-width: 92%;
  }

  .puiv-scholarship-badge-left {
    position: relative;
    z-index: 2;
    padding: 8px 18px;
    border-radius: 50px;
  }

  .puiv-scholarship-badge-percent {
    font-size: 28px;
  }

  .puiv-scholarship-badge-right {
    position: relative;
    z-index: 1;
    margin-left: -16px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
  }

  .puiv-scholarship-badge-top {
    padding: 5px 18px 5px 24px;
    border-top-right-radius: 20px;
  }

  .puiv-scholarship-badge-title {
    font-size: 15px;
    letter-spacing: 0.02em;
  }

  .puiv-scholarship-badge-bottom {
    padding: 4px 18px 5px 24px;
    border-bottom-right-radius: 20px;
  }

  .puiv-scholarship-badge-sub {
    font-size: 11.5px;
  }

  /* 7.9 The PU Learning Experience Mobile */
  .puiv-learning {
    padding-top: 0px;
    padding-bottom: 0px;
    position: relative;
    overflow: hidden;
  }

  .puiv-learning-flag-back,
  .puiv-learning-flag-front {
    display: none !important;
  }

  .puiv-learning-earth-wrap {
    position: absolute;
    top: 250px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 440px;
    pointer-events: none;
    z-index: 1;
    display: flex;
    justify-content: center;
    overflow: visible;
  }

  .puiv-learning-earth-gif {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 540px;
    max-width: 135vw;
    height: auto;
    display: block;
    z-index: 1;
  }

  .puiv-learning-earth-overlay {
    position: absolute;
    top: 140px;
    left: 0;
    width: 100%;
    height: calc(100% - 140px);
    min-height: auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 30%, #ffffff 80%);
    z-index: 2;
    pointer-events: none;
  }

  .puiv-learning-header {
    margin-bottom: 160px;
    position: relative;
    z-index: 4;
  }

  .puiv-learning-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .puiv-learning-subtitle {
    font-size: 13.5px;
    line-height: 1.45;
  }

  .puiv-learning-slider {
    margin-inline: -8px;
    position: relative;
    z-index: 4;
  }

  .puiv-learning-card-item {
    padding: 0 8px;
  }

  .puiv-learning-card {
    height: 399px;
    border-radius: 16px;
  }

  .puiv-learning-card-cloud {
    height: 220px;
    bottom: 0;
  }

  .puiv-learning-card-content {
    padding: 22px 18px 18px;
  }

  .puiv-learning-card-title {
    font-size: 17px;
  }

  .puiv-learning-card-hover-desc {
    max-height: 80px;
    opacity: 1;
    margin-top: 6px;
  }

  /* 7.10 Entrepreneurship at PU Mobile */
  .puiv-entre {
    padding-block: 55px;
  }

  .puiv-entre-header {
    margin-bottom: 32px;
  }

  .puiv-entre-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .puiv-entre-subtitle-highlight {
    font-size: 14px;
    line-height: 1.45;
  }

  .puiv-entre-subtitle {
    font-size: 13.5px;
    line-height: 1.45;
  }

  .puiv-entre-steps-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 38px;
  }

  .puiv-entre-step-card {
    border-radius: 16px;
    padding: 20px 18px;
    gap: 16px;
    align-items: center;
  }

  .puiv-entre-step-icon-wrap {
    width: 44px;
    height: 44px;
  }

  .puiv-entre-step-title {
    font-size: 17px;
    margin-bottom: 4px;
  }

  .puiv-entre-step-desc {
    font-size: 13px;
    line-height: 1.4;
  }

/*   .puiv-entre-categories {
    margin-bottom: 35px;
  } */

  .puiv-entre-categories-title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .puiv-entre-pills-wrap {
    gap: 10px;
    justify-content: center;
  }

  .puiv-entre-pill {
    padding: 10px 18px;
    gap: 10px;
  }

  .puiv-entre-pill-dot {
    width: 14px;
    height: 14px;
  }

  .puiv-entre-pill-text {
    font-size: 16px;
  }

  .puiv-entre-cta-btn {
    width: 100%;
    max-width: 340px;
    padding: 13px 20px;
    font-size: 14.5px;
  }

  /* 7.11 Study in India Mobile */
  .puiv-dest {
    padding-block: 55px;
  }
	
	.puiv-dest .puiv-dest-container .slick-dotted.slick-slider{
		margin-bottom: 0px !important;
	}

  .puiv-dest-header {
    margin-bottom: 30px;
  }

  .puiv-dest-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .puiv-dest-subtitle {
    font-size: 13.5px;
    line-height: 1.45;
  }

  .puiv-dest-slider {
    margin-inline: -8px;
  }

  .puiv-dest-card-item {
    padding: 0 8px;
  }

  .puiv-dest-card {
    height: 390px;
    border-radius: 20px;
  }

  .puiv-dest-card-content {
    padding: 22px 18px;
  }

  .puiv-dest-card-title {
    font-size: 17px;
    margin-bottom: 6px;
  }

  .puiv-dest-card-desc {
    font-size: 13px;
    line-height: 1.4;
  }

  /* 7.12 Culture at PU Mobile */
  .puiv-culture {
    padding-block: 55px;
  }

  .puiv-culture-header {
    margin-bottom: 28px;
  }

  .puiv-culture-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .puiv-culture-subtitle {
    font-size: 13.5px;
    line-height: 1.45;
  }

  .puiv-culture-highlight-text,
  .puiv-culture-footer-text {
    font-size: 14.5px;
    line-height: 1.4;
    margin-top: 14px;
  }

  .puiv-culture-slider {
    margin-inline: -8px;
  }

  .puiv-culture-slide {
    padding: 0 8px;
  }

  .puiv-culture-card {
    height: 380px;
    border-radius: 20px;
  }

  .puiv-culture-card-content {
    padding: 20px 18px 22px;
  }

  .puiv-culture-card-title {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .puiv-culture-card-desc {
    font-size: 12.5px;
    line-height: 1.4;
  }

  .puiv-culture .puiv-culture-container .slick-dotted.slick-slider {
    margin-bottom: 0px !important;
  }

  .puiv-culture-dots.puiv-slick-dots {
    margin: 22px 0 0;
  }

  /* 7.13 Global Icons at PU Mobile */
  .puiv-icons {
    padding-block: 55px;
  }

  .puiv-icons-header {
    margin-bottom: 30px;
  }

  .puiv-icons-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .puiv-icons-subtitle-highlight {
    font-size: 14px;
    line-height: 1.45;
  }

  .puiv-icons-subtitle {
    font-size: 13.5px;
    line-height: 1.45;
  }

  .puiv-icons-slider {
    margin-inline: -8px;
/*     margin-bottom: 30px; */
  }
	
		.puiv-icons .puiv-icons-container .slick-dotted.slick-slider{
		margin-bottom: 0px !important;
	}

  .puiv-icon-card-item {
    padding: 0 8px;
  }

  .puiv-icon-card {
    height: 260px;
    border-radius: 18px;
  }

  .puiv-icon-card-content {
    padding: 16px 14px;
  }

  .puiv-icon-card-title {
    font-size: 15px;
  }

  .puiv-icons-cta-btn {
    width: 100%;
    max-width: 340px;
    padding: 13px 20px;
    font-size: 14.5px;
  }

  /* 7.14 Beyond Degree Mobile */
  .puiv-beyond {
    padding-block: 55px;
  }

  .puiv-beyond-col-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 35px;
  }

  .puiv-beyond-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .puiv-beyond-subtitle {
    font-size: 13.5px;
    line-height: 1.45;
    margin-bottom: 18px;
  }

  .puiv-beyond-highlight {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .puiv-beyond-cta-btn {
    width: 100%;
    max-width: 340px;
    padding: 13px 20px;
    font-size: 14.5px;
  }

  .puiv-beyond-col-media {
    justify-content: center;
  }

  .puiv-beyond-slider {
    max-width: 100%;
    margin-inline: auto;
  }

  .puiv-beyond-card {
    height: 390px;
    border-radius: 20px;
  }

  .puiv-beyond-card-content {
    padding: 20px 18px;
  }

  .puiv-beyond-card-title {
    font-size: 17px;
    margin-bottom: 6px;
  }

  .puiv-beyond-card-desc {
    font-size: 13px;
    line-height: 1.4;
  }

  /* 7.15 Graduation at PU Mobile */
  .puiv-grad {
    padding-block: 55px;
  }
	
  .puiv-grad {
    padding-bottom: 0;
  }

  .puiv-grad-banner {
    padding: 36px 20px;
    border-radius: 28px;
    border-width: 2.5px;
  }

  .puiv-grad-col-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 28px;
  }

  .puiv-grad-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 8px;
  }

  .puiv-grad-tagline {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .puiv-grad-desc {
    font-size: 13px;
    line-height: 1.45;
  }

  .puiv-grad-highlight {
    font-size: 14px;
  }

  .puiv-grad-media-wrap {
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
  }

  .puiv-grad-play-btn {
    width: 60px;
    height: 60px;
  }

  .puiv-grad-play-circle {
    width: 52px;
    height: 52px;
  }

  .puiv-grad-play-svg {
    width: 22px;
    height: 22px;
  }

  /* 7.16 Your Next Move Mobile */
  .puiv-next-move {
    padding-top: 55px;
  }

  .puiv-next-move-content {
    text-align: center;
    padding-right: 0;
    margin-bottom: 24px;
  }

  .puiv-next-move-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 12px;
  }

  .puiv-next-move-subtitle {
    font-size: 13.5px;
    margin-bottom: 6px;
  }

  .puiv-next-move-highlight {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .puiv-next-move-btns {
    justify-content: center;
    gap: 10px;
  }

  .puiv-next-move-btn-apply,
  .puiv-next-move-btn-explore {
    min-width: auto;
    flex: 1;
    padding: 12px 16px;
    font-size: 14px;
  }

  .puiv-next-move-form-card {
    margin-inline: auto;
  }

  .puiv-next-move-bottom-bar {
    height: 20px;
  }
}

.puiv-footer{
	background-color: var(--color-blue);
}

.puiv-footer .puiv-footer-copyright{
	color: #ffffff;
	font-family: var(--font-body);
}

/* ============================================================
   FULLSCREEN VIDEO MODAL (puiv-video-modal)
============================================================ */
.puiv-video-modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.2, 0.9, 0.3, 1), visibility 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.puiv-video-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.puiv-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 4, 32, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}

.puiv-video-modal__dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.puiv-video-modal.is-active .puiv-video-modal__dialog {
  transform: scale(1);
}

.puiv-video-modal__close {
  position: absolute;
  top: -52px;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  z-index: 10;
}

.puiv-video-modal__close:hover,
.puiv-video-modal__close:focus-visible {
  background-color: var(--color-yellow, #ffc800);
  border-color: var(--color-yellow, #ffc800);
  color: #25135f;
  outline: none;
}

.puiv-video-modal__content {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background-color: #000000;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.puiv-video-modal__ratio {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.puiv-video-modal__ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

body.puiv-modal-open {
  overflow: hidden !important;
  touch-action: none;
}

@media (max-width: 767.98px) {
  .puiv-video-modal {
    padding: 16px;
  }

  .puiv-video-modal__close {
    top: -46px;
    right: 4px;
    width: 38px;
    height: 38px;
  }

  .puiv-video-modal__content {
    border-radius: 12px;
  }
}



/* ==========================================================================
   PU INTERNATIONAL THANK YOU PAGE STYLES
   ========================================================================== */
.counter-section.bg-dark {
  background: linear-gradient(90deg, #170B38 0%, #25135F 50%, #1A0D3E 100%) !important;
  color: #FFFFFF;
  padding: 18px 0;
  border-bottom: 2px solid rgba(255, 200, 0, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.counter-section h1,
.pu-ty-counter-msg {
  font-family: var(--font-heading), 'PolymathDisplay', sans-serif;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0;
  line-height: 1.35;
}

.pu-ty-counter-msg span{
	font-size: inherit;
	font-family: inherit;
	color: inherit;
}

.counter-section .text-yellow {
  color: var(--color-yellow, #FFC800) !important;
  font-weight: 700;
}

#timer {
  display: inline-block;
  background: rgba(255, 200, 0, 0.2);
  border: 1px solid var(--color-yellow, #FFC800);
  border-radius: 8px;
  padding: 1px 10px;
  margin: 0 3px;
  font-weight: 700;
}

/* Banner Section (Hero Image) */
.banner-section-ty {
  width: 100%;
  overflow: hidden;
  background-color: #F8FAFD;
}

.banner-section-ty img {
  width: 100%;
  height: auto;
  display: block;
}

/* Campus Section */
.campus {
  background-color: #FFFFFF;
  padding-top: 60px;
  padding-bottom: 60px;
}

.campus .head {
  font-family: var(--font-heading), 'PolymathDisplay', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--color-blue, #25135F);
  line-height: 1.2;
}

.campus h2 {
  font-family: var(--font-heading), 'PolymathDisplay', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: #B53C72;
  margin-top: 6px;
  line-height: 1.25;
}

.campus h5.font-300 {
  font-family: var(--font-body), 'Figtree', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #55627A;
  max-width: 850px;
  margin: 14px auto 0;
  line-height: 1.6;
}

.pu-ty-rounded-img {
  border-radius: 16px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 6px 18px rgba(23, 11, 56, 0.08);
}

/* .pu-ty-rounded-img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 28px rgba(23, 11, 56, 0.14);
} */

/* Infrastructure Section */
.infrastructure {
  background-color: #F8FAFD;
  padding-top: 60px;
  padding-bottom: 70px;
}

.infrastructure .head {
  font-family: var(--font-heading), 'PolymathDisplay', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: var(--color-blue, #25135F);
  line-height: 1.2;
}

.infrastructure h5.font-300 {
  font-family: var(--font-body), 'Figtree', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #55627A;
  max-width: 850px;
  margin: 14px auto 0;
  line-height: 1.6;
}

/* Video Testimonials Section */
.video {
  background: linear-gradient(135deg, #170B38 0%, #25135F 100%);
  padding: 70px 0;
  color: #FFFFFF;
}

.video .head {
  font-family: var(--font-heading), 'PolymathDisplay', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.video h2 {
  font-family: var(--font-heading), 'PolymathDisplay', sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: var(--color-yellow, #FFC800);
  margin-top: 8px;
  line-height: 1.3;
}

.pu-ty-video-box {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pu-ty-video-box iframe {
  width: 100%;
  display: block;
}

@media (max-width: 767px) {
  .campus,
  .infrastructure,
  .video {
    padding-top: 40px;
    padding-bottom: 45px;
  }
}

.puiv-next-move .puiv-hero-form-card{
	max-width: 550px;
}

