@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  src: url("../font-family/Montserrat-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "NotoSerif";
  src: url("../font-family/NotoSerif_Condensed-Regular.ttf") format("truetype");
}
/* for h2 and h3 */
/* for list before symbol */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  opacity: 0;
  transition: opacity 0.6s ease forwards;
}

body.page-show {
  opacity: 1;
}

/* Intro-screen */
.intro-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to bottom, #016795, #096C6C, #326872);
  z-index: 99999;
  overflow: hidden;
  transform-origin: top;
  transition: opacity 0.5s ease;
}

.intro-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.intro-screen.animate {
  animation: curtainOpen 2s ease forwards;
}

.intro-screen.hide {
  opacity: 0;
  pointer-events: none;
}

@keyframes curtainOpen {
  0% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(0);
  }
}
/* Navbar section */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 30px 0px 30px;
  font-family: "Montserrat";
  position: relative;
  z-index: 1000;
}

.logo {
  position: relative;
  width: 300px;
}

.logo-text {
  position: absolute;
  top: -30px;
  bottom: 20px;
  display: flex;
  gap: 4px;
  font-family: "NotoSerif";
  color: #EEB04D;
  font-size: 2rem;
  font-weight: 600;
  z-index: 1000;
}

.logo-text span {
  opacity: 0;
  transform: translateY(60px);
  animation: fluteText 3s infinite;
}

.logo-text .space {
  display: inline-block;
  width: 12px;
}

@keyframes fluteText {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.5);
  }
  30% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  80% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-40px);
  }
}
.logo-text span:nth-child(1) {
  animation-delay: 0.3s;
}

.logo-text span:nth-child(2) {
  animation-delay: 0.4s;
}

.logo-text span:nth-child(3) {
  animation-delay: 0.5s;
}

.logo-text span:nth-child(4) {
  animation-delay: 0.6s;
}

.logo-text span:nth-child(5) {
  animation-delay: 0.7s;
}

.logo-text span:nth-child(6) {
  animation-delay: 0.8s;
}

.logo-text span:nth-child(8) {
  animation-delay: 1.1s;
}

.logo-text span:nth-child(9) {
  animation-delay: 1.2s;
}

.logo-text span:nth-child(10) {
  animation-delay: 1.3s;
}

.logo-text span:nth-child(11) {
  animation-delay: 1.4s;
}

.logo-text span:nth-child(12) {
  animation-delay: 1.5s;
}

.logo-text span:nth-child(13) {
  animation-delay: 1.6s;
}

.logo-text span:nth-child(14) {
  animation-delay: 1.7s;
}

.logo-img {
  width: 300px;
  height: auto;
  background: transparent;
  mix-blend-mode: multiply;
}

.motto-text {
  text-align: center;
  font-size: 1rem;
  padding: 5px;
  font-family: "NotoSerif";
  border-top: 1px solid #EEB04D;
}

.motto-text .icon {
  display: inline-block;
  animation: floatIcon 2s ease-in-out infinite;
  filter: drop-shadow(0 0 5px rgba(255, 200, 0, 0.6));
}

@keyframes floatIcon {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.1);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
.icon:nth-of-type(1) {
  animation-delay: 0s;
}

.icon:nth-of-type(2) {
  animation-delay: 0.5s;
}

.icon:nth-of-type(3) {
  animation-delay: 1s;
}

.motto-text .space {
  display: inline-block;
  width: 10px;
}

/* For small device (navbar with menubar) for desktop its none */
.menu-toggle {
  display: none;
}

.menu-toggle img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(78%) saturate(2213%) hue-rotate(170deg) brightness(90%) contrast(101%);
  transition: transform 0.3s ease;
  color: #016795 !important;
}

.menu-toggle img:hover {
  transform: scale(1.1);
}

/* Desktop navbar */
.main-nav {
  list-style-type: none;
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}

/* On hover flute image */
.main-nav li {
  position: relative;
}

.main-nav li::after {
  position: absolute;
  content: "";
  background: url("../assets/gallery/krishna-flute-logo.svg") no-repeat center;
  background-size: contain;
  width: 100px;
  height: 80px;
  left: -20px;
  top: 10px;
  opacity: 0;
  transition: 0.3s ease;
  pointer-events: none;
}

.main-nav li:hover::after {
  opacity: 1;
}

.main-nav li:hover a {
  color: #10C2C2;
  border-color: #10C2C2;
}

