@font-face {
  font-family: "Rockville";
  src: url("../fonts/Rockville_Solid.woff") format("woff");
}

@font-face {
  font-family: "Modak";
  src: url("../fonts/modak2.woff2") format("woff2"),
    url("../fonts/modak.woff") format("woff");
}

@font-face {
  font-family: "Noto Sans";
  src: url("../fonts/notosans.woff") format("woff"),
    url("../fonts/notosans2.woff2") format("woff2");
}

@font-face {
  font-family: "delius";
  src: url("../fonts/delius.woff") format("woff"),
    url("../fonts/delius2.woff2") format("woff2");
}

/* =========================================================================================================
                                        COMMON CSS STARTS HERE
============================================================================================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans", sans-serif;
  background-color: #fff;
  color: #626262;
  overflow-x: hidden;
  user-select: none;
}

a {
  text-decoration: none;
}

p {
  line-height: 1.5;
}

ul {
  list-style: none;
}

img {
  width: 100%;
}

section {
  width: 100%;
  float: left;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.Custom-txt {
  color: #306cc5;
  font-family: "Delius";
}

.social_links {
  width: 60px;
  position: fixed;
  z-index: 9;
  top: 50%;
  right: -100%;
  transform: translateY(-50%);
  background: linear-gradient(45deg, #ffb100, #039ecd);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  transition: 1s ease all;
  border-radius: 10px;
}

.social_links ul li a {
  font-size: 35px;
  color: #fff;
  display: inline-block;
  transition: 0.3s;
}

.social_links ul li a:hover {
  transform: scale(1.2);
}

/* =========================================================================================================
                                        COMMON CSS ENDS HERE
============================================================================================================ */

/* =========================================================================================================
                                        HEADER CSS STARTS HERE
============================================================================================================ */

.pre-loader {
  width: 100%;
  height: 100%;
  background: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: #ccc;
  cursor: pointer;
  transition: 0.3s linear;
}

.loading_bar {
  width: 100%;
  height: 10px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  max-width: 500px;
  border: 2px solid #306cc5;
  border-radius: 10px;
  margin-bottom: 30px;
}

.loading_bar::before {
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.15);

  z-index: 10;
}

.loading_bar::after {
  content: "";
  width: 0%;
  height: 100%;
  background-color: #306cc5;
  position: absolute;
  border-radius: 0 4px 4px 0;
  top: 0;
  left: 0;
  -webkit-animation: animFw 10s ease-in infinite;
  animation: animFw 10s ease-in infinite;
}

.pre-loader span {
  font-size: 50px;
  color: #666666;
  font-family: "Rockville";
  font-weight: 400;
}

.anim-text ul {
  display: flex;
  align-items: center;
  margin-bottom: 13px;
}

.anim-text ul li {
  font-size: 54px;
  font-family: "Modak", sans-serif;
  font-weight: 500;
  margin: 0 4px;
  display: inline-block;
  transform: scale(1);
  animation: textZoom 800ms ease-in-out infinite;
  color: #306cc5;
}

/* Add delays for wave effect */
.anim-text ul li:nth-child(1) {
  animation-delay: 0ms;
}
.anim-text ul li:nth-child(2) {
  animation-delay: 400ms;
}
.anim-text ul li:nth-child(3) {
  animation-delay: 600ms;
}
.anim-text ul li:nth-child(4) {
  animation-delay: 800ms;
}
.anim-text ul li:nth-child(5) {
  animation-delay: 1000ms;
}
.anim-text ul li:nth-child(6) {
  animation-delay: 1200ms;
}

.anim-text ul li:nth-child(8) {
  animation-delay: 1400ms;
}
.anim-text ul li:nth-child(9) {
  animation-delay: 1600ms;
}
.anim-text ul li:nth-child(10) {
  animation-delay: 1800ms;
}
.anim-text ul li:nth-child(11) {
  animation-delay: 2000ms;
}
.anim-text ul li:nth-child(12) {
  animation-delay: 2200ms;
}

/* ======================================= LOADER CSS END ================================================== */

