:root {
  --color-pink: #ff3f7f;
  --color-yellow: #ffc400;
  --color-purple: #8c00ff;
  --color-white: #ffffff;
  --color-black: #000000;

  /* Background Colors */
  --bg-primary: var(--color-pink);
  --bg-secondary: var(--color-yellow);
  --bg-accent: var(--color-purple);
  --bg-light: var(--color-white);
  --bg-dark: var(--color-black);

  /* Text Colors */
  --text-primary: var(--color-black);
  --text-light: var(--color-white);

  /* Border Colors */
  --border-primary: var(--color-purple);
  --border-highlight: var(--color-pink);

  /* Gradient Example */
  --gradient-main: linear-gradient(
    45deg,
    var(--color-pink),
    var(--color-purple)
  );
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Hamilton";
  src: url("../.././font/Hamilton.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Metropolis";
  src: url("../.././font/Metropolis-Regular.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

body {
  font-family: "Metropolis", sans-serif;
  background: #222222;

  color: var(--color-white);
  line-height: 1.6;
  position: relative;
}
.main-header a {
  color: var(--color-white);
}
.main-header a:hover {
  color: var(--color-yellow);
}
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
  right: 0;
}
.international-text h2 {
  /* font-family: 'Hamilton', sans-serif !important; */
}
.heading-text h2 {
  color: transparent !important;
  -webkit-text-stroke: 1px #ffffff;
  font-size: 40px;
  font-weight: bold;
  background: var(--gradient-main);
  -webkit-background-clip: text;
}
.edition-span {
  color: #ffffff;
  background-color: #ff3f7f;
  padding: 5px 10px;
  /* border-radius: 5px; */
  font-size: 28px;
  font-weight: bold;
}

.event-btn h2 {
  /* background-color: var(--color-yellow); */
  color: #ffffff !important;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid var(--color-yellow) !important;

  animation: infiniteGlow 5s ease-in-out infinite;
}

@keyframes infiniteGlow {
  0% {
    box-shadow: 0 0 0px var(--color-yellow), 0 0 0px var(--color-yellow),
      0 0 0px var(--color-yellow);
  }
  50% {
    box-shadow: 0 0 15px var(--color-yellow), 0 0 17px var(--color-yellow),
      0 0 20px var(--color-yellow);
  }
  100% {
    box-shadow: 0 0 0px var(--color-yellow), 0 0 0px var(--color-yellow),
      0 0 0px var(--color-yellow);
  }
}
.text-for-about h2 {
  border-left: 5px solid var(--color-yellow);
  padding-left: 20px;
  margin-bottom: 0px;
}

.text-for-event h2 {
  border-left: 5px solid var(--color-pink);
  padding-left: 20px;
  margin-bottom: 0px;
}

.text-white {
  color: var(--color-white);
  border-bottom: 5px solid var(--color-yellow);
  padding-bottom: 20px;
}
.text-white.message {
  color: var(--color-white);
  border-bottom: 0;
  padding-bottom: 20px;
}
.text-pink {
  color: var(--color-white);
  border-bottom: 5px solid var(--color-pink);
  padding-bottom: 20px;
}
.about-image {
  position: relative;
  width: 100%;
  height: auto;
}
.about-image img {
  width: 100%;
  height: auto;
}
.about-image::after {
  content: "";
  background-image: url("https://folklore.paruluniversity.ac.in/wp-content/uploads/2025/11/Asset_6pufolkr_1.png");
  background-size: cover;
  background-position: bottom center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 10px;
}
.about-content::first-letter {
  /* text-transform: uppercase;  */
  font-size: 2em;
  font-weight: 500;
  color: var(--color-yellow);
}

.event-contant {
  position: relative;
  width: 100%;
  height: auto;
}
.event-div-img {
  position: relative;
  width: 100%;
  height: auto;
}
.event-img {
  width: 100%;
  height: auto;
}
.count-down {
  margin: 5% auto 5% auto;
}
.flat-countdown {
  background: #ffc400;
  color: #fff;
  padding: 25px 15px;
  border-radius: 10px;
  text-align: center;
}

.cd-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.cd-item span {
  font-size: 70px;
  font-weight: 800;
  line-height: 1;
}

.cd-item .label {
  font-size: 20px;
  opacity: 0.9;
  margin-top: 6px;
}

.cd-divider {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 25px;
}

/* Seconds slide animation */
#cd-seconds.slide {
  animation: secSlide 0.2s ease-out;
}

@keyframes secSlide {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .cd-item span {
    font-size: 50px;
  }
  .cd-divider {
    font-size: 45px;
  }
  .cd-item .label {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .cd-row {
    gap: 10px;
  }
  .cd-item span {
    font-size: 36px;
  }
  .cd-divider {
    font-size: 30px;
    padding-bottom: 18px;
  }
  .cd-item .label {
    font-size: 14px;
  }
}

.festival-div-img {
  position: relative;
  width: 100%;
}

.festival-div-img::after {
  content: "";
  position: absolute;
  inset: 0;                /* full height & width */
  width: 50%;              /* half overlay */
  background: #8c00ff;
  z-index: 1;
  pointer-events: none;    /* image stays clickable */
}
.festival-img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;              /* above the overlay */
}

.countriesSwiper .country-item {
    /* background: #fff; */
    /* padding: 15px; */
    border-radius: 8px;
    text-align: center;
    /* box-shadow: 0 2px 6px rgba(0,0,0,.1); */
}

.country-flag img {
    width: 100%;
    height: auto;
    /* margin-bottom: 10px; */
}
.countriesSwiper .swiper-slide{
     margin-top: 0 !important;
}
.blod{
     font-weight: bold;
}
.tel-number {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-pink);   /* your theme color */
    text-decoration: none;
}

.tel-number:hover {
    color: var(--color-yellow); /* hover color */
    text-decoration: underline;
}

@media only screen and (max-width: 1025px) {
	#masthead .hfe-nav-menu-layout nav ul {
		flex-wrap:nowrap !important;
	}
}