/* ==========================================================================
   Parul University Admissions Landing Page - Style System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-red: #D01B24;
  --dark-red: #9E0000;
  --yellow-gold: #FFCC29;
  --yellow-bright: #FFE60A;

  --bg-dark: #000000;
  --bg-card: #111319;
  --bg-card-border: rgba(255, 204, 41, 0.25);

  --text-white: #FFFFFF;
  --text-dark: #0F172A;
  --text-gray: #A1A1AA;
  --text-light-gray: #E2E8F0;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  --gold-glow: 0 0 25px rgba(255, 204, 41, 0.35);
  --red-glow: 0 0 25px rgba(208, 27, 36, 0.5);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.yellow-c {
  color: var(--yellow-gold);
}

/* Header Navbar - Soft Pink Light Theme (Parul University Online) */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffeeee;
  border-bottom: 2px solid #1a1a1a;
  padding: 10px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo-brand img {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: none;
}

.header-v-divider {
  width: 1px;
  height: 34px;
  background: #94A3B8;
  opacity: 0.6;
}

.header-naac-badge {
  display: flex;
  align-items: center;
  gap: 6px;
}

.naac-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.naac-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.05rem;
  color: #0F172A;
  letter-spacing: -0.5px;
}

.naac-sub {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.58rem;
  color: #475569;
  letter-spacing: 1px;
  margin-top: 1px;
}

.naac-grade-circle {
  background: #D20005;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.78rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(210, 0, 5, 0.25);
}

.header-middle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-tollfree {
  background: #D20005;
  color: #FFFFFF;
  padding: 9px 20px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  box-shadow: 0 3px 10px rgba(210, 0, 5, 0.2);
}

.btn-header-tollfree:hover {
  background: #B00004;
  transform: translateY(-1px);
  color: #FFFFFF;
}

.btn-header-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
}

.btn-header-whatsapp:hover {
  background: #20BA5A;
  transform: scale(1.08);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.header-nav-link {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  color: #092139;
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.header-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #D20005;
  transition: width 0.25s ease;
}

.header-nav-link:hover {
  color: #D20005;
}

.header-nav-link:hover::after {
  width: 100%;
}

/* Mobile Hamburger Nav Toggle Button */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 1001;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.mobile-nav-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

.hamburger-bar {
  display: block;
  width: 22px;
  height: 2.5px;
  background-color: #092139;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Active Hamburger X Animation */
.mobile-nav-toggle.active .hamburger-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.mobile-nav-toggle.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.active .hamburger-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: #ffeeee;
    border-bottom: 2px solid #1a1a1a;
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    transform: translateY(-150%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }

  .header-nav.active {
    transform: translateY(0);
  }
}

/* Hero Section (Dark Background for Banner Text) */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, rgba(10, 2, 3, 0.72) 0%, rgba(10, 2, 3, 0.88) 100%), url('images/parul-university-banner.webp') center/cover no-repeat;
  padding: 40px 0 60px;
  border-bottom: 2px solid var(--primary-red);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 30px;
  align-items: center;
}

.hero-banner-image {
  width: 100%;
  max-width: 650px;
  height: auto;
  display: block;
}

.hero-form-card {
  background: rgba(17, 19, 25, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 204, 41, 0.3);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--box-shadow), var(--gold-glow);
  position: relative;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-red), var(--yellow-gold));
  border-radius: 16px 16px 0 0;
}

.form-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--yellow-gold);
  text-transform: uppercase;
  text-align: center;
}

.form-header p {
  font-size: 0.82rem;
  color: var(--text-light-gray);
  text-align: center;
  margin-top: 4px;
  margin-bottom: 20px;
}

.lead-form .form-group {
  margin-bottom: 14px;
}

.lead-form label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-gray);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lead-form .form-control {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: var(--text-white);
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: var(--transition);
}

.lead-form .form-control:focus {
  outline: none;
  border-color: var(--yellow-gold);
  background: rgba(255, 255, 255, 0.14);
}

.lead-form select.form-control option {
  background: #111319;
  color: #FFF;
}

.otp-wrapper {
  display: flex;
  gap: 8px;
}