.mobile_nav {
  width: 100%;
  height: 100vh;
  background: linear-gradient(45deg, #26003b, #295f9c);
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  backdrop-filter: blur(10px) !important;
  clip-path: circle(20px at 50%);
  visibility: hidden;
  transition: 0.5s;
}

.mobile_nav ul {
  width: 100%;
  float: left;
}

.mobile_nav ul li {
  padding: 10px 0;
}

.mobile_nav ul li a {
  font-size: 40px;
  font-family: "delius";
  color: transparent;
  background-image: linear-gradient(135deg, #ffb100, #039ecd);
  background-clip: text;
}

.toggle_btn {
  width: auto;
  float: left;
  display: none;
  cursor: pointer;
  position: relative;
  z-index: 999;
}

span.top,
span.bottom,
span.middle {
  width: 35px;
  height: 4px;
  background: linear-gradient(135deg, #ffb100, #039ecd);
  display: block;
  border-radius: 10px;
  margin-bottom: 4px;
  transition: 0.5s;
}
span.middle {
  width: 25px;
}

#headerMain {
  width: 100%;
  background: transparent;
  padding: 10px 0;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  position: absolute;
  top:0;
  left:0;
  transition: all 0.3s ease;
  z-index: 10;
}

#headerMain.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 0 10px #26003b;
  padding: 10px 0;
  animation: slideDown 0.8s ease forwards;
  background: linear-gradient(45deg, #26003b, #295f9c);
  backdrop-filter: blur(25px);
}

.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

ul.nav_left,
ul.nav_right {
  width: auto;
  display: flex;
  align-items: center;
}

ul.nav_left li,
ul.nav_right li {
  margin: 0 5px;
  padding: 10px 15px;
}

.sticky-header ul.nav_left li,
.sticky-header ul.nav_right li {
  padding: 0 15px;
}

ul.nav_left li a,
ul.nav_right li a {
  font-size: 23px;
  color: transparent;
  background-image: linear-gradient(135deg, #ffb100, #039ecd);
  background-clip: text;
  font-family: "delius";
  font-weight: bold;
  text-shadow: -3px 1px 0px #ffffff;
}

.sticky-header ul.nav_left li a,
.sticky-header ul.nav_right li a {
  text-shadow: none;
}

.logo {
  position: relative;
  z-index: 99;
}
.logo a {
  font-size: 40px;
  font-family: "Modak", system-ui;
  display: inline-block;
  position: relative;
  color: transparent;
  line-height: 0.8;
  background-image: linear-gradient(135deg, #ffb100, #039ecd);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  overflow: hidden;
  margin-top: 10px;
}

.logo a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 30%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: text-shine 2.5s 10s infinite;
}

/* =========================================================================================================
                                        HEADER CSS ENDS HERE
============================================================================================================ */

/* =========================================================================================================
                                        BANNER CSS STARTS HERE
============================================================================================================ */

.banner-main {
  width: 100%;
  float: left;
  background: url("../images/bg-3.jpg") center no-repeat;
  background-size: cover;
  overflow: hidden;
}

.banner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 75px;
  flex-wrap: wrap;
}

.left_part {
  width: 50%;
  float: left;
}

span.sub-title {
  font-size: 35px;
  font-weight: 500;
  color: #b32b3e;
  letter-spacing: 5px;
  font-family: "Delius", cursive;
}

h1.title {
  font-family: "Rockville";
  font-size: 110px;
  font-weight: normal;
  text-shadow: 0 0 10px #c21c1c;
  color: #306cc5;
  animation: txtGlow 1s linear infinite;
}

.typwritter {
  width: 100%;
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.typwritter span {
  letter-spacing: 5px;
  font-size: 35px;
  font-family: "rockville";
  margin-right: 15px;
  color: #b32b3e;
  font-weight: bold;
  height: calc(100%-300px);
}

.typwritter .text,
span.typed-cursor {
  font-size: 35px;
  color: #bf0897;
  font-family: "rockville";
  letter-spacing: 10px;
}

.right_part {
  float: right;
  width: 45%;
}

.shwetaImg {
  width: 100%;
  float: right;
  max-width: 515px;
  height: auto;
  margin-bottom: -5px;
}

.shwetaImg img {
  width: 100%;
  height: 100%;
}

.desktop_img {
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb100, transparent);
  padding-top: 20px;
  margin-bottom: 14px;
}

/* =========================================================================================================
                                        BANNER CSS ENDS HERE
============================================================================================================ */

/* =========================================================================================================
                                        TRACK CSS STARTS HERE
============================================================================================================ */

.track-sec {
  width: 100%;
  float: left;
  padding: 90px 0;
  /* border-bottom: 1px solid #e7e7e7; */
  position: relative;
}

.section-title {
  margin-bottom: 40px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.section-title h2 {
  text-align: center;
  font-size: 42px;
  color: #306cc5;
  font-weight: 700;
  display: inline-block;
  text-transform: uppercase;
  font-family: "delius", cursive;
}

.section-title p {
  font-size: 100px;
  color: #e8e8e8;
  font-family: "Rockville";
  position: absolute;
  left: 0;
  top: -70px;
  width: 100%;
  z-index: -1;
}

.player-wrapper {
  width: 100%;
  float: left;
  position: relative;
  margin-top: 140px;
}

.player__bar {
  border: 1px solid #ddd;
}

.player #playhead {
  background: #6da8ff;
}

.icon {
  fill: #306cc5;
}

.player__timeline {
  background-color: #306cc5;
}

.player__author {
  color: #fff;
}

.player__song {
  color: #d7d7d7;
}

.about-track {
  width: 100%;
  float: left;
  text-align: center;
  margin-top: 110px;
}

.about-track h2 {
  margin-bottom: 16px;
  color: #306cc5;
  font-family: delius;
  font-size: 34px;
}

/* =========================================================================================================
                                        TRACK CSS END HERE
============================================================================================================ */

/* =========================================================================================================
                                        BIOGRAPHY CSS STARTS HERE
============================================================================================================ */

.biography-sec {
  width: 100%;
  float: left;
  padding: 90px 0;
  position: relative;
  overflow-x: hidden;
}

.bio_main {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-top: 90px;
  position: relative;
  flex-wrap: wrap;
}

.bio_description {
  width: 100%;
  margin-top: 80px;
  order: 2;
}

.bio_description p {
  margin-bottom: 25px;
}

.bio_description ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.bio_description ul li {
  margin: 10px 0;
  position: relative;
  font-family: "Delius";
  width: 45%;
  margin-left: 5%;
}

.bio_description ul li::before {
  content: "";
  width: 30px;
  height: 30px;
  background: url("../images/veena.png") no-repeat center / cover;
  position: absolute;
  left: -40px;
  top: -5px;
  border-radius: 50%;
}

.bio_image {
  width: 100%;
  display: inline-block;
  top: 100px;
}

.img-box {
  width: 100%;
  max-width: 40%;
  position: relative;
  animation: rotate 25000ms linear infinite;
  outline: 5px dotted #d1d1d1;
  border-radius: 50%;
  margin: 0 auto;
  outline-offset: 25px;
  order: 1;
}

.img-box::after,
.img-box::before,
.element1,
.element2,
.element3,
.element4,
.element5,
.element6 {
  content: "";
  position: absolute;
  top: 19px;
  right: 0;
  width: 60px;
  height: 60px;
  z-index: 999;
  background: url("../images/veena.png") no-repeat center / cover;
  animation: anti-rotate 25000ms linear infinite;
}

.img-box::after {
  transform: rotate(100deg);
}

.img-box::before {
  background: url("../images/tabla.png") no-repeat center / cover;
  left: -7px;
  right: auto;
  transform: rotate(40deg);
}

.element1 {
  background: url("../images/flute.png") no-repeat center / cover;
  bottom: 17px;
  top: auto;
  width: 65px;
  height: 65px;
  right: 10px;
  transform: rotate(25deg);
}

.element2 {
  background: url("../images/shehnai.png") no-repeat center / cover;
  left: 28px;
  right: auto;
  width: 50px;
  height: 50px;
  top: auto;
  bottom: -10px;
}

.element3 {
  background: url("../images/melody.png") no-repeat center / cover;
  left: -60px;
  right: auto;
  width: 50px;
  top: 50%;
  /* transform: translateY(-50%); */
  height: 50px;
}

.element4 {
  background: url("../images/melody2.png") no-repeat center / cover;
  left: auto;
  right: -60px;
  top: 50%;
  /* transform: translateY(-50%); */
  width: 60px;
  height: 60px;
}

.element5 {
  background: url("../images/musical-note.png") no-repeat center / cover;
  right: 33%;
  top: -68px;
  /* transform: translateX(-33%); */
  width: 60px;
  height: 60px;
}

.element6 {
  background: url("../images/musical-note2.png") no-repeat center / cover;
  right: 33%;
  top: auto;
  /* transform: translateX(-50%); */
  bottom: -60px;
  width: 50px;
  height: 50px;
}

.img-box img {
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 50%;
  animation: anti-rotate 25000ms linear infinite;
}

/* =========================================================================================================
                                        BIOGRAPHY CSS ENDS HERE
============================================================================================================ */

/* =========================================================================================================
                                        OUR VIDEO CSS STARTS HERE
============================================================================================================ */

.video-sec {
  width: 100%;
  float: left;
  padding: 90px 0;
  position: relative;
}

.video_carousel {
  width: 100%;
  display: flex;
  margin-top: 60px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 25px 30px;
  overflow: hidden;
}

.videoSlide {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #306cc5;
  float: left;
  padding: 10px;
  transition: 0.3s;
  max-width: 32%;
  margin: 10px 0;
}

.video_box {
  width: 100%;
  height: 240px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
}

.video_description {
  width: 100%;
  float: left;
  margin-top: 10px;
}

.video_description h3 {
  color: #fff;
  font-size: 20px;
  text-align: center;
}

.slick-track {
  padding: 40px 0;
}

.videoSlide:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px 1px #979797;
}

.viewMoreBtn {
  width: 100%;
  display: block;
  text-align: center;
  margin-top: 40px;
}

.viewMoreBtn a {
  background: transparent;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 600;
  color: #306cc5;
  border: 2px solid #306cc5;
  position: relative;
  display: inline-block;
}

.viewMoreBtn a::before,
.viewMoreBtn a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  background: transparent;
  border: 2px solid;
  transition: 0.3s;
}

