:root{
  --qm:#4458dc;
}
html{
  height: 100%;
}
body {
  font-size : 0.95rem;
  display: flex;
  flex-direction: column;
  height:100%;
  font-family: "Tiro Devanagari Marathi", serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
}
.btn-qm {
  background: white;
  color: var(--qm);
  border:1px solid;
  border-color: var(--qm);
  font-weight: 600;
}
.btn-qm:hover {
  background-color: var(--qm);
  color: white;
}
.btn-rqm {
  background-color: var(--qm);
  color: white;
  font-weight: 600;
  border:1px solid;
  border-color: var(--qm);
}
.btn-rqm:hover {
  background-color: white;
  color: var(--qm);
}

html::-webkit-scrollbar{
  width:10px !important;
}
html::-webkit-scrollbar-track{
  background: white !important;
}
html::-webkit-scrollbar-thumb{
  background: var(--qm) !important;
}
html::-webkit-scrollbar-thumb:hover{
  background:var(--qm) !important;
}

.spinner {
  position: fixed;
  z-index: 1031;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*-------- HERO SECTION ---------*/
.hero .carousel-item img {
  width: 100%;
  /*height: 100vh;  Full viewport height */
  object-fit: cover; /* Maintain aspect ratio and fill space */
  max-height: 40vh;
}
@media (max-width: 768px) { 
  .hero .carousel-item img {
      max-height: none; /* Remove max-height on small screens */
  }
}
.hero .marq{
  font-size: large;
  font-weight: bold;
  color:  var(--qm);
  padding: 10px;
}
@media (max-width: 768px) {
  .hero .marq{
    font-size: medium;
  }
}
/*-------- PEOPLE SECTION ---------*/
.people .text{
  font-size: 40px;
  font-weight: bolder;
  border-bottom: 3px solid var(--qm);
}
.people .card{
  overflow: hidden;
  border: hidden;
  transition: all 0.5s ease;
  box-shadow: var(--qm);
}
.people .card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--qm);
}

.people .card:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}
.people-title{
  font-size: medium;
  font-weight: bolder;
  color: var(--qm);
}
.people-text{
  font-size: small;
  font-weight: bold;
  color: gray;
  padding: 0;
  margin: 0;
}
.people img{
  width: 100px;
  margin: auto;
}
@media (max-width: 768px) {
  .people-title{
    font-size: large;
    padding: 0;
    margin: 0;
  }
  .people-text{
    font-size: small;
    padding: 0;
    margin: 0;
  }
  .people .col{
    min-width: 50% !important;
  }
}
/*-------- BUILDING SECTION ---------*/
.building{
  margin-block: 5%;
}
.building .main-txt{
  font-size: xx-large;
  font-weight: bold;
  color: white;
}
.building .lower-txt{
  font-size: large;
  font-weight: bold;
  color:white;
}
/*-------- COUNT SECTION ---------*/
.count{
  background-color: var(--qm);
}
.count .counter{
  font-size: xx-large;
  color: white;
  font-weight: bold;
  margin-bottom: 0;
}
/*-------- GALLERY SECTION ---------*/
.gallery .carousel-item img {
  width: 100%;
  /*height: 100vh;  Full viewport height */
  object-fit: cover; /* Maintain aspect ratio and fill space */
}
.gallery .text{
  font-size: xx-large;
  font-weight: bold;
  border-bottom: 3px solid var(--qm);
}
.gallery .c-text{
  backdrop-filter: blur(10px);
  color: var(--qm);
}
@media (max-width: 768px) {
  .gallery .c-text{
    font-size: small;
  }
  .gallery .text{
    font-size: x-large;
  }
  .gallery .carousel-caption{
    bottom: 0;
  }
}
/*-------- CONTACT US SECTION ---------*/
.contactus{
  min-height: 50vh;
  padding: 20px;
}
.contactus .main-txt{
  font-size: xx-large;
  font-weight: bold;
  color: var(--qm);
}
.contactus .lower-txt{
  font-size: large;
  font-weight: bold;
  color:var(--qm)
}
@media (max-width: 768px) {
  .contactus .main-txt{
    font-size: x-large;
  }
  .contactus .lower-txt{
    font-size: medium;
  }
}
