* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  outline: none;
  background: none;
  color: #7a1cac;
}


a:focus,
a:active {
  outline: none;
  background: none;
  -webkit-tap-highlight-color: transparent;
}



body {
  top: 0px !important;
  overflow-x: hidden !important;
  font-family: 'Poppins', sans-serif;
  background-color: #dbd6d6;
}

section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  background-color: white;
  width: 100%;
  height: clamp(90px, 8vw, 100px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  flex-wrap: wrap;
}

.logo {
  font-family: 'Times New Roman', Times, serif;
  font-size: 1.4em;
  color: rgb(120, 0, 120);
  margin-left: 100px;
  display: flex;
  flex-direction: column;
}


.logo .name {
  font: caption;
  font-size: 0.8rem;
  color: black;
  letter-spacing: 1px;
  margin-left: -45px;
}

.nav-bar {
  display: flex;
  gap: 15px;
}

.nav-bar a {
  position: relative;
  color: rgb(100, 5, 100);
  font-weight: 400;
  font-size: 1.1rem;
  padding: 5px 0;
  transition: color 0.3s ease-in-out;
}

.nav-bar a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background-color: rgb(100, 5, 100);
  transition: width 0.3s ease-in-out;
}

.nav-bar a:hover {
  color: rgb(53, 2, 53);
}

.nav-bar a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: rgb(100, 5, 100);
}


.toggle-container {
  background-color: rgb(224, 220, 220);
  display: flex;
  justify-content: center;
  margin-top: 0px;
  padding: 5px;
  width: auto;
}

.toggle {
  width: 120px;
  height: 40px;
  background: #bdb8b8;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: #333;
  transition: all 0.5s ease;
}

.toggle .circle {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 34px;
  height: 34px;
  background: rgb(100, 5, 100);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.toggle.active .circle {
  left: calc(100% - 37px);
}



.Back {
  margin-right: 10px;
  margin-top: 10px;
  font-size: 1.1rem;
}

.EMI {
  margin-left: 10px;
  margin-top: 10px;
  font-size: 1.1rem;
}

.toggle-docked {
  background: none;
  position: fixed;
  top: 50%;
  left: 10px;
  z-index: 100000;
  transition: all 0.5s ease;
  transform: translateY(-50%);
}

.toggle-docked p {
  display: none;
}

.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-te-menu-frame,
.goog-te-banner-frame,
.goog-te-gadget,
.skiptranslate,
.goog-logo-link,
.goog-te-gadget,
.goog-te-spinner-pos,
.goog-te-spinner {
  display: none !important;
}

.main-content,
.practice-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 20px;
  flex-wrap: wrap;
  animation: popup 0.6s ease-out forwards;
}


.main-content div,
.practice-container div {
  flex: 1 1 250px;
  max-width: 300px;
  color: black;
  background-color: #f8f5f5;
  height: 200px;
  width: 250px;
  border: 2px solid rgb(120, 0, 120);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  transition: all 1s ease;
}

.main-content div:hover,
.practice-container div:hover {
  border: 4px solid rgb(65, 3, 65);
  transform: scale(1.1) translateY(-10px);
  transition: all 0.7s ease;
}

.main-content p {
  text-align: center;
  margin-top: 10px;
  color: #555;
  font-size: 0.85rem;
}

div img {
  margin-top: -30px;
  height: 100px;
  width: 100px;
}

