:root {
  --primary: #6a3093;
  /* Purple */
  --secondary: #004e92;
  /* Blue */
  --accent: #f7c744;
  --bg: #ffffff;
  --text-dark: #111;
  --text-light: #fff;
  --glow: 0 0 15px rgba(247, 199, 68, 0.7);
  --nav-glow: 0 0 20px rgba(106, 48, 147, 0.6);
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Nastaliq+Urdu&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.registration {
  margin: 20px 0;
  text-align: center;
}

.reg-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: linear-gradient(135deg, #4a6bff, #2ecc71);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.reg-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
  background: linear-gradient(135deg, #3a5bef, #25b562);
}

.reg-button:active {
  transform: translateY(0);
}

.reg-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: 0.5s;
}

.reg-button:hover::before {
  left: 100%;
}

.reg-icon {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.reg-button:hover .reg-icon {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .reg-button {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

body {
  background-color: #f9f9f9;
  min-height: 100vh;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Navigation - Premium Design */
nav {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 1.5rem 3rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  box-shadow: var(--nav-glow);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav.scrolled {
  padding: 0.8rem 3rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  background: rgba(0, 45, 98, 0.95);
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  margin-right: auto;
}

.logo-img {
  height: 150px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 2;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.logo-text {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  margin-top: 10px;
}

.logo-main {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  position: relative;
}

.logo-main::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.logo-container:hover .logo-main::after {
  transform: scaleX(1);
  transform-origin: left;
}

.logo-sub {
  font-size: 1rem;
  color: var(--accent);
  font-style: italic;
  letter-spacing: 1px;
  margin-top: 5px;
  transition: all 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.logo-container::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background: linear-gradient(45deg,
      transparent,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent,
      transparent);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.8s ease;
  z-index: 1;
}

.logo-container:hover::before {
  transform: translateX(200%) skewX(-15deg);
}

ul.nav-links {
  list-style: none;
  display: flex;
  gap: 0.8rem;
  margin-left: auto;
}

ul.nav-links li {
  position: relative;
  perspective: 1000px;
}

ul.nav-links li a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 10px 12px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.1rem;
  overflow: hidden;
  border-radius: 8px;
}

ul.nav-links li a .nav-icon {
  font-size: 1.3rem;
  margin-bottom: 8px;
  opacity: 0.9;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

ul.nav-links li a:hover .nav-icon {
  transform: translateY(-8px) scale(1.1);
  opacity: 1;
  color: var(--accent);
  text-shadow: var(--glow);
}

ul.nav-links li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.15),
      transparent);
  transform: translateX(-150%) skewX(25deg);
  transition: transform 0.6s ease;
}

ul.nav-links li a:hover::before {
  transform: translateX(150%) skewX(25deg);
}

ul.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 0 0 8px 8px;
}

ul.nav-links li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
  box-shadow: var(--glow);
}

/* 3D Hover Effect */
ul.nav-links li a .nav-text {
  display: inline-block;
  transition: transform 0.4s ease;
  transform-style: preserve-3d;
}

ul.nav-links li:hover a .nav-text {
  transform: rotateX(360deg);
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.4s ease;
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.mobile-menu-btn:hover {
  transform: rotate(180deg) scale(1.1);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 15px rgba(247, 199, 68, 0.3);
}

/* Home Section */
.home-section {
  position: relative;
  padding: 220px 2rem 50px;
  color: white;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding-bottom: 150px;
}

.home-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.home-bg.active {
  opacity: 1;
}

.home-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.home-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.5s;
  margin-bottom: 40px;
}

@keyframes fadeInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.home-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  position: relative;
  display: inline-block;
}

.home-content h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: var(--glow);
}

.home-content:hover h1::after {
  transform: scaleX(1);
  transform-origin: left;
}

.home-content h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: white;
  font-weight: 400;
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    transform: scale(1.02);
  }

  100% {
    opacity: 0.8;
    transform: scale(1);
  }
}

