/* ============================================================
   HOME PAGE — SVG MOTION ANIMATIONS
   ============================================================ */

.hero-svg-motion {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-svg-scene {
  width: 100%;
  height: 100%;
  display: block;
}

/* Ambient orbs */
.svg-orb {
  animation: svgOrbPulse 6s ease-in-out infinite;
}

.svg-orb-2 {
  animation-delay: -3s;
}

@keyframes svgOrbPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.15); }
}

/* Morphing blob */
.svg-morph-blob-wrap {
  animation: svgMorphBlob 12s ease-in-out infinite;
  transform-origin: center;
}

@keyframes svgMorphBlob {
  0%, 100% { transform: translate(1120px, 520px) scale(1) rotate(0deg); }
  33% { transform: translate(1120px, 520px) scale(1.08) rotate(8deg); }
  66% { transform: translate(1120px, 520px) scale(0.95) rotate(-6deg); }
}

/* Constellation */
.svg-const-line {
  stroke: rgba(147, 197, 253, 0.35);
  stroke-width: 1.5;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: svgDrawLine 4s ease forwards;
}

.svg-const-line-1 { animation-delay: 0.2s; }
.svg-const-line-2 { animation-delay: 0.5s; }
.svg-const-line-3 { animation-delay: 0.8s; }
.svg-const-line-4 { animation-delay: 1.1s; }
.svg-const-line-5 { animation-delay: 1.4s; }

@keyframes svgDrawLine {
  to { stroke-dashoffset: 0; }
}

.svg-const-node {
  fill: #93c5fd;
  animation: svgNodePulse 2.5s ease-in-out infinite;
}

.svg-const-node-1 { animation-delay: 0s; }
.svg-const-node-2 { animation-delay: 0.4s; }
.svg-const-node-3 { animation-delay: 0.8s; }
.svg-const-node-4 { animation-delay: 1.2s; }
.svg-const-node-5 { animation-delay: 1.6s; }

@keyframes svgNodePulse {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.4); }
}

.svg-const-node {
  transform-box: fill-box;
  transform-origin: center;
}

/* Orbiting ring */
.svg-orbit-path {
  animation: svgOrbitDash 20s linear infinite;
}

@keyframes svgOrbitDash {
  to { stroke-dashoffset: -200; }
}

/* Floating book */
.svg-float-book {
  animation: svgFloatBook 5s ease-in-out infinite;
  transform-origin: 135px 35px;
}

@keyframes svgFloatBook {
  0%, 100% { transform: translate(90px, 480px) rotate(-3deg); }
  50% { transform: translate(90px, 462px) rotate(3deg); }
}

.svg-book-page-left {
  animation: svgBookFlipLeft 4s ease-in-out infinite;
  transform-origin: 90px 35px;
}

.svg-book-page-right {
  animation: svgBookFlipRight 4s ease-in-out infinite;
  transform-origin: 90px 35px;
}

@keyframes svgBookFlipLeft {
  0%, 100% { transform: skewY(0deg); }
  50% { transform: skewY(-4deg); }
}

@keyframes svgBookFlipRight {
  0%, 100% { transform: skewY(0deg); }
  50% { transform: skewY(4deg); }
}

.svg-book-line {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: svgBookWrite 3s ease-in-out infinite;
}

.svg-book-line-2 { animation-delay: 0.5s; }
.svg-book-line-3 { animation-delay: 1s; }

@keyframes svgBookWrite {
  0%, 100% { stroke-dashoffset: 60; opacity: 0.3; }
  50% { stroke-dashoffset: 0; opacity: 1; }
}

/* DNA helix */
.svg-dna {
  animation: svgDnaFloat 6s ease-in-out infinite;
}

@keyframes svgDnaFloat {
  0%, 100% { transform: translate(1280px, 280px); }
  50% { transform: translate(1280px, 265px); }
}

.svg-dna-strand-1 {
  stroke-dasharray: 300;
  animation: svgDnaFlow 4s linear infinite;
}

.svg-dna-strand-2 {
  stroke-dasharray: 300;
  animation: svgDnaFlow 4s linear infinite reverse;
}

@keyframes svgDnaFlow {
  to { stroke-dashoffset: -300; }
}

.svg-dna-rung {
  stroke: rgba(147, 197, 253, 0.5);
  stroke-width: 1.5;
  animation: svgDnaRungPulse 2s ease-in-out infinite;
}