.viewMoreBtn a::before {
  top: 0;
  left: 0;
  border-color: #306cc5 transparent transparent #306cc5;
}

.viewMoreBtn a::after {
  bottom: 0;
  right: 0;
  border-color: transparent #306cc5 #306cc5 transparent;
}

.viewMoreBtn a:hover {
  border-color: transparent;
}

.viewMoreBtn a:hover::before,
.viewMoreBtn a:hover::after {
  width: 101%;
  height: 101%;
  border-color: #306cc5;
}

/* =========================================================================================================
                                        GALLERY STARTS HERE
============================================================================================================ */

.gallery-sec {
  width: 100%;
  float: left;
  position: relative;
  padding: 90px 0 180px;
}

.image-gallary {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(
    auto-fit,
    minmax(250px, 2fr)
  ); /* Use 2fr instead of 1fr */
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  margin-top: 75px;
}

a.image-box {
  display: inline-block;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  padding: 30px;
  border: 2px solid #306cc5;
}

.feature_image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.feature_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.image-box:hover .feature_image > img {
  transform: scale(1.1);
}

.image-box:nth-child(6n + 1) {
  grid-column: span 2;
}

.image-box:nth-child(6n + 2),
.image-box:nth-child(6n + 5) {
  grid-row: span 2;
}

