body {
  font-family: 'Noto Sans JP', sans-serif;
}

.font-poppins {
  font-family: 'Poppins', sans-serif;
}

.font-archivo {
  font-family: 'Archivo Black', sans-serif;
}

.font-noto-serif {
  font-family: 'Noto Serif JP', serif;
  ;
}

.nav-bg {
  background-color: #144F95;
}

:root {
  --background: #ffffff;
  --foreground: #171717;
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --font-sans: var(--font-geist-sans);
  --font-mono: var(--font-geist-mono);
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0a0a0a;
    --foreground: #ededed;
  }
}

body {
  background: #fff;
  color: var(--foreground);
}

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

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

.animate-marquee {
  animation: marquee 20s linear infinite;
}

@keyframes fade-up {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.animate-fade-up {
  animation: fade-up 0.6s ease-out forwards;
}

/* Optional: staggered delay classes */
.animate-delay-0 {
  animation-delay: 0ms;
}

.animate-delay-100 {
  animation-delay: 100ms;
}

.animate-delay-200 {
  animation-delay: 200ms;
}

.animate-delay-300 {
  animation-delay: 300ms;
}

.animate-delay-400 {
  animation-delay: 400ms;
}

.animate-delay-500 {
  animation-delay: 500ms;
}

.animate-delay-600 {
  animation-delay: 600ms;
}

.animate-delay-700 {
  animation-delay: 700ms;
}

.animate-delay-800 {
  animation-delay: 800ms;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

html {
  scroll-behavior: smooth;
}

#about {
  scroll-margin-top: 100px;
}

.modal-back {
  background-color: #00000058;
}

#home {
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.animate-spin-slow {
  animation: spin-slow 10s linear infinite;
}

@keyframes gentle-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

.animate-gentle-bounce {
  animation: gentle-bounce 2.5s ease-in-out infinite;
}

@keyframes floatUpDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatLeftRight {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(15px);
  }
}

.animate-float-updown {
  animation: floatUpDown 4s ease-in-out infinite;
}

.animate-float-leftright {
  animation: floatLeftRight 5s ease-in-out infinite;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 1s ease-out forwards;
}


@keyframes fade-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in {
  animation: fade-in 0.3s ease-out;
}

#imageModal {
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#modalImage {
  max-width: 90vw;
  /* Allow the image to fill up to 90% of the viewport width */
  max-height: 80vh;
  /* Allow the image to fill up to 80% of the viewport height */
  object-fit: contain;
  /* Maintain aspect ratio of the image */
}

@keyframes slideInRightBox {
  from {
    transform: translateX(120%) translateY(-50%);
    opacity: 0;
  }

  to {
    transform: translateX(0) translateY(-50%);
    opacity: 1;
  }
}

@keyframes clickHand {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(6px) scale(0.95);
  }
}

.animate-slide-in-box {
  animation: slideInRightBox 0.6s ease-out;
}

.hand-click-animation {
  animation: clickHand 1.2s infinite;
  font-size: 1.5rem;
}

.tab-shape {
  background: #144D97;
  color: white;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  clip-path: path("M0,30 C0,0 30,0 40,0 H160 C170,0 200,0 200,30 Q180,50 160,50 H40 Q20,50 0,30 Z");
  padding: 10px 40px;
}

@media screen and (min-width: 1536px) and (max-width: 1641px) {
  .offer {
    padding-top: 40rem;
  }

  .parag {
    padding-top: 6rem;
  }
}

@media screen and (min-width: 1642px) and (max-width: 1760px) {
  .offer {
    padding-top: 40rem;
  }

  .parag {
    padding-top: 5rem;
  }
}

@media screen and (min-width: 1760px) and (max-width: 2100px) {
  .offer {
    padding-top: 30rem;
  }

  .parag {
    padding-top: 5rem !important;
  }
}

@media screen and (min-width: 2101px) and (max-width: 1990px) {
  .offer {
    padding-top: 15rem !important;
  }

  .parag {
    padding-top: 10rem !important;
  }
}

@media screen and (min-width: 1991px) and (max-width: 2300px) {
  .offer {
    padding-top: 20rem !important;
  }

  .parag {
    padding-top: 10rem !important;
  }
}

@media screen and (min-width: 2300px) and (max-width: 2559px) {
  .offer {
    padding-top: 20rem !important;
  }

  .parag {
    padding-top: 5rem !important;
  }
}

@media screen and (min-width: 2560px) and (max-width: 2600px) {
  .offer {
    padding-top: 20rem !important;
  }

  .parag {
    padding-top: 2rem !important;
  }
}

@media screen and (min-width: 2601px) and (max-width: 2685px) {
  .offer {
    padding-top: 20rem !important;
  }

  .parag {
    padding-top: 2rem !important;
  }

  .gallery {
    margin-top: -10rem !important;
  }
}

.internship-container {
  max-width: 100%;
  padding: 1.5rem;
  margin: 0 auto;
}

@media (min-width: 1920px) {
  .internship-container {
    padding: 5rem;
    max-width: 1600px;
  }
}

@media (min-width: 2560px) {
  .internship-container {
    padding: 0rem;
    max-width: 2100px;

  }
}

@media (min-width: 3133px) {
  .internship-container {
    padding: 2rem;
    max-width: 2400px;
  }


}

@media (min-width: 3840px) {
  .internship-container {
    padding: 2rem;
    max-width: 2800px;
  }
}
.error {
  border: 2px solid red !important;
}
#selfIntro {
  width: 100%;
  min-height: 100px;
  resize: vertical;
  overflow-y: auto;
  word-wrap: break-word;
  white-space: pre-wrap;
  box-sizing: border-box;
}

#charCount {
  margin-top: 5px;
  font-size: 14px;
  color: #555;
}
.no-scroll {
  overflow: hidden;
}
@media (min-width: 1024px) {
  .global {
    font-size: 90px;
  }
  .grow {
    font-size: 90px;
  }


}