.btn-otp {
  background: rgba(255, 204, 41, 0.2);
  border: 1px solid var(--yellow-gold);
  color: var(--yellow-gold);
  padding: 0 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.btn-otp:hover {
  background: var(--yellow-gold);
  color: #000;
}

.btn-submit-lead {
  width: 100%;
  padding: 14px;
  background: var(--primary-red);
  border: none;
  border-radius: 8px;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: var(--red-glow);
  transition: var(--transition);
}

.btn-submit-lead:hover {
  background: #B0131B;
  transform: translateY(-2px);
}

/* ==========================================================================
   Section 2: "BE A PART OF THE MOST LEADING" SECTION - LIGHT THEME ONLY
   ========================================================================== */
/* ==========================================================================
   Section 2: Community Showcase (Light Theme Premium Redesign)
   ========================================================================== */
.community-section {
  padding: 85px 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
  color: #0F172A;
  border-bottom: 1px solid #E2E8F0;
}

.community-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 50px;
}

.community-eyebrow {
  display: inline-block;
  background: rgba(210, 0, 5, 0.08);
  color: #D20005;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 6px 18px;
  border-radius: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.community-header h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: #0F172A;
  line-height: 1.25;
}

.community-header h2 strong {
  color: #D20005;
}

.community-sub {
  color: #64748B;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-top: 14px;
}

/* Feature Showcase Card Wrapper */
.vani-card-wrapper {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-top: 5px solid #D20005;
  border-radius: 24px;
  padding: 44px 48px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 45px;
  align-items: stretch;
  position: relative;
}

.vani-info-col {
  text-align: left;
}

.vani-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #D97706;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.vani-info-col h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: #0F172A;
  line-height: 1.25;
  margin-bottom: 28px;
}

.vani-info-col h3 span {
  color: #D20005;
}

/* Feature Tiles Grid */
.feature-tiles-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-tile {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 14px 18px;
  transition: all 0.25s ease;
}

.feature-tile:hover {
  background: #FFFFFF;
  border-color: #D20005;
  transform: translateX(6px);
  box-shadow: 0 8px 20px rgba(210, 0, 5, 0.08);
}

.tile-icon {
  width: 44px;
  height: 44px;
  background: rgba(210, 0, 5, 0.08);
  color: #D20005;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tile-content h4 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 2px;
}

.tile-content p {
  font-size: 0.82rem;
  color: #64748B;
  line-height: 1.4;
}

/* Right Parul University Showcase Card */
.vani-img-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.vani-portrait-frame {
  background: linear-gradient(135deg, #F1F5F9, #E2E8F0);
  border: 2px solid #E2E8F0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
  position: relative;
  height: 100%;
  width: 100%;
}

.vani-portrait-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  z-index: 2;
}

.badge-top-right {
  top: -12px;
  right: -12px;
  background: #D20005;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(74, 222, 128, 0.4);
}

.badge-bottom-left {
  bottom: 20px;
  left: -20px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
}

.badge-icon-gold {
  font-size: 1.5rem;
}

.badge-text-group strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 900;
  color: #0F172A;
}

.badge-text-group span {
  display: block;
  font-size: 0.72rem;
  color: #64748B;
}

@media (max-width: 992px) {
  .vani-card-wrapper {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .badge-bottom-left {
    left: 10px;
    bottom: 10px;
  }

  .badge-top-right {
    right: 10px;
    top: 10px;
  }
}

/* Unmatched Experience Section */
.unmatched-section {
  padding: 60px 0;
  background: #08090C;
  text-align: center;
}

.unmatched-header h2.display-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--yellow-gold);
  text-transform: uppercase;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.category-card-img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--bg-card-border);
  transition: var(--transition);
}

.category-card-img:hover {
  transform: scale(1.02);
  box-shadow: var(--gold-glow);
}

/* Placements Section */
.placements-section {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(10, 2, 3, 0.8) 0%, rgba(10, 2, 3, 0.9) 100%), url('images/parul-university-banner.webp') center/cover no-repeat;
  border-top: 1px solid var(--bg-card-border);
  border-bottom: 1px solid var(--bg-card-border);
}

.placement-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 45px;
}

/* Base Card Eyebrow */
.card-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--yellow-gold);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Card 1: Placement Stat Box */
.placement-stat-box {
  background: rgba(17, 19, 25, 0.88);
  backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 204, 41, 0.3);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.placement-stat-box:hover {
  border-color: var(--yellow-gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), var(--gold-glow);
}

.stat-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  margin-bottom: 10px;
  transition: all 0.25s ease;
}