.svg-dna-rung-2 { animation-delay: 0.3s; }
.svg-dna-rung-3 { animation-delay: 0.6s; }
.svg-dna-rung-4 { animation-delay: 0.9s; }
.svg-dna-rung-5 { animation-delay: 1.2s; }
.svg-dna-rung-6 { animation-delay: 1.5s; }

@keyframes svgDnaRungPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Sparkles */
.svg-sparkle {
  transform-origin: center;
  animation: svgSparkle 3s ease-in-out infinite;
}

.svg-sparkle-1 { animation-delay: 0s; }
.svg-sparkle-2 { animation-delay: 0.7s; }
.svg-sparkle-3 { animation-delay: 1.4s; }
.svg-sparkle-4 { animation-delay: 2.1s; }

@keyframes svgSparkle {
  0%, 100% { opacity: 0.2; transform: scale(0.6) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(45deg); }
}

/* Wave path */
.svg-wave-path {
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
  animation: svgWaveDraw 8s ease-in-out infinite;
  opacity: 0.4;
}

@keyframes svgWaveDraw {
  0% { stroke-dashoffset: 1600; opacity: 0.2; }
  40% { stroke-dashoffset: 0; opacity: 0.5; }
  100% { stroke-dashoffset: -1600; opacity: 0.2; }
}

/* Section decorative SVGs */
.section-svg-accent {
  position: absolute;
  pointer-events: none;
  overflow: visible;
}

.faculties-section {
  position: relative;
  overflow: hidden;
}

.faculties-svg-accent {
  top: 40px;
  left: -60px;
  width: 280px;
  height: 280px;
  opacity: 0.6;
}

.faculties-svg-accent .svg-accent-orbit {
  animation: svgAccentOrbit 18s linear infinite;
  transform-origin: 140px 140px;
}

@keyframes svgAccentOrbit {
  to { transform: rotate(360deg); }
}

.faculties-svg-accent .svg-accent-icon {
  animation: svgAccentBob 4s ease-in-out infinite;
}

.faculties-svg-accent .svg-accent-icon-2 { animation-delay: 1.3s; }
.faculties-svg-accent .svg-accent-icon-3 { animation-delay: 2.6s; }

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

.why-section {
  position: relative;
}

.why-section .section-svg-accent {
  top: 10%;
  right: 5%;
  width: 200px;
  height: 200px;
}

.why-svg-lightbulb .svg-bulb-glow {
  animation: svgBulbGlow 2.5s ease-in-out infinite;
}

@keyframes svgBulbGlow {
  0%, 100% { opacity: 0.3; transform: scale(0.85); }
  50% { opacity: 0.7; transform: scale(1.15); }
}

.why-svg-lightbulb .svg-bulb-glow {
  transform-origin: center;
  transform-box: fill-box;
}

.why-svg-lightbulb .svg-bulb-rays {
  animation: svgBulbRays 4s ease-in-out infinite;
  transform-origin: 100px 80px;
}

@keyframes svgBulbRays {
  0%, 100% { opacity: 0.4; transform: rotate(0deg); }
  50% { opacity: 0.9; transform: rotate(15deg); }
}

.admissions-cta {
  position: relative;
  overflow: hidden;
}

.admissions-svg-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.35;
}

.admissions-svg-bg .svg-rocket-trail {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: svgRocketTrail 6s ease-in-out infinite;
}

@keyframes svgRocketTrail {
  0% { stroke-dashoffset: 400; opacity: 0; }
  30% { stroke-dashoffset: 0; opacity: 0.8; }
  100% { stroke-dashoffset: -400; opacity: 0; }
}

.admissions-svg-bg .svg-rocket-body {
  animation: svgRocketFloat 5s ease-in-out infinite;
}

@keyframes svgRocketFloat {
  0%, 100% { transform: translate(0, 0) rotate(-12deg); }
  50% { transform: translate(12px, -18px) rotate(-8deg); }
}

.acta-visual .acta-svg-rings {
  position: absolute;
  inset: -30px;
  width: calc(100% + 60px);
  height: calc(100% + 60px);
}

.acta-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acta-svg-rings .svg-ring-outer {
  fill: none;
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 1.5;
  stroke-dasharray: 12 8;
  animation: svgRingSpin 25s linear infinite;
  transform-origin: center;
}

.acta-svg-rings .svg-ring-inner {
  fill: none;
  stroke: rgba(251, 191, 36, 0.35);
  stroke-width: 1;
  stroke-dasharray: 6 10;
  animation: svgRingSpinReverse 18s linear infinite;
  transform-origin: center;
}