.home-content p {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  position: relative;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.home-content p::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 2px;
  background: var(--accent);
  box-shadow: var(--glow);
}

/* Video Section */
.home-video-container {
  max-width: 800px;
  width: 90%;
  margin: 60px auto 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
}

.home-video-container.visible {
  transform: translateY(0);
  opacity: 1;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: rgba(0, 0, 0, 0.3);
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video Controls */
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px;
  display: flex;
  flex-direction: column;
  z-index: 10;
}

.progress-container {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  margin-bottom: 8px;
  cursor: pointer;
}

.progress-bar {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 0.1s;
}

.controls-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-controls,
.right-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.control-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
}

.control-btn:hover {
  color: var(--accent);
  transform: scale(1.1);
}

.time-display {
  color: white;
  font-size: 0.9rem;
  font-family: monospace;
}

.volume-container {
  display: flex;
  align-items: center;
  gap: 5px;
}

.volume-slider {
  width: 70px;
  cursor: pointer;
}

.video-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: all 0.2s;
}

.video-close-btn:hover {
  background: rgba(255, 0, 0, 0.7);
  transform: scale(1.1);
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 0 0 10px rgba(247, 199, 68, 0.3);
  z-index: 2;
}

.video-play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 0 15px rgba(247, 199, 68, 0.4);
}

.video-play-button i {
  color: var(--secondary);
  font-size: 2rem;
  margin-left: 5px;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--accent);
  box-shadow: var(--glow);
  z-index: 1;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.cta-button:hover {
  color: var(--secondary);
  box-shadow: 0 0 30px rgba(247, 199, 68, 0.9);
  transform: translateY(-3px);
}

.cta-button:hover::before {
  transform: scaleX(1);
}

.cta-button::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 2px solid var(--accent);
  border-radius: 50px;
  animation: laserBorder 2s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-button:hover::after {
  opacity: 1;
}

@keyframes laserBorder {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

/* Floating particles */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: float 15s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
  }
}

/* About Section */
.about-section {
  padding: 100px 2rem;
  background-color: rgba(255, 255, 255, 0.3);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
  background-image: url(../assets/images/backgrounds/front_pic.jpeg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-content {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
  transform: translateY(50px);
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-content h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
}

.about-content h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: var(--accent);
  box-shadow: var(--glow);
}

.about-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: center;
  color: var(--text-dark);
}

.about-highlight {
  color: var(--secondary);
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  margin-top: 50px;
}

.faq-item {
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-question {
  padding: 20px 30px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  padding: 0 30px;
  background: white;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 30px;
}

.faq-answer p {
  text-align: left;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.faq-answer ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.faq-answer li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  font-size: 1.1rem;
}

.faq-answer li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: var(--glow);
}

/* About Particles */
.about-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.about-particle {
  position: absolute;
  border-radius: 50%;
  animation: float 15s infinite linear;
  will-change: transform;
  filter: drop-shadow(0 0 5px rgba(247, 199, 68, 0.5));
  display: block;
  /* Add this */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  background: red !important;
  animation-duration: 5s !important;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
  }
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .about-content {
    padding: 30px 20px;
  }

  .about-content h1 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1rem;
  }

  .faq-question {
    font-size: 1.1rem;
    padding: 15px 20px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 20px;
  }
}

/* Sticky padding compensation */
.page-content {
  padding-top: 100px;
  text-align: center;
}

/* Responsive styles */
@media screen and (max-width: 1400px) {
  .logo-main {
    font-size: 1.8rem;
  }

  .logo-img {
    height: 120px;
  }
}

@media screen and (max-width: 1200px) {
  .logo-main {
    font-size: 1.5rem;
  }

  .logo-sub {
    font-size: 0.9rem;
  }

  ul.nav-links {
    gap: 1rem;
  }

  .home-content h1 {
    font-size: 3rem;
  }
}