.stat-tile:last-child {
  margin-bottom: 0;
}

.stat-tile:hover {
  background: rgba(255, 204, 41, 0.08);
  border-color: rgba(255, 204, 41, 0.3);
}

.stat-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, rgba(208, 27, 36, 0.25), rgba(255, 204, 41, 0.15));
  border: 1px solid var(--yellow-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-gold);
  flex-shrink: 0;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-info .stat-val {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--yellow-gold);
  line-height: 1.1;
}

.stat-info .stat-label {
  font-size: 0.8rem;
  color: var(--text-light-gray);
  margin-top: 2px;
}

/* Card 2: ASSOCHAM Award Box */
.assocham-box {
  background: linear-gradient(145deg, rgba(175, 14, 22, 0.95) 0%, rgba(20, 10, 12, 0.98) 100%);
  border: 2px solid var(--yellow-gold);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 15px 40px rgba(208, 27, 36, 0.35), var(--gold-glow);
  transition: all 0.3s ease;
}

.assocham-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(208, 27, 36, 0.55), var(--gold-glow);
}

.trophy-badge {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #FFCC29 0%, #D49B00 100%);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 8px 24px rgba(255, 204, 41, 0.4);
  border: 2px solid #FFF;
}

.award-eyebrow {
  color: var(--yellow-gold);
  margin-bottom: 10px;
}

.assocham-box h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.35;
  margin-bottom: 16px;
}

.assocham-box h3 strong {
  color: var(--yellow-gold);
}

.assocham-seal {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 204, 41, 0.5);
  border-radius: 30px;
  padding: 5px 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.seal-by {
  font-size: 0.68rem;
  color: var(--text-gray);
  font-weight: 700;
}

.seal-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--yellow-gold);
  letter-spacing: 1px;
}

.award-footer-text {
  font-size: 0.74rem;
  color: var(--text-gray);
  line-height: 1.3;
}

/* Card 3: How We Help Box */
.how-we-help-list {
  background: rgba(17, 19, 25, 0.88);
  backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 204, 41, 0.3);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.how-we-help-list:hover {
  border-color: var(--yellow-gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), var(--gold-glow);
}

.help-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.help-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 10px;
  transition: all 0.25s ease;
}

.help-feature-card:last-child {
  margin-bottom: 0;
}

.help-feature-card:hover {
  background: rgba(255, 204, 41, 0.08);
  border-color: rgba(255, 204, 41, 0.3);
  transform: translateX(4px);
}

.feature-icon-box {
  width: 36px;
  height: 36px;
  background: rgba(208, 27, 36, 0.2);
  border: 1px solid var(--primary-red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-gold);
  flex-shrink: 0;
}

.feature-text h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.feature-text p {
  font-size: 0.76rem;
  color: var(--text-gray);
  line-height: 1.35;
  margin: 0;
}

.marquee-container {
  overflow: hidden;
  margin: 45px 0;
  background: rgba(0, 0, 0, 0.65);
  padding: 22px 0;
  border-radius: 16px;
  border: 1.5px solid rgba(255, 204, 41, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 30px;
  animation: marqueeScroll 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-item {
  background: rgba(255, 255, 255, 0.96);
  padding: 10px 22px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.marquee-item img {
  height: 52px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}

.alumni-placed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.placed-card img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--bg-card-border);
  transition: var(--transition);
}

.placed-card img:hover {
  transform: translateY(-5px);
  box-shadow: var(--gold-glow);
}

/* NAAC Section - LIGHT THEME ONLY */
.naac-section {
  padding: 80px 0;
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  color: #0F172A;
}

.naac-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.naac-left-rankings h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 30px;
  color: #0F172A;
}

.rank-item p.rank-lbl {
  font-size: 0.82rem;
  font-weight: 800;
  color: #D97706;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.rank-item h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.35;
}

.rank-item h3 span.yellow-c {
  color: #D97706;
}

.rank-item p.rank-desc {
  font-size: 0.85rem;
  color: #64748B;
  margin-top: 4px;
}

hr.rank-divider {
  border: none;
  border-top: 1px solid #E2E8F0;
  margin: 18px 0;
}

.naac-right-features {
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-left: 5px solid #D20005;
  border-radius: 20px;
  padding: 38px;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
}

.naac-right-features h2 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 900;
  color: #0F172A;
  margin-bottom: 12px;
  line-height: 1.25;
}