@keyframes svgRingSpin {
  to { transform: rotate(360deg); }
}

@keyframes svgRingSpinReverse {
  to { transform: rotate(-360deg); }
}

/* Scroll-reveal for section SVGs */
.section-svg-accent {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-svg-accent.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── Section positioning ── */
.quick-links-bar,
.news-ticker,
.news-section,
.calendar-section,
.research-section,
.student-life-section,
.gallery-section,
.testimonials-section,
.partners-section,
.contact-quick,
.newsletter-section {
  position: relative;
  overflow: hidden;
}

.quick-links-bar .container,
.news-ticker .container,
.section .container {
  position: relative;
  z-index: 1;
}

/* Quick Links */
.quick-links-svg-accent {
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
  opacity: 0.7;
}

.quick-links-svg-accent:not(.in-view) {
  transform: translateY(calc(-50% + 20px));
}

.quick-links-svg-accent.in-view {
  transform: translateY(-50%);
}

.svg-ql-path {
  stroke-dasharray: 400;
  animation: svgQlPathDraw 6s ease-in-out infinite;
}

@keyframes svgQlPathDraw {
  0%, 100% { stroke-dashoffset: 400; opacity: 0.3; }
  50% { stroke-dashoffset: 0; opacity: 0.8; }
}

.svg-ql-dot { animation: svgQlDotPulse 2s ease-in-out infinite; }
.svg-ql-dot-2 { animation-delay: 0.6s; }
.svg-ql-dot-3 { animation-delay: 1.2s; }

@keyframes svgQlDotPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 0.8; transform: scale(1.3); }
}

.svg-ql-dot, .svg-ql-icon { transform-box: fill-box; transform-origin: center; }
.svg-ql-icon { animation: svgAccentBob 3.5s ease-in-out infinite; }
.svg-ql-icon-2 { animation-delay: 1.5s; }

/* News Ticker */
.ticker-svg-accent {
  top: 50%;
  right: 2%;
  width: 200px;
  height: 60px;
  transform: translateY(-50%);
  opacity: 0.5;
}

.svg-ticker-bolt { animation: svgTickerBolt 2s ease-in-out infinite; transform-origin: center; }

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

.svg-ticker-wave { animation: svgTickerWave 3s ease-in-out infinite; }
.svg-ticker-wave-2 { animation-delay: 0.8s; }

@keyframes svgTickerWave {
  0%, 100% { opacity: 0.3; stroke-dashoffset: 20; }
  50% { opacity: 0.8; stroke-dashoffset: 0; }
}

.svg-ticker-pulse { animation: svgNodePulse 2s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }

/* News Section */
.news-svg-accent {
  top: 60px;
  left: -40px;
  width: 240px;
  height: 240px;
  opacity: 0.55;
}

.svg-news-paper { animation: svgNewsPaperFloat 5s ease-in-out infinite; transform-origin: center; }

@keyframes svgNewsPaperFloat {
  0%, 100% { transform: translate(120px, 100px) rotate(-8deg); }
  50% { transform: translate(120px, 88px) rotate(-4deg); }
}

.svg-news-line {
  stroke-dasharray: 50;
  animation: svgBookWrite 4s ease-in-out infinite;
}
.svg-news-line-2 { animation-delay: 0.4s; }
.svg-news-line-3 { animation-delay: 0.8s; }
.svg-news-line-4 { animation-delay: 1.2s; }

.svg-news-megaphone { animation: svgAccentBob 4s ease-in-out infinite; }
.svg-news-sound { animation: svgNewsSound 2s ease-in-out infinite; }
.svg-news-sound-2 { animation-delay: 0.5s; }