@media (max-width: 1024px) {
  .home-page::before {
    content: "VINTECH";
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    font-size: clamp(3rem, 15vw, 10rem);
    font-weight: 900;
    color: rgba(0, 0, 0, 0.05);
    pointer-events: none;
    z-index: -1;
  }

  .nav-bar a {
    margin-left: 15px;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .nav-bar {
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 10px;
  }

}

@media (max-width: 480px) {
  .nav-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .nav-bar a {
    font-size: 1rem;
  }

  .logo .name {
    margin-left: -57px;
  }
}

@media (max-width: 1024px) {
  .nav-bar {
    z-index: 1000;
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 2px solid rgba(128, 0, 128, 0.4);
    position: absolute;
    top: 80px;
    left: 0;
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }

  .nav-bar.active {
    display: flex;
  }

  .nav-bar a {
    width: 90vw;
  }

  .hamburger {
    display: block;
    align-self: flex-end;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    background: none;
    border: none;
    margin-bottom: 10px;
  }

  .hamburger:focus,
  .hamburger:active {
    outline: none;
    background: none;
    -webkit-tap-highlight-color: transparent;
  }
}

.other-page{
  overflow-x: hidden !important;
}
.other-page::before {
  content: "VINTECH";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(3rem, 15vw, 10rem);
  font-weight: 900;
  color: rgba(0, 0, 0, 0.05);
  pointer-events: none;
  z-index: -1;
}


#message-box {
  margin-top: 10px;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 14px;
  display: none;
}

#message-box.error {
  background: #ffe6e6;
  color: #b30000;
  border: 1px solid #ff9999;
}

#message-box.success {
  background: #e6ffe6;
  color: #006600;
  border: 1px solid #99ff99;
}

.input-vce {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  animation: popup 0.6s ease-out forwards;
}