.naac-right-features p.naac-feature-intro {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 24px;
  line-height: 1.5;
}

.naac-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.naac-icon-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.naac-icon-item img {
  width: 44px;
  height: 44px;
  background: rgba(208, 27, 36, 0.06);
  padding: 8px;
  border-radius: 10px;
}

.naac-icon-item p {
  font-size: 0.88rem;
  font-weight: 600;
  color: #1E293B;
  line-height: 1.4;
}

/* 3-TAB 200+ INDUSTRY CENTRED PROGRAMS SECTION */
.programs-section {
  padding: 80px 0;
  background: #F8FAFC;
  color: #0F172A;
}

.programs-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 20px;
  flex-wrap: wrap;
}

.programs-title-box h2 {
  font-family: var(--font-body);
  font-size: 2.3rem;
  font-weight: 300;
  color: #0F172A;
  line-height: 1.2;
}

.programs-title-box h2 strong {
  font-family: var(--font-heading);
  font-weight: 900;
  color: #0F172A;
}

/* 3-Tab Switcher Box */
.prog-tabs-container {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  gap: 4px;
}

.prog-tab-btn {
  background: transparent;
  border: none;
  padding: 10px 22px;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: #334155;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.prog-tab-btn:hover {
  color: var(--primary-red);
}

.prog-tab-btn.active {
  background: var(--primary-red);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(208, 27, 36, 0.35);
}

.prog-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: var(--primary-red) transparent transparent transparent;
}

.prog-tab-panel {
  display: none;
}

.prog-tab-panel.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.prog-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  cursor: pointer;
}

.prog-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-red);
  box-shadow: 0 10px 25px rgba(208, 27, 36, 0.12);
}

.prog-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0F172A;
  flex-shrink: 0;
  transition: var(--transition);
}

.prog-card:hover .prog-card-icon {
  color: var(--primary-red);
}

.prog-card-icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.5px;
  fill: none;
  stroke: currentColor;
}

.prog-card-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.35;
}

/* Approval Cards Grid (paruluniversity.online accreditation showcase - LIGHT THEME) */
.approval-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 35px;
  background: #FFFFFF;
  padding: 28px;
  border-radius: 20px;
  border: 1.5px solid #E2E8F0;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
}

.approval-card {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}

.approval-card:hover {
  background: #FFFFFF;
  border-color: #D20005;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(210, 0, 5, 0.12);
}

.approval-card img {
  height: 60px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
}

.approval-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 8px;
}

.approval-card p {
  font-size: 0.82rem;
  color: #475569;
  line-height: 1.45;
}

/* Header Badge & Hero Highlights Strip */
.header-approval-badge {
  background: rgba(255, 204, 41, 0.15);
  border: 1px solid var(--yellow-gold);
  color: var(--yellow-gold);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-highlights-strip {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  justify-content: space-between;
}

.strip-item {
  background: rgba(17, 19, 25, 0.85);
  border: 1px solid rgba(255, 204, 41, 0.3);
  padding: 10px 16px;
  border-radius: 10px;
  flex: 1;
  text-align: center;
}

.strip-item strong {
  display: block;
  color: var(--yellow-gold);
  font-size: 0.95rem;
  font-weight: 900;
}

.strip-item span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-gray);
  text-transform: uppercase;
}

/* LMS 4-Quadrant Flexible Learning Section (LIGHT THEME ONLY) */
.lms-section {
  padding: 80px 0;
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.lms-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.lms-tag {
  color: #D97706;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lms-header h2 {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: #0F172A;
}

.lms-header h2 strong {
  color: var(--primary-red);
}

.lms-sub {
  color: #475569;
  font-size: 0.95rem;
  margin-top: 10px;
}

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

.quadrant-card {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  padding: 30px 24px;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

.quadrant-card:hover {
  background: #FFFFFF;
  border-color: var(--primary-red);
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(208, 27, 36, 0.12);
}

.quad-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.12);
}

.quad-icon {
  width: 48px;
  height: 48px;
  background: rgba(208, 27, 36, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary-red);
}

.quad-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.quadrant-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 10px;
}

.quadrant-card p {
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.5;
}