.main-nav li a {
  background-color: #016795;
  font-size: 1.5rem;
  padding: 1rem 0.8rem;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  display: block;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.dropdown {
  position: relative;
}

.sub-nav {
  position: absolute;
  top: 100%;
  left: 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 10px 0;
  gap: 0.1rem;
  display: none;
  z-index: 9999;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.sub-nav li a {
  white-space: nowrap;
}

.dropdown:hover .sub-nav {
  display: flex;
  transform: translateY(0);
}

/* hiding sm-navbar */
.sm-navbar {
  display: none;
}

/* Animation of a school boy */
.boy-animation {
  position: relative;
  background: url("../assets/gallery/littlekrishnaSchool.svg") no-repeat center;
  background-size: cover;
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.boy {
  position: absolute;
  width: 160px;
  bottom: 0;
  display: block;
}

.happy {
  animation: goSchool 10s linear infinite;
}

@keyframes goSchool {
  0% {
    left: -120px;
  }
  100% {
    left: 40%;
  }
}
/* Welcome note */
.welcome {
  padding: 20px;
}

.welcome h2 {
  font-size: 32px;
  color: #B93943;
  letter-spacing: 4px;
  font-family: "NotoSerif";
  text-align: center;
  text-decoration: underline;
}

.welcome p {
  font-family: "Montserrat";
  color: #EEB04D;
  text-align: center;
  font-size: 28px;
}

/* Main Content */
.home-container {
  position: relative;
  z-index: 1;
}

.zigzag {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 12px;
  padding: 60px 30px;
  margin: 30px 0px;
}

.reverse {
  flex-direction: row-reverse;
}

.zig-img {
  flex: 1 1 60%;
  perspective: 1000px;
  border-radius: 25px;
  max-width: 200px;
  height: 100px;
  margin: auto;
  position: relative;
  flex: 1 1 60%;
}

.carousel {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transition: transform 1s ease-in-out;
}

.carousel img {
  position: absolute;
  width: 200px;
  height: 150px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-top: 10px solid orange;
  border-left: 10px solid orange;
  border-radius: 25px;
  object-fit: cover;
  transition: transform 1s, opacity 0.5s;
}

.zig-text {
  flex: 1 1 30%;
  max-width: 500px;
  opacity: 0.2;
  transform: translateY(50px);
  transition-delay: 0.3s;
  transition: 0.8s ease;
}

.zig-text ul {
  list-style-type: none;
  padding-left: 0;
}

.zig-text ul li {
  position: relative;
  padding-left: 28px;
  line-height: 1.2;
}

.programs ul li::before {
  content: "🎓";
  position: absolute;
  top: 0px;
  left: 2px;
  font-size: 16px;
}

.highlights ul li::before {
  content: "⭐";
  position: absolute;
  top: 0px;
  left: 2px;
  font-size: 16px;
}

.zigzag h2 {
  font-size: 2.5rem;
  font-family: "NotoSerif";
  color: #016795;
}

.zigzag h3 {
  font-size: 28px;
  font-family: "NotoSerif";
  color: #016795;
}

.zigzag p,
ul li {
  font-size: 1.2rem;
  font-family: "Montserrat";
}

/* show class used in js*/
.show .zig-text,
.show .zig-img {
  transform: translateY(0);
  opacity: 1;
}

/* Hover effect on images */
.zig-img img:hover {
  transform: scale(1.05);
}

.zigzag::after {
  position: absolute;
  content: "";
  display: block;
  top: 100%;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(135deg, #10C2C2 25%, transparent 25%) -50px 0, linear-gradient(225deg, #10C2C2 25%, transparent 25%) -50px 0;
  background-size: 60px 40px;
}

.zig-text {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

/* Read Founder and Director message */
.zigzag .read-more {
  display: inline-block;
  text-decoration: none;
  font-size: 18px;
  font-family: "NotoSerif";
  color: #EEB04D;
  font-weight: 600;
  margin-left: 1.2rem;
  transition: all 0.5s ease;
}

.zigzag .read-more:hover {
  background-color: #096C6C;
  padding: 12px 20px;
  border-radius: 12px;
}

.zigzag .view {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.zigzag .header-msg,
.zigzag .header-vis,
.zigzag .header-mis {
  color: #EEB04D;
  text-decoration: underline;
  font-size: 28px;
  font-family: "NotoSerif";
}

/* Footer */
.footer {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  color: #fff;
  font-family: "Montserrat";
  width: 100%;
  min-height: 400px;
  font-size: 20px;
  padding: 40px 60px;
  margin-top: 40px;
  background: linear-gradient(135deg, #016795 10%, #10C2C2 55%, #096C6C 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact .website {
  font-size: 22px;
  display: flex;
  gap: 12px;
  color: #fff;
}

.footer .contact-links {
  display: flex;
  gap: 10px;
}

.footer .contact-links img {
  filter: brightness(0) invert(1);
}

.footer .shortover-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer .shortover-links ul li {
  list-style-type: none;
}

.footer .shortover-links ul li a {
  font-size: 20px;
  color: #fff;
}

.footer .shortover-links .branches {
  margin-top: 10px;
  padding-left: 20px;
  display: flex;
}

.copyright {
  background-color: #fff;
  opacity: 0.8;
  padding: 20px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat";
  font-size: 14px;
}

.copyright .flute-icon {
  width: 80px;
  height: auto;
  animation: floatFlute 2s ease-in-out infinite;
}

.copyright .blog {
  display: inline-block;
  text-decoration: none;
  color: #10C2C2;
  transition: all 0.5s ease;
}

.copyright .blog:hover {
  text-decoration: underline;
  transform: scale(1.02);
}

/* small floating animation(for flute in copyright) */
@keyframes floatFlute {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
/* Floating-left & Floating-right */
.floating-left {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
  z-index: 9999;
}

.floating-right {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 9999;
}

.floating-center {
  position: fixed;
  bottom: 20px;
  left: 50%;
  z-index: 9999;
}

.floating-left a,
.floating-right a,
.floating-center a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  /* Glass effect */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: floatBtn 1.5s ease-in-out infinite;
}

@keyframes floatBtn {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.whatsapp-btn img {
  width: 30px;
  height: 30px;
}

.floating-left a:hover,
.floating-right a:hover,
.floating-center a:hover {
  transform: scale(1.1);
  background-color: #096C6C;
}

/* Media Queries */
/* For .zigzag class */
@media only screen and (max-width: 1250px) {
  .zigzag {
    padding: 120px 30px;
  }
  .zig-img {
    perspective: 1500px;
    flex: 1 1 100%;
  }
  .zig-text {
    flex: 1 1 100%;
  }
  .home-container .zigzag {
    flex-direction: column;
    gap: 120px;
  }
}
@media only screen and (max-width: 1090px) {
  .footer .contact-links img {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 1020px) {
  .logo {
    max-width: 250px;
  }
  .boy {
    width: 140px;
  }
  .logo-img {
    width: 220px;
    height: auto;
  }
  .logo-text span {
    font-size: 20px;
  }
  .main-nav li a {
    font-size: 1.2rem;
  }
  .zigzag .zig-text h2 {
    font-size: 32px;
  }
  .zigzag .zig-text h3 {
    font-size: 28px;
  }
  .zigzag .zig-text p {
    font-size: 18px;
  }
}
@media only screen and (max-width: 970px) {
  .footer {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    text-align: left;
    align-items: center;
  }
  .footer > div {
    width: 80%;
    max-width: 400px;
    padding-left: 20px;
  }
}
@media (min-width: 921px) {
  .sm-navbar {
    display: none !important;
  }
}
@media only screen and (max-width: 920px) {
  .navbar {
    display: none;
  }
  nav {
    position: relative;
  }
  .menu-toggle {
    display: block;
  }
  .sm-navbar {
    position: static;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: none;
  }
  .sm-navbar .sm-main-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 0px;
    background: #016795;
  }
  .sm-navbar .sm-main-nav li {
    list-style-type: none;
    transform: translateY(-10px);
    opacity: 0;
    transition: 0.3s ease;
    padding: 10px 40px;
  }
  .sm-navbar.active li {
    opacity: 1;
    transform: translateY(0);
    transition: 0.4s ease;
  }
  .sm-navbar.active li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .sm-navbar.active li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .sm-navbar.active li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .sm-navbar.active li:nth-child(4) {
    transition-delay: 0.4s;
  }
  .sm-navbar .sm-main-nav li a {
    text-decoration: none;
    color: #fff;
  }
  .sm-navbar .sm-main-nav li {
    transition: all 0.5s ease;
  }
  .sm-main-nav li,
  .sm-sub-nav li {
    position: relative;
    padding: 12px 0px;
  }
  .sm-main-nav li::after {
    position: absolute;
    content: "";
    background: url("../assets/gallery/krishna-flute-logo.svg") no-repeat center;
    background-size: contain;
    width: 100px;
    height: 50px;
    left: 10px;
    top: 10px;
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
  }
  .sm-main-nav li:hover::after {
    opacity: 1;
  }
  .sm-main-nav li:hover a {
    color: #10C2C2;
    border: 3px solid #10C2C2;
    padding: 10px 12px;
    border-radius: 15px;
    transition: 0.5s ease;
  }
  .sm-dropdown {
    position: relative;
  }
  .sm-dropdown {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .sm-sub-nav {
    display: none;
  }
  .sm-dropdown:hover .sm-sub-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .copyright {
    flex-direction: column;
    padding: 20px 120px;
  }
}
@media only screen and (max-width: 750px) {
  .zigzag {
    padding: 0px 20px 0px 20px;
  }
  .zig-img {
    perspective: none;
    max-width: 100%;
    height: 250px;
  }
  .carousel {
    position: relative;
    transform: none !important;
  }
  .carousel img {
    transform: none !important;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  .carousel img.appear {
    opacity: 1;
  }
}
@media only screen and (max-width: 680px) {
  .copyright {
    flex-direction: column;
  }
}
@media only screen and (max-width: 620px) {
  .welcome h2 {
    font-size: 30px;
  }
  .welcome p {
    font-size: 24px;
  }
  .boy {
    width: 120px;
  }
  .floating-center {
    margin-bottom: 60px;
  }
}

/*# sourceMappingURL=index.css.map */