.image-box:nth-child(6n + 3) {
  grid-column: span 2;
  grid-row: span 2;
}

.image-box:nth-last-child(-n + 4) {
  grid-column: span 1;
  grid-row: span 1;
}

/* =========================================================================================================
                                        GALLERY ENDS HERE
============================================================================================================ */

/* =========================================================================================================
                                        Press Coverage starts HERE
============================================================================================================ */
.press_sec {
  width: 100%;
  background: #306cc5;
  float: left;
  padding: 45px 0 90px;
  position: relative;
}

#topSvg {
  width: 100%;
  height: 70px;
  transform: rotate(180deg);
  position: absolute;
  top: -68px;
}

#bottomSvg {
  width: 100%;
  height: 70px;
  position: absolute;
  bottom: -68px;
}

.press_sec .section-title p {
  color: #e8e8e847;
}

.press_sec .section-title h2 {
  color: #ffb100;
}

.pressMain {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin-top: 75px;
  gap: 30px;
  flex-wrap: wrap;
}

.coverage-box {
  width: 31%;
  height: 100%;
  float: left;
  border: 0px solid #e91e63;
  transition: 0.3s;
  max-height: 345px;
  box-shadow: 0 0 10px #0c0c0c;
  overflow: hidden;
}

.coverage-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.coverage-box:hover {
  box-shadow: 16px 16px 10px #0c0c0c;
  transform: scale(1.05);
}

/* =========================================================================================================
                                        Press Coverage ENDS HERE
============================================================================================================ */

/* =========================================================================================================
                                        Footer Section Start HERE
============================================================================================================ */

.footer-sec {
  width: 100%;
  float: left;
  position: relative;
  padding: 35px 0 10px;
  background: #306cc5;
}

.footer-sec .section-title h2 {
  color: #ffb100;
}
.footer-sec .section-title p {
  color: #e8e8e847;
}

ul.address {
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

ul.address li p {
  font-size: 40px;
  color: #fff;
  font-family: "delius";
  font-weight: 400;
  text-align: center;
}

.copyright {
  margin-top: 20px;
  text-align: center;
  color: #fff;
}
/* =========================================================================================================
                                       Footer Section ENDS HERE
============================================================================================================ */
/* =========================================================================================================
                                        KEYFRAMES STARTS HERE
============================================================================================================ */

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

@keyframes anti-rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes animFw {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/* Shine animation */
@keyframes text-shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
/* Keyframes for smooth zoom wave */
@keyframes textZoom {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}

@keyframes txtGlow {
  0%,
  100% {
    text-shadow: 0 0 10px #c21c1c;
  }
  50% {
    text-shadow: 0 0 20px #81c21c;
  }
}

::-webkit-scrollbar {
  width: 0;
}

::selection {
  background-color: #bf0897;
  color: #fff;
}