/* Online Program Cards in Directory */
.tab-online-highlight {
  background: linear-gradient(135deg, #D01B24, #9E0000) !important;
  color: #FFF !important;
  box-shadow: 0 4px 12px rgba(208, 27, 36, 0.4);
}

.online-detail-card {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-top: 4px solid #D20005;
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: space-between;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  min-height: 250px;
}

.online-detail-card:hover {
  transform: translateY(-6px);
  border-color: #D20005;
  box-shadow: 0 16px 35px rgba(210, 0, 5, 0.12);
}

.online-tag {
  background: rgba(210, 0, 5, 0.08);
  color: #D20005;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.online-detail-card .prog-card-icon {
  width: 46px;
  height: 46px;
  background: rgba(210, 0, 5, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D20005;
  margin-bottom: 14px;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.online-detail-card:hover .prog-card-icon {
  background: #D20005;
  color: #FFFFFF;
  transform: scale(1.08);
}

.online-detail-card .prog-card-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8px;
  fill: none;
  stroke: currentColor;
}

.online-detail-card .prog-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: #0F172A;
  margin-bottom: 6px;
  line-height: 1.25;
}

.online-fee {
  font-size: 0.84rem;
  color: #64748B;
  line-height: 1.45;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Enquire Now CTA Button inside Cards */
.btn-card-enquire {
  width: 100%;
  background: linear-gradient(135deg, #D20005, #B00004);
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(210, 0, 5, 0.22);
  transition: all 0.25s ease;
  margin-top: auto;
}

.btn-card-enquire span {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.btn-card-enquire:hover {
  background: linear-gradient(135deg, #B00004, #900003);
  box-shadow: 0 6px 18px rgba(210, 0, 5, 0.35);
  color: #FFFFFF;
}

/* ==========================================================================
   Section 5: Placements & Corporate Recruiters
   ========================================================================== */
.placements-section {
  padding: 70px 0;
  background: #0A0203 url('images/section-bg.webp') center/cover no-repeat;
  border-top: 2px solid var(--primary-red);
  border-bottom: 2px solid var(--primary-red);
  position: relative;
  overflow: hidden;
}

.placements-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 15px;
}

.placements-eyebrow {
  color: var(--yellow-gold);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.placements-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.25;
  margin: 0;
}

.placement-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 40px;
}

.placement-stat-box {
  background: rgba(17, 19, 25, 0.92);
  border: 1.5px solid rgba(255, 204, 41, 0.35);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  backdrop-filter: blur(10px);
  box-shadow: var(--gold-glow);
}

.stat-unit {
  text-align: left;
}

.stat-unit h4 {
  font-size: 0.72rem;
  color: var(--text-gray);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.stat-unit .stat-val {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 900;
  color: var(--yellow-gold);
  line-height: 1.15;
}

.stat-unit p {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--text-white);
  text-transform: uppercase;
  margin-top: 2px;
}

.assocham-box {
  background: linear-gradient(135deg, var(--dark-red) 0%, var(--primary-red) 100%);
  border: 2px solid var(--yellow-gold);
  border-radius: 16px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(208, 27, 36, 0.5), var(--gold-glow);
  position: relative;
}

.assocham-badge-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 204, 41, 0.15);
  border: 1.5px solid var(--yellow-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow-gold);
  margin-bottom: 14px;
  flex-shrink: 0;
}

.assocham-box h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.35;
  margin: 0;
}

.how-we-help-list {
  background: rgba(17, 19, 25, 0.92);
  border: 1.5px solid rgba(255, 204, 41, 0.35);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  backdrop-filter: blur(10px);
}

.help-list-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--yellow-gold);
  margin-bottom: 4px;
}

.help-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light-gray);
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.help-item svg {
  flex-shrink: 0;
}



@media (max-width: 992px) {
  .placement-stats-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .placements-section {
    padding: 45px 0;
  }

  .placements-header {
    margin-bottom: 25px;
  }

  .placement-stat-box,
  .assocham-box,
  .how-we-help-list {
    padding: 18px 16px;
  }

  .marquee-container {
    padding: 18px 0;
  }

  .marquee-track {
    gap: 18px;
  }

  .marquee-item {
    padding: 8px 16px;
    border-radius: 10px;
  }

  .marquee-item img {
    height: 38px;
  }
}

/* ==========================================================================
   Dedicated Parul University FAQ Accordion System
   ========================================================================== */
.pu-faq-section {
  padding: 85px 0;
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  color: #0F172A;
}