.input-vce input,
select {
  z-index: 1;
  height: 50px;
  width: clamp(350px, 50vw, 600px);
  padding: 10px 15px;
  border: none;
  border-radius: 8px;

  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  color: #2c2c2c;
  font-size: 1rem;
  outline: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.input-vce input::placeholder {
  font-size: clamp(0.8rem, 2vw, 1rem);
  color: rgba(0, 0, 0, 0.6);
}

.input-vce input:focus {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}


button {
  z-index: 1;
  height: 50px;
  width: clamp(50px, 10vw, 100px);
  padding: 5px 5px;
  border: none;
  border-radius: 8px;

  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  color: #2c2c2c;
  font-size: clamp(0.725rem, 1.1vw, 1rem);
  outline: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}



button:hover {
  border: 1px solid #4a0566;
}

.contact-buttons{
  display: flex;
  flex-wrap: wrap;
  background-color: #eee8e8;
  padding: 10px;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.contact-buttons button{
  width: clamp(100px, 40vw,400px);
  animation-name: left-slide;
  animation-duration: 0.8s;
  animation-delay: calc(var(--i) * 0.35s);
  animation-fill-mode: forwards;
  opacity: 0;
  cursor: pointer;
 transition: background 0.5s ease-in-out;
}


.whatsapp {
  background-color: #25D366;
  color: white;
  font-weight: 600;
  display: inline-flex;     
  align-items: center; 
  justify-content: center;     
  padding: 10px 20px;      
  border-radius: 30px;
  text-decoration: none;
  gap: 8px;                 
  white-space: normal;      
}

.whatsapp i {
  border-right: 1px solid white;
  padding-right: 8px;
  font-size: 1.2rem;
}

.whatsapp:hover{
  border: none;
  background-color: #109110;
  color: #66f59a;
}

.email {
  background-color: white;
  color: rgb(0, 0, 0);
  font-weight: 600;
  display: inline-flex;     
  align-items: center; 
  justify-content: center;     
  padding: 10px 20px;      
  border-radius: 30px;
  text-decoration: none;
  gap: 8px;                 
  white-space: normal;      
}

.email i {
  border-right: 1px solid black;
  padding-right: 8px;
  font-size: 1.2rem;
}


.email:hover{
  border: none;
  background-color: black;
  color: white;
}

.location, .call{
  background-color: #eee8e8;
  margin-top: 10px;
  padding: 10px;
}

.location h2 , .call h2{
  margin-left: 15px;
  margin-bottom: 30px;
  font-size: 2em;
  color: #9e169e;
  margin-top: 10px;
  animation-name: popup;
  animation-duration: 0.8s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;  
  opacity: 0;
}

.location p, .call p{
  margin-left: 15px;
  color: #3a3939;
  margin-top: 10px;
  animation-name: popup;
  animation-duration: 0.6s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.location i{
  margin-right: 5px;
  font-size: 1.5em;
}

.location iframe{
  width: 100%;
  border-radius: 10px;
  margin-top: 10px;
  animation-name: popup;
  animation-duration: 0.8s;
  animation-delay: 1.1s;
  animation-fill-mode: forwards;  
  opacity: 0;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
  padding: 1rem;
}

.gallery img {
  opacity: 0;
  margin-top: 5%;
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fade-in {
  opacity: 1;
  animation: fade-in 3s ease-out forwards;
}

.gallery img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

.lightbox:target, .lightbox.show{
  display: flex;
}

.lightbox img {
  max-width: 95vw;
  max-height: 95vh;
  height: auto;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 3rem;
  color: white;
}

.lightbox .close a {
  text-decoration: none;
  color: inherit;
}

/* Loader overlay */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  z-index: 9999;
  flex-direction: column;
}

/* Text inside loader */
#loader p {
  font-size: 18px;
  color: #333;
  margin-top: 10px;
}

/* Spinner animation */
#loader .spinner {
  width: 50px;
  height: 50px;
  border: 6px solid #ddd;
  border-top: 6px solid #4CAF50;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.courses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  padding: 20px;
}


.course-card {
  height: auto;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation-name: left-slide;
  animation-duration: 0.8s;
  animation-delay: calc(var(--i) * 0.3s);
  animation-fill-mode: forwards;
  opacity: 0;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.course-card h3 {
  font-size: 2.1em;
  color: #800080;
  margin-bottom: 8px;
}

.course-card .tagline {
  font-size: 14px;
  color: #666;
  margin-bottom: 6px;
}

.course-card .duration {
  font-size: 13px;
  color: #444;
  margin-bottom: 15px;
}


.view-btn {
  width: auto;
  display: inline-block;
  background: linear-gradient(135deg, #800080, #b300b3);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(128, 0, 128, 0.2);
  transition: 0.3s;
}

.view-btn:hover {
  background: linear-gradient(135deg, #5a005a, #800080);
  box-shadow: 0 6px 14px rgba(128, 0, 128, 0.3);
}


@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modal background */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

/* Modal box */
.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 100vw;
  max-width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease;
}

.modal-content .seat{
  background-color: #05a83c;
  font-size: 1.2em;
  color: white;
  font-weight: 600;
  display: inline-flex;     
  align-items: center; 
  justify-content: center;     
  padding: 10px 20px;      
  border-radius: 30px;
  text-decoration: none;
  gap: 8px;                 
  white-space: normal; 
  width: auto;
  margin-top: 15px;
}

.seat:hover{
  border:none;
  background-color: #006600;
}

.modal h2 {
  color: #ca12bb;
  font-size: 1.9em;
}

/* Close button */
.close {
  float: right;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}

/* Small fade animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

marquee {
  width: 100vw;
}

marquee p {
  font-size: 1.5em;
}



.about-page {
  display: flex;
  flex-wrap: wrap;
}

.about-box {
  margin-bottom: 10px;
  align-self: center;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 30px;
  width: 95vw;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-radius: 23px;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.15),
    0 6px 6px rgba(0, 0, 0, 0.10),
    inset 0 2px 4px rgba(255, 255, 255, 0.6);

  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: fade-in 2s ease-out forwards;
}

.about-box:hover {
  transform: translateY(-5px);
  box-shadow:
    0 15px 25px rgba(0, 0, 0, 0.20),
    0 8px 8px rgba(0, 0, 0, 0.10),
    inset 0 2px 6px rgba(255, 255, 255, 0.7);
}

.image img {
  margin-top: 25px;
  width: clamp(200px, 20vw, 300px);
  height: auto;
  object-fit: cover;
  border-radius: 15px;
}


.caption {
  text-align: center;
  color: #555;
  font-size: 0.8em;
  font-style: italic;
}

.about-center p.faculty {
  font-size: 0.8em;
  color: #948f8f;
  font-style: italic;
}

.about-center p.laptop {
  font-size: 0.8em;
  color: #948f8f;
  font-style: italic;
  float: right;
}

.about-center {
  margin-top: 25px;
  align-self: flex-start;
}

.about-center h2 {
  color: #8e44ad;
  font-size: 2em;
}

.about-center p {
  line-height: 30px;
  color: #535050;
  margin-top: 10px;
  font-size: 1.1em;
}

.about-laptop h2 {
  margin-left: 50px;
  font-size: 5em;
  text-align: center;
  color: #8e44ad;
}

.about-laptop h3 {
  margin-top: 25px;
  margin-bottom: 15px;
  margin-left: 20px;
  font-size: 1.5em;
  color: #8e44ad;
}

.about-laptop li {
  margin-left: 10px;
  font-size: 1.1em;
  color: #535050;
}

.laptop-image img {
  margin-left: 200px;
  margin-top: 25px;
  width: 60vw;
  height: auto;
  object-fit: cover;
}

.about-laptop p {
  line-height: 42px;
  margin-top: 50px;
  margin-left: 10px;
  font-size: 1.2em;
  color: #646161;
}



.faculty-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px;
  background: #f8f9fa;
}


.center-director-box {
  text-align: center;
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 500px;
  margin-bottom: 40px;
  transition: transform 0.3s;
}

.center-director-box:hover {
  transform: translateY(-5px);
}

.center-director-box img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}


.faculty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 900px;
}


.faculty-box {
  text-align: center;
  background: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.faculty-box:hover {
  transform: translateY(-5px);
}

.faculty-box img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .faculty-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .center-director-box {
    width: 100%;
  }
}


.practice-container p {
  margin-top: 5px;
}


.steps {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background: linear-gradient(145deg, #ffffff, #f9f9f9);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}


.steps iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}


.steps h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  text-align: center;
  color: #222;
}

.steps p {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 20px;
  color: #555;
}

.steps ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.steps ol li {
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.6;
}

.steps code {
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 6px;
  font-family: monospace;
  font-size: 0.95rem;
  color: #2563eb;
}


.steps h3 {
  margin-top: 20px;
  font-size: 1.3rem;
  color: #222;
}


#diploma-input {
  margin-bottom: -20px;
  animation: popdown 0.6s ease-out forwards;
}

#diploma-button {
  margin-top: 20px;
  animation: popdown 0.6s ease-out forwards;
}



footer p {
  margin-bottom: 5px;
  font-size: 0.9em;
  font-style: italic;
  color: #5e5b5b;
}

footer {
  position: relative;
  margin-top: auto;
  background: white;
  color: #313030;
  width: 100%;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.15);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 30px 60px;
  font-family: Arial, sans-serif;
  align-items: center;
}

.footer-left {
  text-align: left;
}

.footer-left p {
  margin: 4px 0;
  font-size: 14px;
}

.footer-left a {
  color: #9b59b6;
  text-decoration: none;
  font-weight: bold;
}

.footer-left a:hover {
  text-decoration: underline;
}


.footer-center {
  text-align: center;
}

.footer-center h4 {
  margin-bottom: 8px;
  font-size: 16px;
  color: #161616;
}

.footer-center p {
  margin: 4px 0;
  font-size: 14px;
}


.footer-right {
  text-align: right;
}

.footer-social {
  display: inline-flex;
  gap: 15px;
}

.footer-social a {
  font-size: 18px;
  color: black;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #9b59b6;
  transform: scale(1.2);
}




@media (max-width: 900px) {
  footer {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    padding: 20px 30px;
  }

  .footer-left {
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }
}

@media (max-width: 600px) {
  footer {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-social a {
    font-size: 20px;
  }
}

@media (max-width: 720px) {
  .about-laptop h2 {
    margin-left: 35px;
  }

  .laptop-image img {
    margin-left: 100px;
  }
}

@media (max-width: 400px) {
  .about-laptop h2 {
    margin-left: 10px;
  }

  .laptop-image img {
    margin-left: 50px;
  }
}

@keyframes popup {
  from {
    opacity: 0;
    transform: translateY(500px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes popdown {
  from {
    opacity: 0;
    transform: translateY(-500px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes left-slide {
  from {
    opacity: 0;
    transform: translateX(500px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.promo {
  margin-top: 5px;
  font-size: 1.2em;
}


.form {
  margin: 50px auto;
  width: 70vw;
  max-width: 600px;
  background-color: rgb(247, 242, 242);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.form h2 {
  text-align: center;
  color: #7a1cac;
}

.form marquee {
  width: 100%;
}

.deadline {
  color: #8e44ad;
}

.form label {
  display: block;
  margin-bottom: 5px;
  font-size: 1em;
  font-weight: bold;
  color: #4a0566;
}

.form select {
  width: 100%;
  box-shadow: none;
  border: 1px solid #ccc;
}

.form input[type="text"],
.form input[type="tel"],
.form textarea {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
}

.form input:focus,
textarea:focus {
  outline: none;
  border: 2px solid #161616;
}

.form input[type="submit"] {
  width: 100%;
  padding: 10px;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
}

.form input[type="submit"]:hover {
  background-color: #ddd;
}


.info {
  margin: 40px auto;
  width: 90%;
  max-width: 1000px;
  background-color: rgb(247, 242, 242);
  padding: 25px;
  padding-left: 50px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.info h2 {
  font-size: 5em;
  color: #7a1cac;

}

.info h3 {
  font-size: 1.3em;
  margin: 10px 0;
  color: #8e44ad;
}

.info h4 {
  font-size: 1.2em;
  margin-top: 30px;
  color: #333;
}


.info p {
  margin-top: 10px;
  line-height: 1.6;
  font-size: 1em;
  color: #444;
  text-align: justify;
}

.info ol {
  padding-left: 20px;
}

.info li {
  margin: 10px 0;
  font-size: 1em;
  line-height: 1.5;
  color: #555;
}


.win {
  text-align: center;
  margin-top: 20px;
}

.win h2 {
  font-size: 2em;
}

.emoji {
  font-size: 1.5em;
}

.win p {
  font-size: 1em;
  color: #333;
}


.win a,
.back-home {
  display: inline-block;
  margin: 10px 0;
  font-size: 1em;
  font-weight: 600;
  color: #7a1cac;
  text-decoration: none;
  border: 2px solid #7a1cac;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.win a:hover,
.back-home:hover {
  background: #7a1cac;
  color: #fff;
}

.win-para a {
  border: none;
  margin: 0px;
  padding: 0px;
}

.win-para a:hover {
  background: none;
  color: #4a0566;
}

.prizes-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  margin-top: 40px;
}

.prize {
  flex: 1 1 200px;
  max-width: 220px;
  min-width: 150px;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background: white;
  color: #333;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.prize:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.prize.first {
  height: 300px;
  background: linear-gradient(145deg, #ffe259, #ffa751);
}

.prize.second {
  height: 260px;
  background: linear-gradient(145deg, #e0e0e0, #cfcfcf);
}

.prize.third {
  height: 220px;
  background: linear-gradient(145deg, #d1913c, #ffd194);
}

.prize h2 {
  font-size: 1.1rem;
  margin: 0;
  color: #222;
}

.prize p {
  margin-left: 15px;
  text-align: center;
  font-size: 1.5rem;
  margin-top: 10px;
  color: #333;
  line-height: 1.4;
  font-weight: bold;
}

.prize img {
  margin-top: 25px;
  width: 80%;
  height: 60%;
}

#timg {
  margin-top: -15px;
  height: 80%;
}

@media (max-width: 992px) {
  .info {
    width: 95%;
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .info h2 {
    font-size: 1.6em;
  }

  .info h3 {
    font-size: 1.1em;
  }

  .prizes-container {
    flex-direction: column;
    align-items: center;
  }

  .prize {
    width: 80%;
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .info {
    padding: 10px;
  }

  .info h2 {
    font-size: 1.9em;
  }

  .win h2 {
    font-size: 1.4em;
  }

  .info h3 {
    font-size: 1em;
  }

  .info li {
    font-size: 0.9em;
  }

  .win a {
    font-size: 0.9em;
    padding: 5px 10px;
  }
}


#result {
  margin-top: 20px;
  font-weight: bold;
}

.shop {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  margin: 0;
  padding: 0;
}

.store-header {
  text-align: center;
  padding: 2rem;
  background: #eee;
  color: #4B0082;
  /* matches your purple */
}

.shop select {
  width: auto;
  padding-right: 1px;
}

.filter-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 1rem 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  display: none;
}

.product-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  border-radius: 8px;
  height: 50%;
  margin-top: 5px;
}