@keyframes svgNewsSound {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

/* Calendar Section */
.calendar-svg-accent {
  bottom: 40px;
  left: -30px;
  width: 220px;
  height: 220px;
  opacity: 0.55;
}

.svg-cal-float { animation: svgCalFloat 5s ease-in-out infinite; transform-origin: center; }

@keyframes svgCalFloat {
  0%, 100% { transform: translate(110px, 110px) rotate(0deg); }
  50% { transform: translate(110px, 100px) rotate(2deg); }
}

.svg-cal-highlight { animation: svgNodePulse 2.5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.svg-cal-event-dot { animation: svgCalDotBlink 3s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.svg-cal-event-dot-2 { animation-delay: 1.5s; }

@keyframes svgCalDotBlink {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.svg-cal-hand-hour { animation: svgCalHourHand 12s linear infinite; transform-origin: 0 0; }
.svg-cal-hand-min { animation: svgCalMinHand 4s linear infinite; transform-origin: 0 0; }

@keyframes svgCalHourHand {
  to { transform: rotate(360deg); }
}

@keyframes svgCalMinHand {
  to { transform: rotate(360deg); }
}

/* Research Section */
.research-svg-accent {
  top: 50px;
  right: -50px;
  width: 260px;
  height: 260px;
  opacity: 0.5;
}

.svg-atom-orbit-1 { animation: svgAtomOrbit1 8s linear infinite; transform-origin: center; }
.svg-atom-orbit-2 { animation: svgAtomOrbit2 8s linear infinite; transform-origin: center; }
.svg-atom-orbit-3 { animation: svgAtomOrbit3 8s linear infinite; transform-origin: center; }

@keyframes svgAtomOrbit1 { to { transform: rotate(360deg); } }
@keyframes svgAtomOrbit2 { to { transform: rotate(420deg); } }
@keyframes svgAtomOrbit3 { to { transform: rotate(480deg); } }

.svg-atom-electron { animation: svgAtomElectron 8s linear infinite; transform-box: fill-box; transform-origin: center; }
.svg-atom-electron-2 { animation-delay: -2.6s; }
.svg-atom-electron-3 { animation-delay: -5.3s; }

@keyframes svgAtomElectron {
  0%, 100% { opacity: 0.5; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.3); }
}

.svg-research-flask { animation: svgAccentBob 4s ease-in-out infinite; }
.svg-flask-bubble { animation: svgFlaskBubble 3s ease-in-out infinite; }
.svg-flask-bubble-2 { animation-delay: 0.8s; }
.svg-flask-bubble-3 { animation-delay: 1.6s; }

@keyframes svgFlaskBubble {
  0% { opacity: 0; transform: translateY(6px); }
  50% { opacity: 0.8; transform: translateY(-4px); }
  100% { opacity: 0; transform: translateY(-12px); }
}

.svg-research-microscope { animation: svgMicroscopeSway 5s ease-in-out infinite; transform-origin: center; }

@keyframes svgMicroscopeSway {
  0%, 100% { transform: translate(210px, 50px) rotate(0deg); }
  50% { transform: translate(210px, 46px) rotate(3deg); }
}

/* Student Life Section */
.student-life-svg-accent {
  top: 30px;
  left: -40px;
  width: 240px;
  height: 240px;
  opacity: 0.55;
}

.svg-sl-ball { animation: svgSlBallBounce 3s ease-in-out infinite; transform-origin: center; }

@keyframes svgSlBallBounce {
  0%, 100% { transform: translate(60px, 60px) translateY(0); }
  50% { transform: translate(60px, 60px) translateY(-14px); }
}

.svg-sl-note-1, .svg-sl-note-2 { animation: svgSlNoteFloat 4s ease-in-out infinite; }
.svg-sl-note-2 { animation-delay: 1.2s; }

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

.svg-sl-heart { animation: svgSlHeartBeat 2s ease-in-out infinite; transform-origin: center; }

@keyframes svgSlHeartBeat {
  0%, 100% { transform: translate(120px, 180px) scale(1); }
  50% { transform: translate(120px, 180px) scale(1.12); }
}

.svg-sl-people { animation: svgAccentBob 5s ease-in-out infinite; }

/* Gallery Section */
.gallery-svg-accent {
  top: 40px;
  right: -30px;
  width: 260px;
  height: 260px;
  opacity: 0.5;
}

.svg-camera-lens { animation: svgCameraFocus 4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }

@keyframes svgCameraFocus {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.svg-camera-lens-inner { animation: svgCameraFocus 4s ease-in-out infinite reverse; transform-origin: center; transform-box: fill-box; }
.svg-camera-flash { animation: svgCameraFlash 5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }

@keyframes svgCameraFlash {
  0%, 85%, 100% { opacity: 0.2; }
  90% { opacity: 1; }
}

.svg-gallery-frame { animation: svgGalleryFrameFloat 6s ease-in-out infinite; }
.svg-gallery-frame-2 { animation-delay: 2s; }

@keyframes svgGalleryFrameFloat {
  0%, 100% { transform: translateY(0) rotate(var(--r, -12deg)); }
  50% { transform: translateY(-10px) rotate(calc(var(--r, -12deg) + 4deg)); }
}

.svg-gallery-frame-1 { --r: -12deg; }
.svg-gallery-frame-2 { --r: 8deg; }

/* Testimonials Section */
.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonials-svg-accent {
  top: 15%;
  left: 5%;
  width: 220px;
  height: 180px;
  opacity: 0.45;
}

.svg-quote { animation: svgQuoteFade 5s ease-in-out infinite; }
.svg-quote-right { animation-delay: 2.5s; }

@keyframes svgQuoteFade {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.svg-tstar { animation: svgSparkle 3s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
.svg-tstar-2 { animation-delay: 0.4s; }
.svg-tstar-3 { animation-delay: 0.8s; }
.svg-tstar-4 { animation-delay: 1.2s; }

.svg-testimonial-avatar { animation: svgAccentBob 4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }

/* Partners Section */
.partners-svg-accent {
  top: 20px;
  left: 50%;
  width: 280px;
  height: 200px;
  opacity: 0.4;
}

.partners-svg-accent:not(.in-view) {
  transform: translateX(-50%) translateY(20px);
}

.partners-svg-accent.in-view {
  transform: translateX(-50%) translateY(0);
}

.svg-partners-globe { animation: svgGlobeSpin 30s linear infinite; transform-origin: center; }

@keyframes svgGlobeSpin {
  to { transform: rotate(360deg); }
}

.svg-globe-dot { animation: svgGlobeDotPulse 3s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.svg-globe-dot-2 { animation-delay: 1s; }
.svg-globe-dot-3 { animation-delay: 2s; }

@keyframes svgGlobeDotPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.4); }
}

.svg-partner-link {
  stroke-dasharray: 80;
  animation: svgPartnerLinkDraw 5s ease-in-out infinite;
}
.svg-partner-link-2 { animation-delay: 0.6s; }
.svg-partner-link-3 { animation-delay: 1.2s; }
.svg-partner-link-4 { animation-delay: 1.8s; }

@keyframes svgPartnerLinkDraw {
  0%, 100% { stroke-dashoffset: 80; opacity: 0.2; }
  50% { stroke-dashoffset: 0; opacity: 0.7; }
}

.svg-handshake { animation: svgAccentBob 4s ease-in-out infinite; }

/* Contact Section */
.contact-svg-accent {
  top: 40px;
  left: -20px;
  width: 200px;
  height: 200px;
  opacity: 0.45;
}

.svg-contact-envelope { animation: svgEnvFloat 4s ease-in-out infinite; }
.svg-contact-phone { animation: svgPhoneRing 3s ease-in-out infinite; }

@keyframes svgEnvFloat {
  0%, 100% { transform: translate(50px, 80px) rotate(0deg); }
  50% { transform: translate(50px, 72px) rotate(-3deg); }
}

@keyframes svgPhoneRing {
  0%, 100% { transform: translate(150px, 60px) rotate(0deg); }
  10%, 30% { transform: translate(150px, 60px) rotate(-8deg); }
  20%, 40% { transform: translate(150px, 60px) rotate(8deg); }
  50% { transform: translate(150px, 60px) rotate(0deg); }
}

.svg-phone-ring { animation: svgPhoneRingWave 2s ease-in-out infinite; transform-origin: left center; }
.svg-phone-ring-2 { animation-delay: 0.3s; }

@keyframes svgPhoneRingWave {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.8; }
}

.svg-contact-pin { animation: svgAccentBob 4s ease-in-out infinite; }
.svg-pin-pulse { animation: svgNodePulse 2s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.svg-pin-ring { animation: svgPinRingExpand 2s ease-out infinite; transform-box: fill-box; transform-origin: center; }

@keyframes svgPinRingExpand {
  0% { opacity: 0.5; transform: scale(0.8); }
  100% { opacity: 0; transform: scale(1.8); }
}

/* Campus map animations */
.svg-map-pin { animation: svgMapPinBounce 2s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.svg-map-pin-ring { animation: svgPinRingExpand 2s ease-out infinite; transform-box: fill-box; transform-origin: center; }

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

.svg-map-building { animation: svgMapBuildingGlow 4s ease-in-out infinite; }
.svg-map-building-2 { animation-delay: 1s; }
.svg-map-building-3 { animation-delay: 2s; }
.svg-map-building-4 { animation-delay: 3s; }

@keyframes svgMapBuildingGlow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 0.95; }
}

/* Newsletter Section */
.newsletter-svg-accent {
  top: 50%;
  right: 0;
  width: 260px;
  height: 120px;
  opacity: 0.5;
}

.newsletter-svg-accent:not(.in-view) {
  transform: translateY(calc(-50% + 20px));
}

.newsletter-svg-accent.in-view {
  transform: translateY(-50%);
}

.svg-nl-flight-path {
  stroke-dasharray: 300;
  animation: svgNlPathDraw 5s ease-in-out infinite;
}

@keyframes svgNlPathDraw {
  0% { stroke-dashoffset: 300; opacity: 0.3; }
  50% { stroke-dashoffset: 0; opacity: 0.8; }
  100% { stroke-dashoffset: -300; opacity: 0.3; }
}

.svg-nl-plane {
  animation: svgNlPlaneFly 5s ease-in-out infinite;
}

@keyframes svgNlPlaneFly {
  0%, 100% { transform: translate(240px, 20px) rotate(-25deg); }
  50% { transform: translate(248px, 12px) rotate(-20deg); }
}

.svg-nl-envelope { animation: svgAccentBob 4s ease-in-out infinite; }
.svg-nl-dot { animation: svgNlDotTrail 5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.svg-nl-dot-2 { animation-delay: 0.8s; }
.svg-nl-dot-3 { animation-delay: 1.6s; }

@keyframes svgNlDotTrail {
  0%, 100% { opacity: 0.2; transform: scale(0.6); }
  50% { opacity: 0.8; transform: scale(1.2); }
}

/* Why left accent */
.why-svg-accent-left {
  top: 20%;
  left: 3%;
  width: 180px;
  height: 200px;
  opacity: 0.35;
}

.svg-why-book { animation: svgWhyBookFloat 5s ease-in-out infinite; }
.svg-why-book-2 { animation-delay: 1.5s; }

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

.svg-why-path {
  stroke-dasharray: 150;
  animation: svgDrawLine 5s ease-in-out infinite;
}

/* Faculties right accent */
.faculties-svg-accent-right {
  top: 80px;
  right: -40px;
  width: 200px;
  height: 200px;
  opacity: 0.5;
}

.svg-accent-orbit-reverse {
  animation: svgRingSpinReverse 22s linear infinite;
  transform-origin: 100px 100px;
}

.svg-accent-pencil,
.svg-accent-compass {
  animation: svgAccentBob 4s ease-in-out infinite;
}

.svg-accent-compass { animation-delay: 1.8s; }

/* Parallax layer (JS-driven) */
.hero-svg-motion.is-parallax .hero-svg-scene {
  transition: transform 0.15s ease-out;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-svg-motion *,
  .section-svg-accent *,
  .admissions-svg-bg *,
  .acta-svg-rings *,
  .svg-campus-map * {
    animation: none !important;
    transition: none !important;
  }

  .svg-const-line,
  .svg-wave-path,
  .svg-book-line,
  .svg-ql-path,
  .svg-nl-flight-path,
  .svg-partner-link,
  .svg-why-path {
    stroke-dashoffset: 0 !important;
  }

  .section-svg-accent {
    opacity: 0.45;
    transform: none;
  }

  .partners-svg-accent.in-view,
  .partners-svg-accent:not(.in-view) {
    transform: translateX(-50%);
  }

  .newsletter-svg-accent.in-view,
  .newsletter-svg-accent:not(.in-view) {
    transform: translateY(-50%);
  }

  .quick-links-svg-accent.in-view,
  .quick-links-svg-accent:not(.in-view) {
    transform: translateY(-50%);
  }
}

@media (max-width: 1024px) {
  .hero-svg-motion {
    opacity: 0.55;
  }

  .faculties-svg-accent,
  .faculties-svg-accent-right,
  .why-section .section-svg-accent,
  .why-svg-accent-left,
  .research-svg-accent,
  .gallery-svg-accent,
  .partners-svg-accent {
    opacity: 0.35;
  }

  .quick-links-svg-accent,
  .ticker-svg-accent {
    opacity: 0.3;
  }
}

@media (max-width: 768px) {
  .hero-svg-motion {
    opacity: 0.35;
  }

  .admissions-svg-bg {
    display: none;
  }

  .news-svg-accent,
  .calendar-svg-accent,
  .student-life-svg-accent,
  .contact-svg-accent,
  .newsletter-svg-accent,
  .testimonials-svg-accent {
    display: none;
  }
}