@media screen and (max-width: 992px) {
  .logo-text {
    font: 20px;
  }

  .home-content h1 {
    font-size: 2.5rem;
  }

  .home-content h2 {
    font-size: 1.5rem;
  }

  .home-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 575px) {

  /* .logo-img {
  height: 60px;
  padding: 9px;
} */
  .logo-main {
    font-size: 20px;
  }

  .logo-sub {
    font-size: 0.5rem;
    letter-spacing: 0;
  }

  .logo-container {
    gap: 10px;
  }
}


@media screen and (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }

  .mobile-menu-btn {
    display: flex;
  }

  ul.nav-links {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: fixed;
    top: 0;
    left: -100%;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.3);
    padding: 30px 20px 40px;
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    overflow-y: auto;
    overflow-x: hidden;
  }
  
  ul.nav-links::before {
    content: "F.G Science Degree College";
    color: var(--accent);
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    padding: 15px 10px;
    border-bottom: 2px solid var(--accent);
    width: 90%;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    letter-spacing: 1px;
  }














  @keyframes clickEffect {
    0% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 1;
    }

    50% {
      transform: translate(-50%, -50%) scale(0.8);
      opacity: 0.7;
    }

    100% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 1;
    }
  }

  ul.nav-links li {
    width: 100%;
    text-align: center;
  }

  ul.nav-links li a {
    padding: 15px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  @media (min-width: 768px) {
    ul.nav-links {
      gap: 0.5rem;
      /* Further reduce gap on larger screens */
    }
  }

  @media (max-width: 768px) {
    ul.nav-links {
      gap: 0.5rem;
      /* Reduce gap in mobile view */
    }
  }


  ul.nav-links.active {
    left: 0;
  }

  .home-content h1 {
    font-size: 2rem;
  }

  .home-content h2 {
    font-size: 1.3rem;
  }

  .logo-img {
    height: 80px;
  }

  .home-section {
    padding: 180px 2rem 50px;
  }

  .cta-button {
    padding: 12px 30px;
    font-size: 1rem;
  }

  .video-play-button {
    width: 60px;
    height: 60px;
  }

  .home-video-container {
    max-width: 95%;
  }
}

@media screen and (max-width: 576px) {
  .logo-img {
    height: 70px;
  }

  nav {
    padding: 0.8rem 1rem;
  }

  .home-content h1 {
    font-size: 1.8rem;
  }

  .home-content p {
    font-size: 1rem;
  }

  /* Fix video controls for mobile */
  .video-controls {
    padding: 5px;
  }

  .progress-container {
    height: 3px;
    margin-bottom: 5px;
  }

  .controls-row {
    flex-direction: row;
    gap: 5px;
    align-items: center;
    justify-content: space-between;
  }

  .left-controls,
  .right-controls {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .control-btn {
    font-size: 0.8rem;
    padding: 2px;
  }

  .time-display {
    font-size: 0.7rem;
  }

  .volume-slider {
    width: 40px;
  }

  .volume-container {
    gap: 3px;
  }
}

/* Floating Scroll Indicator */
.scroll-indicator {
  position: fixed;
  top: 0;
  right: 10px;
  height: 100vh;
  width: 6px;
  background: rgba(26, 62, 114, 0.2);
  /* Light blue track */
  z-index: 9999;
}

.scroll-progress {
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  border-radius: 3px;
  transition: height 0.1s ease;
  position: relative;
}

.scroll-progress::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -3px;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
}

::-webkit-scrollbar {
  width: 10px;
}

/* Scrollbar Background */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

/* Scrollbar Thumb */
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #4CAF50, #2e437d);
  border-radius: 10px;
  box-shadow: inset 0 0 5px grey;
}

/* Scrollbar Thumb on hover */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #66BB6A, #38388e);
}