.product-card h3 {
  margin: 0.5rem 0;
  color: #333;
}

.product-card p {
  font-size: 0.9rem;
  color: #555;
}

.price {
  margin: 0.5rem 0;
}

.price .old {
  text-decoration: line-through;
  color: #888;
  margin-right: 8px;
}

.price .new {
  color: #4B0082;
  font-weight: bold;
}

.emi {
  color: #444;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.shop button {
  width: auto;
  background: green;
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.shop button i {
  margin-right: 5px;
  padding-right: 5px;
  border-right: 1px solid whitesmoke;
}

.shop button:hover {
  background: #36005c;
}

.shop h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.store-header .toggle-container {
  background: none;
  margin-bottom: -15px;
}

.shop-loader {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 30px auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


.events-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  padding: 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('images/events-background.webp') center/cover no-repeat;
  color: white;
}

.events-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  line-height: 1.2;
}


.events-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* 🔹 Tablet (below 768px) */
@media (max-width: 768px) {
  .events-hero h1 {
    font-size: 2.2rem;
  }

  .events-hero p {
    font-size: 1rem;
    padding: 0 15px;
  }
}

/* 🔹 Mobile (below 480px) */
@media (max-width: 480px) {
  .events-hero h1 {
    font-size: 1.8rem;
  }

  .events-hero p {
    font-size: 0.9rem;
    padding: 0 10px;
  }
}

