    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: "Poppins", sans-serif;
      }
/* part-1 */
      /* Typewriter effect */
      .typewriter span {
        display: inline-block;
        overflow: hidden;
        white-space: nowrap;
        border-right: 2px solid white;
        animation: typing 3s steps(30, end), blink 0.75s step-end infinite;
      }
      @keyframes typing {
        from {
          width: 0;
        }
        to {
          width: 100%;
        }
      }
      @keyframes blink {
        50% {
          border-color: transparent;
        }
      }

      /* Floating animation */
      .float {
        animation: float 3s ease-in-out infinite;
      }
      @keyframes float {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-8px);
        }
      }

      /* Responsive height adjustments */
      @media (max-width: 768px) {
       
        .contact-sunio {
          flex-direction: column;
          height: auto;
          padding: 0.5rem 0;
          gap: 1vw!important;
        }
      }
    
      /* part-2 */
        /* Float animation reuse */
  .float {
    animation: float 3s ease-in-out infinite;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }

  /* Responsive layout tweaks */
  @media (max-width: 768px) {
    section {
      flex-direction: column;
      text-align: center;
    }
  }
  /* part-3 */
 /* Glow effect */
.adarshGlow {
  text-shadow: 0 0 8px #ffffff, 0 0 15px #0c59a6;
  animation: adarshGlowPulse 2.5s infinite alternate;
}
@keyframes adarshGlowPulse {
  from { text-shadow: 0 0 5px #ffffff, 0 0 10px #0c59a6; }
  to { text-shadow: 0 0 15px #ffffff, 0 0 25px #0c59a6; }
}

/* Floating effect */
.adarshFloat {
  animation: adarshFloatAnim 3s ease-in-out infinite;
}
@keyframes adarshFloatAnim {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Hover underline */
.adarshHoverUnderline {
  position: relative;
}
.adarshHoverUnderline::after {
  content:"";
  position:absolute;
  width:0;
  height:2px;
  left:0;
  bottom:-3px;
  background-color:white;
  transition:width 0.3s ease;
}
.adarshHoverUnderline:hover::after { width:100%; }

/* Desktop dropdown smooth */
.adarshDropdownMenu {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.adarshDropdownParent:hover .adarshDropdownMenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Parallax effect on navbar background */
#adarshNavbar {
  background-attachment: fixed;
}

/* Responsive */
@media (max-width: 1024px) { .adarshGlow { font-size:2.5rem; } }
@media (max-width: 768px) { 
  #adarshNavbar { padding: 0.5rem 1rem; }
  #adarshMenu a, #adarshMenu summary { font-size:1.1rem; }
}
@media (max-width: 480px) { .adarshGlow { font-size:2rem; } }



  /* part-4 */
 :root {
  --rot-heading-color: #0c59a6;
  --rot-background-color: #ffffff;
  --rot-slide-height-desktop: 400px;
  --rot-slide-height-tablet: 300px;
  --rot-slide-height-mobile: 200px;
}

/* Hero Section Layout */
.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--rot-background-color);
  padding: 4rem 6rem;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Left Content */
.hero-left {
  flex: 1;
  min-width: 300px;
}

.rot-heading {
  font-size: 3rem;
  font-weight: bold;
  color: var(--rot-heading-color);
  overflow: hidden;
  white-space: nowrap;
  border-right: .15em solid var(--rot-heading-color);
}

/* Content Paragraph */
.rot-content {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: #333;
  line-height: 1.6;
}

/* Right Slider */
.hero-right {
  flex: 1;
  min-width: 300px;
}

.rot-slider {
  position: relative;
  width: 100%;
  height: var(--rot-slide-height-desktop);
  overflow: hidden;
  border-radius: 12px;
}

.rot-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.rot-slide.active {
  opacity: 1;
}

/* Media Queries */
@media (max-width: 1200px) {
  .hero-section { padding: 3rem 4rem; gap: 1.5rem; }
  .rot-heading { font-size: 2.8rem; }
}

@media (max-width: 992px) {
  .hero-section { padding: 2.5rem 3rem; flex-direction: column; }
  .hero-left, .hero-right { width: 100%; }
  .rot-heading { font-size: 2.5rem; }
  .rot-slider { height: var(--rot-slide-height-tablet); }
}

@media (max-width: 640px) {
  .hero-section { padding: 2rem 1.5rem; }
  .rot-heading { font-size: 2rem; }
  .rot-content { font-size: 1rem; }
  .rot-slider { height: var(--rot-slide-height-mobile); }
}

  /* part-5 */
/* Flip Card */
.perspective { perspective: 1200px; }
.axFlipCardInner { 
  transform-style: preserve-3d; 
  transition: transform 0.8s cubic-bezier(0.4,0.2,0.2,1); 
  will-change: transform;
}
.axFlipCardFront, .axFlipCardBack { 
  backface-visibility: hidden; 
  position: absolute; 
  width: 100%; height: 100%; 
  border-radius: 12px; overflow: hidden; 
}
.axFlipCardBack { 
  transform: rotateY(180deg); 
  display: flex; justify-content: center; align-items: center; text-align: center; padding: 1rem; 
  box-shadow: 0 0 15px rgba(12,89,166,0.5);
}

/* Flip on hover */
.axFlipCardInner:hover { transform: rotateY(180deg); }

/* Horizontal Scroll */
#axCourseSlider { scroll-behavior: smooth; -webkit-overflow-scrolling: touch; overflow-x: auto; }

/* Scroll snap */
.scroll-snap-type { scroll-snap-type: x mandatory; }
.scroll-snap-align { scroll-snap-align: start; }

/* Hide scrollbar */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* Responsive */
@media (max-width: 1024px) { .axFlipCard { width: 60%; height: 70%; } }
@media (max-width: 768px) { .axFlipCard { width: 80%; height: 60%; } }
@media (max-width: 480px) { .axFlipCard { width: 90%; height: 50%; } }

  /* part-6 */
.axTypewriterHeading {
  text-align: center ;
  font-weight: bold;
  font-size: 1.999rem;
  color: #0c59a6;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 4px solid #0c59a6;
  animation: axTypewriter 4s steps(30) infinite, blink 0.7s step-end infinite alternate;
}

@keyframes axTypewriter {
  0% { width: 0; }
  100% { width: 100%; }
}
@keyframes blink { 50% { border-color: transparent; } }

/* Scroller */
.axCategoryScroller { overflow: hidden; position: relative; }
.axCategoryRow { display: flex; animation: axScrollLeft 20s linear infinite; gap: 2rem; }
.axCategoryRow.reverse { animation: axScrollRight 20s linear infinite; }
.axCategoryTrack { display: flex; gap: 2rem; }

/* Item */
.axCategoryItem { display: flex; flex-direction: column; align-items: center; }
.axIcon { font-size: 4rem; color: #0c59a6; margin-bottom: 0.5rem; }
.axExamName { font-size: 1rem; font-weight: 600; color: #000; text-align: center; }

/* Animations */
@keyframes axScrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes axScrollRight { 0% { transform: translateX(0); } 100% { transform: translateX(50%); } }

/* Responsive */
@media (max-width:1024px) { .axIcon { font-size: 3.5rem; } .axExamName { font-size: 0.9rem; } }
@media (max-width:768px) { .axIcon { font-size: 3rem; } .axExamName { font-size: 0.85rem; } }
@media (max-width:480px) { .axIcon { font-size: 2.5rem; } .axExamName { font-size: 0.8rem; } }

  /* part-7 */
  /* Infinite Typewriter Heading */
.axTypewriterHeading {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 4px solid #0c59a6;
  animation: axTypewriter 4s steps(30) infinite, blink 0.7s step-end infinite alternate;
}

@keyframes axTypewriter { 0% { width: 0; } 100% { width: 100%; } }
@keyframes blink { 50% { border-color: transparent; } }

/* Faculty Card Hover Effect */
.axFacultyCard:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease-in-out;
}

/* Responsive */
@media (max-width:1024px) {
  .axFacultyGrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width:768px) {
  .axFacultyGrid { grid-template-columns: 1fr; }
  .axFacultyPhoto { width: 28; height: 28; }
}
@media (max-width:480px) {
  .axFacultyPhoto { width: 24; height: 24; }
  .axFacultyName { font-size: 1rem; }
}

  /* part-8 */
 /* Typewriter Heading */
.axTypewriterHeading {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 4px solid #0c59a6;
  animation: axTypewriter 4s steps(30) infinite, blink 0.7s step-end infinite alternate;
}
@keyframes axTypewriter { 0% { width: 0; } 100% { width: 100%; } }
@keyframes blink { 50% { border-color: transparent; } }

/* Infinite Scroll Animations */
.axRowForward { animation: axScrollLeft 25s linear infinite; }
.axRowReverse { animation: axScrollRight 25s linear infinite; }

@keyframes axScrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes axScrollRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* Glow card */
.glow-card {
  box-shadow: 0 4px 20px rgba(12, 89, 166, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glow-card:hover { transform: translateY(-5px); box-shadow: 0 8px 30px rgba(12, 89, 166, 0.6); }

/* Responsive */
@media (max-width:1024px) { .axStudentRow { gap: 1.5rem; } }
@media (max-width:768px) { .axStudentRow { gap: 1rem; flex-wrap: nowrap; } .axStudentCard { min-width: 200px; } }
@media (max-width:480px) { .axStudentCard { min-width: 180px; } }

  /* part-9 */
/* Typewriter Heading */
.axTypewriterHeading {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 4px solid #0c59a6;
  animation: axTypewriter 4s steps(30) infinite, blink 0.7s step-end infinite alternate;
}
@keyframes axTypewriter { 0% { width: 0; } 100% { width: 100%; } }
@keyframes blink { 50% { border-color: transparent; } }

/* Topper Card hover */
.axTopperCard:hover { transform: translateY(-5px); transition: transform 0.3s ease-in-out; }

/* Scrollbar hide */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* Dark mode */
.ax-dark { background-color: #1a1a1a; color: #f0f0f0; }
.ax-dark .axTopperCard { background-color: #2a2a2a; color: #f0f0f0; }

/* Responsive */
@media (max-width:1024px) { 
  .axToppersGrid { grid-template-columns: repeat(2, minmax(250px, 1fr)); display: flex;flex-direction: column; flex-wrap: nowrap; } 
  .axToppersWrapper { overflow-x: auto; } 
}
@media (max-width:768px) { 
  .axToppersGrid { grid-template-columns: repeat(1, minmax(250px, 1fr)); display: flex; flex-wrap: nowrap; } 
  .axToppersWrapper { overflow-x: auto; } 
}
@media (max-width:480px) { .axTopperCard { min-width: 220px; } }


  /* part-10 */
  /* Typewriter Heading */
.axTypewriterHeading {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 4px solid #ffffff;
  animation: axTypewriter 4s steps(30) infinite, blink 0.7s step-end infinite alternate;
}
@keyframes axTypewriter { 0% { width: 0; } 100% { width: 100%; } }
@keyframes blink { 50% { border-color: transparent; } }

/* Glow card */
.glow-card {
  box-shadow: 0 8px 30px rgba(255,255,255,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glow-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(255,255,255,0.4);
}

/* Infinite scroll */
.axAchieverRow {
  display: flex;
  gap: 2rem;
  animation: axScrollLeft 30s linear infinite;
}

/* Fade Up Animation */
.axFadeUp {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.axFadeUp.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Scrollbar hide */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* Responsive */
@media (max-width:1024px) { .axAchieverRow { gap: 1.5rem; } }
@media (max-width:768px) { .axAchieverRow { gap: 1rem; flex-wrap: nowrap; overflow-x: auto; } .axAchieverCard { min-width: 200px; } }
@media (max-width:480px) { .axAchieverCard { min-width: 180px; } }

/* Parallax effect on SVG */
#axCurveSVG { transition: transform 0.2s ease-out; }


  /* part-11 */
  /* Typewriter Heading */
.axTypewriterHeading {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 4px solid #0c59a6;
  animation: axTypewriter 4s steps(30) infinite, blink 0.7s step-end infinite alternate;
}
@keyframes axTypewriter { 0% { width: 0; } 100% { width: 100%; } }
@keyframes blink { 50% { border-color: transparent; } }

/* FAQ Item */
.axFAQItem { transition: all 0.3s ease; }
.axFAQItem:hover { background-color: rgba(12, 89, 166, 0.05); border-radius: 10px; }

/* Answer toggle */
.axFAQAnswer { transition: all 0.3s ease; }

/* Responsive */
@media (max-width:1024px) { .axFAQContainer { max-width: 90%; } }
@media (max-width:768px) { .axTypewriterHeading { font-size: 2rem; } }
@media (max-width:480px) { .axTypewriterHeading { font-size: 1.7rem; } }

  /* part-12 */
 /* Typewriter Heading */
.rajkishoreTypewriterHeading {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 4px solid #ffffff;
  animation: rajkishoreTypewriter 4s steps(30) infinite, rajkishoreBlink 0.7s step-end infinite alternate;
}
@keyframes rajkishoreTypewriter { 0% { width: 0; } 100% { width: 100%; } }
@keyframes rajkishoreBlink { 50% { border-color: transparent; } }

/* Glow + hover parallax */
.glow-card {
  box-shadow: 0 8px 30px rgba(255,255,255,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.glow-card:hover {
  transform: translateY(-12px) scale(1.1);
  box-shadow: 0 25px 60px rgba(255,255,255,0.45);
}

/* Fade-up animation */
.rajkishoreFadeUp { opacity: 0; transform: translateY(30px); transition: all 0.6s ease-out; }
.rajkishoreFadeUp.visible { opacity: 1; transform: translateY(0); }

/* Cards wrapper */
.rajkishoreCardsWrapper { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 3rem; }

/* Responsive */
@media (max-width:1024px) { .rajkishoreCardsWrapper { gap: 2rem; } }
@media (max-width:768px) { .rajkishoreCardsWrapper { gap: 1.5rem; } .rajkishoreCard { min-width: 220px; padding: 2rem; } }
@media (max-width:480px) { .rajkishoreCard { min-width: 180px; padding: 1.5rem; } i { font-size: 3rem; } }

/* Particle canvas */
#rajkishoreParticleCanvas { position: absolute; top:0; left:0; width:100%; height:100%; pointer-events:none; z-index:0; }

/* Animated background gradient */
@keyframes rajkishoreGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
#rajkishoreWhyChooseUs {
  background-size: 200% 200%;
  animation: rajkishoreGradient 15s ease infinite;
}

  /* part-13 */
  /* Typewriter Heading */
.rajkishoreTypewriterHeading {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 4px solid #ffffff;
  animation: rajkishoreTypewriter 4s steps(30) infinite, rajkishoreBlink 0.7s step-end infinite alternate;
}
@keyframes rajkishoreTypewriter { 0% { width: 0; } 100% { width: 100%; } }
@keyframes rajkishoreBlink { 50% { border-color: transparent; } }

/* Contact Form Styles */
.rajkishoreContactForm { max-width: 800px; margin: 0 auto; }
.rajkishoreInput { font-size: 1rem; }
.rajkishoreInput:focus { border-color: #0c59a6; }
.rajkishoreSubmitButton { cursor: pointer; }

/* Responsive */
@media (max-width:768px){
  .rajkishoreContactForm { padding: 2rem; }
  .rajkishoreTypewriterHeading { font-size: 2rem; }
}
@media (max-width:480px){
  .rajkishoreTypewriterHeading { font-size: 1.5rem; }
}
#rajkishoreFooter { position: relative; }
#rajkishoreFooterCanvas { position: absolute; top:0; left:0; width:100%; height:100%; z-index:0; pointer-events:none; }

/* Bubble styles via JS */
.rajkishoreFooterBubble { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.2); pointer-events: none; }

/* Responsive */
@media(max-width:768px){
  #rajkishoreFooter .flex { flex-direction: column; gap: 6 !important; }
  .part-12{

    display: none;
  }
}

  /* part-14 */
  /* part-15 */
  /* part-16 */
  /* part-17 */