 body {
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', sans-serif;
      color: white;
      background: url('11.JPG') no-repeat center center fixed;
      background-size: cover;
      position: relative;
    }

    /* Dark overlay for better readability */
    body::before {
      content: "";
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background:rgba(0,0,0,0.4));

      z-index: -1;
    }

   h1, h2{
      text-align: center;
      margin: 30px 0 20px;
      text-shadow: 4px 4px 4px #000;
      font-size: 2em;
	  font-family: italic;
    }
	h6{
      text-align: center;
      margin: 30px 0 20px;
      text-shadow: 2px 2px 4px #000;}

.image-col {
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  
}


    .img-box {
	color:white;
      height: 100px;
      width: 100px;
      cursor: pointer;
      border-radius: 50%;
      border: 3px solid orange;
      transition: transform 0.1s ease, box-shadow 0.3s ease;
    }

    .img-box:hover {
      transform: scale(1.1);
      box-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
    }

    .info-container {
      display: none;
      justify-content: center;
      animation: fadeIn 0.5s ease;
      margin-bottom: 40px;
    }

    .info-box {
      background:rgba(255,255,255,0.5);
      border-radius: 12px;
      padding: 20px;
      max-width: 90%;
      backdrop-filter: blur(5px);
    }
	.polycet {
      background:rgba(255,255,255,0.5);
      border-radius: 12px;
      padding: 20px;
      max-width: 100%;
      backdrop-filter: blur(5px);
	  margin-top:40px;
	  margin-left:50px;
	  margin-right:50px;
	  text-align:center;
    }
	.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
	
}

	

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-10px); }
      to { opacity: 1; transform: translateY(0); }
    }
	