.events-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.events-class {
  padding: 60px 20px;
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.events-class h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
}


.events-class p {
  position: relative;
  padding: 20px 20px 20px 50px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.events-class p:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* Emoji or icon marker */
.events-class p::before {
  content: "🎉";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

.event-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  margin: 20px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.event-date {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: #4B0082;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 20px;
}

.event-date.past {
  background: #6c757d;

}

.event-date .day {
  font-size: 1.5rem;
}

.event-date .month {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.event-info h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  color: #333;
}

.event-info p {
  margin: 0 0 15px;
  color: #555;
  font-size: 0.95rem;
}

.event-btn {
  display: inline-block;
  padding: 8px 16px;
  background: #4B0082;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.event-btn:hover {
  background: #360062;
}


.form-box {
  background: linear-gradient(180deg, #ffffff, #f3ecff);
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 350px;
}

.form-box h2 {
  margin-bottom: 20px;
  color: #4B0082;
  font-size: 2em;
}

.form-box label {
  display: block;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.form-box select {
  margin-bottom: 15px;
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  transition: border 0.2s;
}

.form-box select:focus {
  border-color: #800080;
  /* purple border on focus */
  outline: none;
}

.form-box button {
  margin-top: 10px;
  padding: 14px;
  width: 100%;
  border-radius: 8px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  background: linear-gradient(135deg, #800080, #A020F0);
  color: white;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.form-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(128, 0, 128, 0.3);
}

@media (max-width: 600px) {
  .form-box {
    padding: 20px;
    border-radius: 10px;
  }

  .form-box h2 {
    font-size: 1.2rem;
  }

  .form-box select,
  .form-box button {
    font-size: 14px;
    padding: 10px;
  }
}

select:disabled {
  background-color: #e0e0e0;
  color: #666;
  cursor: not-allowed;
  opacity: 1;
}

.form-box button.disabled {
  background: #ccc !important;
  color: #666 !important;
  cursor: not-allowed !important;
  opacity: 0.5 !important;
}


.wrapper-fees{
  margin-top: -50px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  justify-items: center;
  height: 100vh;
}

.options{
  background-color: #dde2dd;
  padding: 20px;
  border-radius: 10px;
  width: 90vw;
  text-align: center;
}

.options h2{
  margin-bottom: 10px;
  font-size: 1.85em;
}

.options button{
  width: clamp(200px,20vw,400px);
  margin-bottom: 5px;
  font-size: 1.2em;
  border: 2px solid black;
}

.options button:hover{
  background-color: black;
  color:whitesmoke;
  cursor: pointer;
}