.pu-faq-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 50px;
}

.pu-faq-eyebrow {
  display: inline-block;
  background: rgba(210, 0, 5, 0.08);
  color: #D20005;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 6px 18px;
  border-radius: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.pu-faq-header h2 {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 900;
  color: #0F172A;
  line-height: 1.25;
}

.pu-faq-header h2 strong {
  color: #D20005;
}

.pu-faq-sub {
  color: #64748B;
  font-size: 0.95rem;
  margin-top: 12px;
  line-height: 1.55;
}

.pu-faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pu-faq-item {
  background: #FFFFFF;
  border: 1.5px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.pu-faq-item.pu-active {
  border-color: #D20005;
  box-shadow: 0 10px 30px rgba(210, 0, 5, 0.1);
}

.pu-faq-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  cursor: pointer;
  user-select: none;
  gap: 20px;
  background: transparent;
}

.pu-faq-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.35;
  transition: color 0.25s ease;
}

.pu-faq-item:hover .pu-faq-title,
.pu-faq-item.pu-active .pu-faq-title {
  color: #D20005;
}

.pu-faq-icon {
  width: 36px;
  height: 36px;
  background: #F1F5F9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0F172A;
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.pu-faq-item.pu-active .pu-faq-icon {
  background: #D20005;
  color: #FFFFFF;
  transform: rotate(180deg);
}

.pu-faq-body {
  display: none;
  padding: 0 26px 24px 26px;
}

.pu-faq-item.pu-active .pu-faq-body {
  display: block;
  animation: puFaqSlide 0.25s ease-out;
}

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

.pu-faq-text {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.65;
  border-top: 1px solid #F1F5F9;
  padding-top: 16px;
  margin: 0;
}

/* Footer */
.footer {
  background: #040507;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0;
  text-align: center;
  color: var(--text-gray);
  font-size: 0.85rem;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .header-container {
    position: relative;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .header-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: 100%;
    background: #ffeeee;
    border: 2px solid #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px;
    gap: 8px;
    display: none;
    z-index: 1000;
  }

  .header-nav.active {
    display: flex;
    animation: headerNavSlideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes headerNavSlideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .header-nav-link {
    font-size: 1rem;
    padding: 12px 18px;
    border-radius: 8px;
    color: #092139;
    font-weight: 800;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .header-nav-link:last-child {
    border-bottom: none;
  }

  .header-nav-link::after {
    display: none;
  }

  .header-nav-link:hover {
    background: #D20005;
    color: #FFFFFF;
  }
}

@media (max-width: 1100px) {

  .prog-tab-panel.active,
  .approval-cards-grid,
  .quadrant-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .hero-grid,
  .vani-grid,
  .naac-grid,
  .approval-cards-grid,
  .quadrant-grid,
  .placement-stats-row {
    grid-template-columns: 1fr;
  }

  .header-approval-badge {
    display: none;
  }

  .programs-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .prog-tabs-container {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
  }

  .prog-tab-btn {
    padding: 8px 12px;
    font-size: 0.8rem;
    flex: 1 1 45%;
    text-align: center;
  }

  .prog-tab-panel.active {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .online-detail-card {
    min-height: auto;
    padding: 20px 16px;
  }

  .prog-card {
    padding: 16px;
    gap: 12px;
  }

  .prog-card-title {
    font-size: 0.85rem;
  }

  .category-grid,
  .alumni-placed-grid {
    grid-template-columns: 1fr;
  }

  .hero-highlights-strip {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 550px) {
  .header-container {
    padding: 0 10px;
  }

  .logo-brand img {
    height: 40px;
    max-width: 170px;
    width: auto;
    object-fit: contain;
  }

  .btn-header-tollfree {
    padding: 6px 10px;
    font-size: 0.78rem;
    gap: 4px;
  }

  .btn-header-tollfree svg {
    width: 14px;
    height: 14px;
  }

  .mobile-nav-toggle {
    padding: 4px;
  }

  .hamburger-bar {
    width: 20px;
    height: 2px;
  }
}

@media (max-width: 360px) {
  .header-container {
    padding: 0 6px;
    gap: 4px;
  }

  .logo-brand img {
    height: 34px;
    max-width: 140px;
    width: auto;
  }

  .btn-header-tollfree {
    padding: 5px 8px;
    font-size: 0.72rem;
    gap: 3px;
    border-radius: 6px;
  }

  .btn-header-tollfree svg {
    width: 13px;
    height: 13px;
  }

  .mobile-nav-toggle {
    padding: 3px;
  }

  .hamburger-bar {
    width: 18px;
  }
}

@media (max-width: 280px) {
  .header-container {
    padding: 0 4px;
    gap: 2px;
  }

  .logo-brand img {
    height: 28px;
    max-width: 110px;
    width: auto;
  }

  .btn-header-tollfree {
    padding: 4px 6px;
    font-size: 0.65rem;
    gap: 2px;
    border-radius: 4px;
  }

  .btn-header-tollfree svg {
    width: 11px;
    height: 11px;
  }

  .mobile-nav-toggle {
    padding: 2px;
  }

  .hamburger-bar {
    width: 16px;
    height: 2px;
  }

  .prog-tab-panel.active {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Form & Modal System (Parul University Theme)
   ========================================================================== */

.field-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.textinput,
.selectinput,
.form-control {
  width: 100%;
  height: 44px;
  padding: 0 0.9rem;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-white);
  outline: none;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.textinput::placeholder,
.form-control::placeholder {
  color: #94A3B8;
}

.textinput:hover,
.selectinput:hover,
.form-control:hover {
  border-color: var(--yellow-gold);
  background-color: rgba(255, 255, 255, 0.12);
}

.textinput:focus,
.selectinput:focus,
.form-control:focus {
  border-color: var(--yellow-gold);
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 204, 41, 0.25);
}

.selectinput,
select.form-control {
  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='%3CFFCC29' 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 0.85rem center;
  background-size: 14px;
  padding-right: 2.3rem;
  cursor: pointer;
}

.selectinput option,
select.form-control option {
  background-color: #111319;
  color: #FFFFFF;
}

.form-group1 {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 12px;
}

.security-notice {
  background: rgba(255, 204, 41, 0.08);
  border: 1px solid rgba(255, 204, 41, 0.25);
  color: var(--yellow-gold);
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0 0.8rem;
  height: 42px;
  border-radius: 8px;
  margin-top: 4px;
  margin-bottom: 14px;
  box-sizing: border-box;
}

.security-notice svg {
  flex-shrink: 0;
  color: var(--yellow-gold);
}

.btn-red-submit,
.btn-submit-lead {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 204, 41, 0.4);
  border-radius: 8px;
  height: 46px;
  padding: 0 1.4rem;
  width: 100%;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(208, 27, 36, 0.4);
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.btn-red-submit:hover,
.btn-submit-lead:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(208, 27, 36, 0.6), var(--gold-glow);
  background: linear-gradient(135deg, #E61E27 0%, #B30000 100%);
}

.btn-red-submit:disabled,
.btn-submit-lead:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* --- Floating Download Brochure Button --- */
.floating-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 998;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
  color: #FFFFFF;
  padding: 0.85rem 1.4rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  border: 1px solid rgba(255, 204, 41, 0.5);
  box-shadow: 0 8px 24px rgba(208, 27, 36, 0.5), var(--gold-glow);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.floating-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(208, 27, 36, 0.7), var(--gold-glow);
  color: var(--yellow-gold);
}

.floating-btn svg {
  width: 18px;
  height: 18px;
}

/* --- Modal Overlay & Dialog System --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #111319;
  border: 1.5px solid rgba(255, 204, 41, 0.4);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9), var(--gold-glow);
  position: relative;
  padding: 1.5rem 1.8rem;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-red), var(--yellow-gold));
  border-radius: 16px 16px 0 0;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--yellow-gold);
  text-transform: uppercase;
  letter-spacing: -0.3px;
  margin: 0;
}

.modal-close {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1.5rem;
  line-height: 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: var(--primary-red);
  color: #FFFFFF;
  border-color: var(--primary-red);
}

.form-grid-modal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem 1rem;
}

.grid-span-2 {
  grid-column: span 2;
}

@media (max-width: 640px) {
  .form-grid-modal {
    grid-template-columns: 1fr;
  }

  .grid-span-2 {
    grid-column: span 1;
  }

  .modal-container {
    padding: 1.2rem;
    max-width: 95%;
  }

  .floating-btn {
    bottom: 1.2rem;
    right: 1.2rem;
    padding: 0.75rem 1.1rem;
    font-size: 0.8rem;
  }
}