@import url(animate.min.css);
@import url(normalize.css);
@import url(icomoon.css);
@import url(font-awesome.min.css);
@import url(meanmenu.css);
@import url(slick.css);
@import url(jquery.fancybox.min.css);
@import url(jquery-ui.css);
@import url(nice-select.css);

@font-face {
  font-family: "Righteous";
  src: url("../fonts/BalooChettan-Regular.ttf");
  src: url("../fonts/BalooChettan-Regular.ttf");
}

/* === Base Container (shared styles) === */
.strokedContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  background-color: #ffffff;
  border-radius: 30px;
  width: auto;
  box-sizing: border-box !important;
}

/* === Base Banner === */
.strokedBan {
  text-align: center;
}

.strokedBan h1 {
  font-size: 5em;
  /* unchanged */
  font-weight: 700;
  margin: 0;
  word-break: break-word;
  line-height: 1.1;
  /* <--- This reduces the spacing between lines */
}

/* 🔄 Responsive adjustments */
@media (max-width: 768px) {

  .strokedContainer,
  .fillderCon {
    width: 95%;
    margin-top: 20px !important;

  }

  .strokedBan h1 {
    font-size: 3em;
  }
}

@media (max-width: 480px) {

  .strokedContainer,
  .fillderCon {
    width: 90%;
    padding: 20px;
    border-radius: 20px;
  }

  .strokedBan h1 {
    font-size: 2em;
  }
}

/* === Rainbow Colors === */
/* Red */
.strokedContainer-red {
  box-shadow: 0px 0px 1px 8px #ff0000;
}

.strokedBan-red h1 {
  color: #ff0000;
}

/* Orange */
.strokedContainer-orange {
  box-shadow: 0px 0px 1px 8px #ff7f00;
}

.strokedBan-orange h1 {
  color: #ff7f00;
}

/* Yellow */
.strokedContainer-yellow {
  box-shadow: 0px 0px 1px 8px #ffc107;
}

.strokedBan-yellow h1 {
  color: #ffc107;
}

/* Green */
.strokedContainer-green {
  box-shadow: 0px 0px 1px 8px #00ff00;
}

.strokedBan-green h1 {
  color: #00ff00;
}

/* Blue */
.strokedContainer-blue {
  box-shadow: 0px 0px 1px 8px #0000ff;
}

.strokedBan-blue h1 {
  color: #0000ff;
}

/* Indigo */
.strokedContainer-indigo {
  box-shadow: 0px 0px 1px 8px #4b0082;
}

.strokedBan-indigo h1 {
  color: #4b0082;
}

/* Violet */
.strokedContainer-violet {
  box-shadow: 0px 0px 1px 8px #8f00ff;
}

.strokedBan-violet h1 {
  color: #8f00ff;
}

.strokedContainer-white {
  box-shadow: 7px 7px 1px 0px #ffffff;
}

.strokedBox {
  border: 4px solid #000;
}


.filledBan {
  text-align: center;
}

.filledBan h1 {
  font-size: 5em;
  /* unchanged */
  font-weight: 700;
  word-break: break-word;
}

.fillderCon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  background-color: #ffffff;
  border-radius: 30px;
  width: auto;
  box-sizing: border-box !important;
  padding: 0 20px;
}

/* === Rainbow Variants === */
.fillContainer-red {
  background-color: red;
}

.fillContainer-orange {
  background-color: orange;
  color: #ffffff;
  /* better contrast for yellow */

}

.fillContainer-yellow {
  background-color: #ffc107;
  /* bright yellow */
  color: #ffffff;
  /* better contrast for yellow */
}

.fillContainer-green {
  background-color: green;
}

.fillContainer-blue {
  background-color: blue;
}

.fillContainer-indigo {
  background-color: indigo;
}

.fillContainer-violet {
  background-color: violet;
}

.bannerContent img {
  height: 100%;
  width: 100%;
  max-width: 70%;
}