: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%);
}

/*-------- PEOPLE SECTION ---------*/
.tahIslpeople .card{
  overflow: hidden;
  border: hidden;
  transition: all 0.5s ease;
  box-shadow: var(--qm);
}
.tahIslpeople .card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--qm);
}
.tahIslpeople .card:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}
.tahIslpeople-title{
  font-size: medium;
  font-weight: bolder;
  color: var(--qm);
}
.tahIslpeople-text{
  font-size: small;
  font-weight: bold;
  color: gray;
  padding: 0;
  margin: 0;
}
.tahIslpeople img{
  width: 120px;
  height: 120px;
  margin: auto;
  object-fit: cover;
}
@media (max-width: 768px) {
  .tahIslpeople-title{
    font-size: large;
    padding: 0;
    margin: 0;
  }
  .tahIslpeople-text{
    font-size: small;
    padding: 0;
    margin: 0;
  }
  .tahIslpeople .col{
    min-width: 50% !important;
  }
}
/*-------- BUILDING SECTION ---------*/
.tahIslbuilding{
  margin-block: 5%;
}
.tahIslbuilding .main-txt{
  font-size: xx-large;
  font-weight: bold;
  color: white;
}
.tahIslbuilding .lower-txt{
  font-size: large;
  font-weight: bold;
  color:white;
}
@media (max-width: 768px) {
  .tahIslbuilding .btns{
    margin-bottom: 20px;
  }
}
/*-------- SUVUDHA SECTION ---------*/
.tahIslSuvidha .text{
  font-size:x-large;
  font-weight: bold;
}
.tahIslSuvidha .card{
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: var(--qm);
}
.tahIslSuvidha .card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px var(--qm);
}
.tahIslSuvidha .card:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}
.tahIslSuvidha .card-title{
  font-size: x-large;
  font-weight: bolder;
  color: var(--qm);
}
@media (max-width: 768px) {
  .tahIslSuvidha .text{
    font-size: large;
  }
  .tahIslSuvidha .card-title{
    font-size: large;
    padding: 0;
    margin: 0;
  }
}
/*-------- GALLERY SECTION ---------*/
.tahIslgallery .carousel-item img {
  height: 500px;
  /*height: 100vh;  Full viewport height */
  object-fit: cover; /* Maintain aspect ratio and fill space */
}
.tahIslgallery .text{
  font-size:x-large;
  font-weight: bold;
  border-bottom: 3px solid var(--qm);
}
.tahIslgallery .c-text{
  backdrop-filter: blur(10px);
  color: var(--qm);
}
@media (max-width: 768px) {
  .tahIslgallery .carousel-item img {
    height: 300px;
    width: 100%;
  }
  .tahIslgallery .c-text{
    font-size: small;
  }
  .tahIslgallery .text{
    font-size: large;
  }
  .tahIslgallery .carousel-caption{
    bottom: 0;
  }
}