* {
  margin: 0px;
  padding: 0px;
}

html,
body {
  margin: 0;
  padding: 0;
  background-color: beige;
}

p {
  font-size: 18px;
}

button {
  padding: 10px;
  width: 100px;
  background-color: rgb(210, 99, 151);
  font-size: 12px;
}

svg {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100vh;
}

.map-shape {
  /* fill: rgba(251, 181, 206, 0.15); */
  stroke: rgba(255, 0, 115, 0.9);
  stroke-width: 2;
  pointer-events: auto;
  cursor: pointer;
}

/* sharper shape on top */
.glow {
  stroke: rgba(255, 0, 106, 0.9);
  stroke-width: 2;
  animation: flicker 1.5s infinite;
}

/* feathered glow underneath */
.top {
  stroke: rgba(255, 0, 119, 0.9);
  stroke-width: 6; /* thicker for more feather */
  filter: url(#feather);
}

polygon {
  fill: rgba(0, 0, 255, 0); /* transparent initially */
  cursor: pointer;
  transition: fill 0.3s ease;
}

polygon:hover {
  fill: rgba(255, 0, 128, 0.343); /* blue overlay on hover */
}

.scrolling-text {
  width: 100%;
  padding: 20px;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
}

.scrolling-text span {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
      opacity: 1;
    }
    20%, 24%, 55% {
      opacity: 0.4;
    }
    22% {
      opacity: 0.1;
    }
  }

.home_img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

.home_body {
  overflow: hidden;
}

.mani_heading {
  writing-mode: vertical-lr;
  text-orientation: sideways;
  float: right;
  margin: 50px;
  color: rgb(210, 99, 151);
  font-size: 100px;
}

.mani_content {
  padding: 150px;
  max-width: 500px;
  text-align: justify;
  column-width: 200px;
  column-gap: 2em;
  line-height: 25px;
}

.mani_btn {
  margin-left: 150px;
}
button:hover {
  background-color: rgb(230, 125, 165);
}

.about_heading {
  margin: 50px;
  color: rgb(210, 99, 151);
  font-size: 100px;
}

.about_content {
  max-width: 500px;
  text-align: justify;
  column-width: 200px;
  column-gap: 2em;
  line-height: 25px;
  margin-left: 700px;
}

.about_btn {
  margin-left: 1100px;
  margin-top: 50px;
}

.header {
  color: rgb(210, 99, 151);
}

.cont_heading {
  color: rgb(210, 99, 151);
  font-size: 100px;
  margin-top: 150px;
  margin-left: 80px;
}

.cont-content {
  float: right;
  margin: 150px;
}

.cont_btn {
  margin-left: 830px;
  margin-top: 50px;
}

.current_page {
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  gap: 20px;
  height: 100vh;
}

.current_heading {
  writing-mode: vertical-lr;
  text-orientation: sideways;
  float: left;
  margin-top: 40px;
  margin-left: 50px;
  color: rgb(210, 99, 151);
  font-size: 80px;
}

.crnt_content {
  max-width: 600px;
  text-align: justify;
  overflow-y: auto;
  padding: 3rem;
}

.last_clm {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.crnt_content img {
  width: 600px;
  height: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 1rem;
}

.cro_heading {
  color: rgb(210, 99, 151);
  font-size: 100px;
  margin-left: 50px;
}

.cro_btn {
  margin-left: 50px;
}
.box {
  width: 300px;
  border: 1px solid #ccc;
  margin-bottom: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.box:hover {
  box-shadow: none;
}

.box img {
  width: 100%;
  height: auto;
}

.box p {
  padding: 1em;
  margin: 0;
}

.cro_content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  padding: 50px;
  justify-content: space-evenly;
}

.cro_page {
  max-width: 1000px;
  overflow-y: scroll;
  margin: 30px 150px;
}

.cro_text {
  margin: 50px;
  text-align: justify;
}

.cro_body a {
  text-decoration: none;
}

.c1_heading {
  color: rgb(210, 99, 151);
  font-size: 60px;
}

.c1_body,
.c2_body {
  margin: 50px;
}

.c1_img,
.c2_img {
  height: 500px;
  width: auto;
  margin: 50px 0px;
}

.c1_contain,
.c2_contain {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.c1_text {
  padding: 90px;
  text-align: justify;
}

.date {
  margin-top: 50px;
}

.c2_heading {
  color: rgb(210, 99, 151);
  font-size: 60px;
}

.c2_myimg {
  display: flex;
  justify-content: center;
  gap: 25px;
}
.c2_myimg img {
  width: 250px;
  height: auto;
}

.c2_text {
  padding: 120px;
  text-align: justify;
}

.c2_btn {
  float: inline-end;
  margin: 60px 112px 60px auto;
}