/*more change*/
.gallery-section {
  padding: 60px 2rem;
  background: rgba(255, 255, 255, 0.9);
  margin-top: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.gallery-title {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.gallery-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: var(--accent);
  box-shadow: var(--glow);
}

.gallery-carousel {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.gallery-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  transform: scale(0.95);
}

.gallery-slide.active {
  opacity: 1;
  transform: scale(1);
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 1.2rem;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
}

.gallery-arrow {
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.gallery-arrow:hover {
  background: var(--accent);
  color: white;
  transform: scale(1.1);
}

.gallery-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .gallery-carousel {
    height: 350px;
  }

  .gallery-title {
    font-size: 1.8rem;
  }

  .gallery-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .gallery-carousel {
    height: 250px;
  }

  .gallery-caption {
    font-size: 1rem;
    padding: 10px;
  }
}


/* Admission Section Styles */
.admission-section {
  padding: 100px 2rem;
  position: relative;
  overflow: hidden;
  background-color: #f5f7fa;
}

.admission-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 50px;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: var(--accent);
  box-shadow: var(--glow);
}

/* Admission Tabs */
.admission-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 3;
}

.tab-btn {
  padding: 18px 40px;
  margin: 0 15px;
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.tab-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tab-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.tab-btn:hover::before {
  opacity: 1;
}

.tab-btn.active {
  background: var(--accent);
  color: var(--secondary);
  box-shadow: 0 0 20px rgba(247, 199, 68, 0.6);
}

.tab-btn.active:hover {
  transform: none;
}

/* Tab Content */
.tab-content {
  display: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  min-height: 500px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: -1;
}

/* HSSC Tab Background */
.hssc-tab::before {
  background-image: url('../assets/images/backgrounds/inter_admission.jpg');
}

/* Bachelor Tab Background */
.bachelor-tab::before {
  background-image: url('../assets/images/backgrounds/Nup_admission.jpg');
}

/* Admission Info Styles */
.admission-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Mobile responsive for admission info */
@media screen and (max-width: 768px) {
  .admission-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .admission-section {
    padding: 60px 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .tab-btn {
    padding: 12px 20px;
    margin: 0 5px;
    font-size: 1rem;
  }

  .tab-content {
    padding: 20px;
    min-height: auto;
  }

  .admission-criteria,
  .documents-required,
  .quota-info {
    padding: 20px 15px;
  }

  .info-title {
    font-size: 1.3rem;
  }

  .info-list li {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }

  /* Fix quota table overflow */
  .quota-table {
    font-size: 0.9rem;
    width: 100%;
  }

  .quota-table thead,
  .quota-table tbody,
  .quota-table th,
  .quota-table td,
  .quota-table tr {
    display: block;
  }

  .quota-table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .quota-table tr {
    border: 1px solid #ddd;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

  .quota-table td {
    border: none;
    position: relative;
    padding: 8px 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    margin-bottom: 8px;
  }

  .quota-table td:before {
    content: attr(data-label);
    font-weight: bold;
    color: var(--primary);
    font-size: 0.85rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .quota-table td:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 576px) {
  .admission-tabs {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .tab-btn {
    width: 80%;
    margin: 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .info-list li {
    font-size: 0.9rem;
    padding-left: 20px;
  }
}

.admission-criteria,
.documents-required,
.quota-info {
  background: rgba(255, 255, 255, 0.8);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid var(--accent);
}

.admission-criteria:hover,
.documents-required:hover,
.quota-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-title {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.info-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
}

.info-list {
  list-style-type: none;
}

.info-list li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
  font-size: 1.1rem;
  line-height: 1.6;
}

.info-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent);
}

.highlight {
  color: var(--secondary);
  font-weight: 600;
}

/* Quota Specific Styles */
.quota-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.quota-table th,
.quota-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.quota-table th {
  background-color: var(--primary);
  color: white;
}

.quota-table tr:nth-child(even) {
  background-color: #f8f9fa;
}

.quota-table tr:hover {
  background-color: #f1f3f5;
}

/* Download Button */
.download-btn-container {
  text-align: center;
  margin-top: 50px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.download-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.download-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.download-btn:hover::before {
  opacity: 1;
}

.download-btn i {
  margin-right: 10px;
  font-size: 1.3rem;
}

/* Laser Button Effect */
.download-btn::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border: 2px solid var(--accent);
  border-radius: 50px;
  animation: laserBorder 2s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.download-btn:hover::after {
  opacity: 1;
}

@keyframes laserBorder {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

/* Admission Particles */
.admission-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.admission-particle {
  position: absolute;
  border-radius: 50%;
  animation: float 15s infinite linear;
  filter: drop-shadow(0 0 5px rgba(247, 199, 68, 0.5));
}

/* Responsive Styles */
@media (max-width: 992px) {
  .section-title {
    font-size: 2.2rem;
  }

  .tab-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
  }

  .admission-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .admission-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    width: 80%;
    margin-bottom: 15px;
  }

  .tab-content {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.8rem;
  }

  .tab-btn {
    width: 100%;
  }

  .info-title {
    font-size: 1.3rem;
  }

  .info-list li {
    font-size: 1rem;
  }
}


.photo-gallery {
  padding: 80px 2rem;
  background: linear-gradient(135deg, rgba(106, 48, 147, 0.1), rgba(0, 78, 146, 0.1));
  position: relative;
  overflow: hidden;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.gallery-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}

.gallery-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: var(--accent);
  box-shadow: var(--glow);
}

/* Split View Gallery */
.split-gallery {
  display: flex;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  position: relative;
}

.gallery-item {
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  transition: all 0.4s ease;
}

.gallery-item:hover::before {
  background: rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
  flex: 3;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: white;
  z-index: 2;
  opacity: 1;
  transition: all 0.4s ease;
  transform: translateY(0);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(-10px);
}

.caption-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.caption-subtitle {
  font-size: 1.1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Gallery Particles */
.gallery-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.gallery-particle {
  position: absolute;
  border-radius: 50%;
  animation: float 15s infinite linear;
  filter: drop-shadow(0 0 5px rgba(247, 199, 68, 0.5));
}

/* Responsive Styles */
@media (max-width: 992px) {
  .split-gallery {
    height: 400px;
  }

  .caption-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .split-gallery {
    height: 300px;
    flex-direction: column;
  }

  .gallery-item {
    flex: 1;
  }

  .gallery-item:hover {
    flex: 2;
  }

  .gallery-caption {
    bottom: 20px;
    left: 20px;
  }

  .caption-title {
    font-size: 1.3rem;
  }

  .caption-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .gallery-title {
    font-size: 2rem;
  }

  .split-gallery {
    height: 250px;
  }
}

.admission-section {
  background: linear-gradient(white, rgb(239, 232, 187))
}


/* chat bot*/

.chatbot-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  font-family: 'Poppins', sans-serif;
}

/* Chatbot Toggle Button */
.chatbot-toggle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1a3e72, #0a2d5a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 5px 25px rgba(26, 62, 114, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 2px solid #f7c744;
}

.chatbot-toggle:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 0 25px rgba(247, 199, 68, 0.8);
}

.chatbot-toggle::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to bottom right,
      transparent,
      transparent,
      transparent,
      rgba(255, 255, 255, 0.3));
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

.chatbot-toggle-text {
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #1a3e72;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Chatbot Window */
.chatbot-window {
  width: 380px;
  height: 550px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: none;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.chatbot-window.active {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

/* Chatbot Header */
.chatbot-header {
  background: linear-gradient(135deg, #1a3e72, #0a2d5a);
  color: white;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.chatbot-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #f7c744;
  box-shadow: 0 0 15px rgba(247, 199, 68, 0.7);
}

.chatbot-title {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
}

.chatbot-logo {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 50%;
  object-fit: cover;
}

.chatbot-close {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.chatbot-close:hover {
  transform: rotate(90deg);
  color: #f7c744;
  background: rgba(255, 255, 255, 0.2);
}

/* Chatbot Body */
.chatbot-body {
  height: calc(100% - 120px);
  padding: 15px;
  overflow-y: auto;
  background-color: rgba(255, 255, 255, 0.8);
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjZmZmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiNlZWVlZWUiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=');
}

/* Chatbot Messages */
.chatbot-message {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}

.message-bubble {
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 18px;
  position: relative;
  margin-bottom: 5px;
  animation: fadeIn 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  line-height: 1.4;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bot-message .message-bubble {
  background: white;
  color: #333;
  border-top-left-radius: 5px;
  align-self: flex-start;
  border: 1px solid #eee;
}

.user-message .message-bubble {
  background: linear-gradient(135deg, #1a3e72, #0a2d5a);
  color: white;
  border-top-right-radius: 5px;
  align-self: flex-end;
}

.message-time {
  font-size: 10px;
  color: #999;
  align-self: flex-end;
  margin-top: -10px;
  margin-right: 5px;
}

.user-message .message-time {
  align-self: flex-start;
  margin-left: 5px;
  color: #666;
}

/* Chatbot Input Area */
.chatbot-input {
  height: 60px;
  padding: 10px;
  background: white;
  display: flex;
  align-items: center;
  border-top: 1px solid #eee;
  position: relative;
}

.chatbot-input input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 15px;
  border-radius: 30px;
  background: #f5f5f5;
  font-size: 14px;
  margin-right: 10px;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.chatbot-input input:focus {
  box-shadow: 0 0 0 2px rgba(26, 62, 114, 0.3);
}

.chatbot-send {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1a3e72, #0a2d5a);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chatbot-send:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #0a2d5a, #1a3e72);
  box-shadow: 0 0 15px rgba(26, 62, 114, 0.5);
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  padding: 10px 15px;
  background: white;
  border-radius: 18px;
  border-top-left-radius: 5px;
  align-self: flex-start;
  margin-bottom: 15px;
  border: 1px solid #eee;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.typing-dot {
  width: 8px;
  height: 8px;
  background: #666;
  border-radius: 50%;
  margin: 0 2px;
  animation: typingAnimation 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) {
  animation-delay: 0s;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingAnimation {

  0%,
  60%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-5px);
  }
}

/* Quick Reply Buttons */
.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.quick-reply {
  background: rgba(26, 62, 114, 0.1);
  color: #1a3e72;
  border: none;
  border-radius: 15px;
  padding: 5px 12px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quick-reply:hover {
  background: rgba(26, 62, 114, 0.2);
  transform: translateY(-2px);
}

/* Particles for Chatbot */
.chatbot-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(139, 0, 0, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

/* Smoke Effect */
.smoke {
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(200, 200, 200, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(2px);
}

/* Laser Effect */
.laser-beam {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(247, 199, 68, 0), rgba(247, 199, 68, 0.8), rgba(247, 199, 68, 0));
  transform-origin: left center;
  pointer-events: none;
  z-index: -1;
  box-shadow: 0 0 10px rgba(247, 199, 68, 0.5);
}

/* Welcome Animation */
@keyframes welcomePulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.welcome-message {
  animation: welcomePulse 2s infinite;
}

/* Confetti Effect */
.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #f7c744;
  opacity: 0;
  z-index: 10;
  animation: confettiFall 5s linear forwards;
}

@keyframes confettiFall {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translateY(600px) rotate(360deg);
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 576px) {
  .chatbot-container {
    bottom: 15px;
    right: 15px;
  }

  .chatbot-toggle {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }

  .chatbot-window {
    width: 320px;
    height: 480px;
    right: 0;
  }
}

/* Emoji Styles */
.emoji {
  font-size: 18px;
  vertical-align: middle;
  margin: 0 2px;
}

/* Link Styles */
.chatbot-link {
  color: #1a3e72;
  text-decoration: underline;
  font-weight: 500;
}

/* List Styles */
.chatbot-list {
  padding-left: 20px;
  margin: 8px 0;
}

.chatbot-list li {
  margin-bottom: 5px;
}

/* Highlight Box */
.highlight-box {
  background: rgba(247, 199, 68, 0.1);
  border-left: 3px solid #f7c744;
  padding: 10px;
  margin: 10px 0;
  border-radius: 0 5px 5px 0;
}

/* Status Indicator */
.status-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 5px;
}

.status-online {
  background: #4CAF50;
  box-shadow: 0 0 5px #4CAF50;
}

.status-typing {
  background: #FFC107;
  box-shadow: 0 0 5px #FFC107;
}

/* Chatbot Footer */
.chatbot-footer {
  font-size: 10px;
  text-align: center;
  color: #999;
  padding: 5px;
  border-top: 1px solid #eee;
  background: white;
}

/* contact*/
:root {
  --primary: #6a3093;
  /* Purple */
  --secondary: #004e92;
  /* Blue */
  --accent: #f7c744;
  --bg: #ffffff;
  --text-dark: #111;
  --text-light: #fff;
  --glow: 0 0 15px rgba(247, 199, 68, 0.7);
  --nav-glow: 0 0 20px rgba(106, 48, 147, 0.6);
}



/* Contact Section - Premium Design */
.contact-section {
  padding: 100px 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(239, 232, 187, 0.8));
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1IiBoZWlnaHQ9IjUiPgo8cmVjdCB3aWR0aD0iNSIgaGVpZ2h0PSI1IiBmaWxsPSIjZmZmIj48L3JlY3Q+CjxwYXRoIGQ9Ik0wIDVMNSAwWk02IDRMNCA2Wk0tMSAxTDEgLTFaIiBzdHJva2U9IiNlZWVlZWUiIHN0cm9rZS13aWR0aD0iMSI+PC9wYXRoPgo8L3N2Zz4=');
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-title {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}

.contact-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: var(--accent);
  box-shadow: var(--glow);
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.nav-text {
  margin-left: 13px;
}


.contact-info {
  flex: 1;
  min-width: 300px;
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-info:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(106, 48, 147, 0.05), rgba(0, 78, 146, 0.05));
  z-index: -1;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.contact-info h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent);
  box-shadow: var(--glow);
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  position: relative;
  padding-left: 40px;
}

.info-item i {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 1.5rem;
  color: var(--accent);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}

.info-item:hover i {
  transform: scale(1.2);
  text-shadow: var(--glow);
}

.info-content h4 {
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 8px;
  font-weight: 600;
}

.info-content p,
.info-content a {
  color: #555;
  line-height: 1.6;
  text-decoration: none;
  transition: all 0.3s ease;
}

.info-content a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Map Container with Laser Border Effect */
.map-container {
  width: 100%;
  margin-top: 60px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  border: 2px solid transparent;
  animation: laserBorder 3s infinite linear;
}

@keyframes laserBorder {
  0% {
    border-color: rgba(247, 199, 68, 0);
    box-shadow: 0 0 10px rgba(247, 199, 68, 0);
  }

  50% {
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent);
  }

  100% {
    border-color: rgba(247, 199, 68, 0);
    box-shadow: 0 0 10px rgba(247, 199, 68, 0);
  }
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

/* Floating Particles */
.contact-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.contact-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(247, 199, 68, 0.6);
  animation: float 15s infinite linear;
  filter: drop-shadow(0 0 5px rgba(247, 199, 68, 0.5));
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-title {
    font-size: 2.2rem;
  }

  .contact-info {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 2rem;
  }

  .contact-content {
    flex-direction: column;
  }

  .map-container iframe {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .contact-title {
    font-size: 1.8rem;
  }

  .contact-info {
    padding: 25px;
  }

  .map-container iframe {
    height: 300px;
  }

  .info-item {
    padding-left: 35px;
  }

  .info-item i {
    font-size: 1.3rem;
  }
}

.nav-text {
  margin-left: 10px;
}

.Nups {

  color: rgb(255, 255, 255);
  /* Text color (for better contrast) */

  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  /* Horizontal, Vertical, Blur, Color */
  width: 50%;
  /* Optional: Box Shadow (for the background) */
  box-shadow: 3px 3px 5px rgba(136, 255, 0, 0.3);
}

.Nups:hover {
  color: #66BB6A;
}




.custom-cursor {
  width: 12px;
  height: 12px;
  border: 1px solid white;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s;
}

/* Hover effects */
.custom-cursor.hover {
  width: 20px;
  height: 20px;
  border-color: #6E45E2;

}

.custom-cursor.click {
  animation: clickEffect 0.3s ease-out;
}










/* Footer Styles */
.holographic-footer {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--text-light);
  padding: 50px 0 20px;
  position: relative;
  overflow: hidden;


}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-logo img {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
}

.footer-section h4 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-section ul li i {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Fix: Keep controls at bottom */
@media (max-width: 768px) {
  .video-controls {
    padding: 6px;
    font-size: 14px;
  }

  .volume-slider {
    width: 50px;
  }

  .control-btn i {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .control-btn {
    font-size: 14px;
  }

  .time-display {
    font-size: 12px;
  }

  .volume-slider {
    width: 50px;
  }

  .video-play-button {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}



/* Admission Section */
.admission-section {
  position: relative;
  padding: 40px 0;
  background-color: #f8f9fa;
  overflow: hidden;
}

.admission-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
  color: #2c3e50;
  font-size: 2.2rem;
}

/* Tabs */
.admission-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 25px;
  background: #e0e0e0;
  border: none;
  border-radius: 5px 5px 0 0;
  margin: 0 5px;
  cursor: pointer;
  font-weight: 600;
  color: #555;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: #3498db;
  color: white;
}

/* Tab Content */
.tab-content {
  display: none;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tab-content.active {
  display: block;
}

.admission-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.info-title {
  color: #3498db;
  margin-bottom: 15px;
  font-size: 1.4rem;
  border-bottom: 2px solid #3498db;
  padding-bottom: 5px;
}

.info-list {
  list-style-type: none;
  padding-left: 20px;
}

.info-list li {
  margin-bottom: 10px;
  position: relative;
  line-height: 1.6;
}

.info-list li:before {
  content: "•";
  color: #3498db;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.info-list ul {
  padding-left: 20px;
  margin-top: 5px;
}

.highlight {
  color: #e74c3c;
  font-weight: 600;
}

/* Tables */
.quota-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.quota-table th,
.quota-table td {
  padding: 12px;
  text-align: left;
  border: 1px solid #ddd;
}

.quota-table th {
  background-color: #3498db;
  color: white;
}

.quota-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

/* Additional Info */
.additional-info {
  background: #f1f8fe;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}

/* Download Button */
.download-btn-container {
  text-align: center;
  margin-top: 30px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 25px;
  background-color: #2ecc71;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.download-btn i {
  margin-right: 10px;
}

.download-btn:hover {
  background-color: #27ae60;
  transform: translateY(-2px);
}

/* Particles Background */
.admission-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .section-title {
    font-size: 1.8rem;
  }

  .admission-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.6rem;
  }

  .tab-btn {
    padding: 10px 15px;
    font-size: 0.9rem;
    margin-bottom: 5px;
  }

  .tab-content {
    padding: 20px;
  }

  .info-title {
    font-size: 1.2rem;
  }

  .quota-table th,
  .quota-table td {
    padding: 8px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 1.4rem;
  }

  .admission-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .tab-btn {
    border-radius: 5px;
    margin: 5px 0;
  }

  .tab-content {
    padding: 15px;
  }

  .quota-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .download-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}