@charset "UTF-8";
/* CSS Document */
      body {
        color: black;
        font-family: 'Montserrat', sans-serif;
        text-align: center;
        margin: 0;
      }

      img {
        border: 4px solid white;
        border-radius: 20px;
      }

      .divider {
        margin: 50px 0;
        font-size: 24px;
        color: black;
        letter-spacing: 8px;
      }

      .about {
        width: 90%;
        margin: 40px auto;
        column-count: 3;
        column-gap: 40px;
        column-rule: 1px solid lightgray;
        text-align: justify;
        background-color: #000;
        color: white;
        padding: 30px;
        border-radius: 12px;
      }

      .about p {
        margin-top: 0px;
        margin-bottom: 1em;
        break-inside: avoid;
      }

      .about strong {
        display: block;
        font-size: 1.1em;
        margin-bottom: 5px;
        color: white;
      }
      
	.about {
 	 display: flex;
 	 justify-content: center;
 	 gap: 30px;
  	padding: 30px;
 	 background-color: #000;
 	 color: white;
 	 border-radius: 12px;
 	 flex-wrap: wrap;
	}

	.about-box {
  	background-color: #111;
 	 padding: 20px;
 	 border-radius: 12px;
 	 width: 30%;
 	 border: 1px solid transparent;   
 	 box-sizing: border-box; /* prevents resizing when border appears */
 	 transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
	}

	.about-box:hover {
  	transform: translateY(-10px);
    box-shadow: 0 0 20px 4px rgba(0, 255, 255, 1); /* Cyan glow */
    border: 1px solid rgba(0, 255, 255, 1); /* Cyan border */
 	 }

	.about-box p {
 	 text-align: justify;
 	 margin-bottom: 0;
	}

      .video-section {
        margin-top: 60px;
        margin-bottom: 40px;
      }

      iframe {
        max-width: 90%;
        border-radius: 12px;
      }

      .data-table {
        width: 80%;
        margin: 0 auto 60px;
        border-collapse: collapse;
      }

      .data-table th,
      .data-table td {
        border: 1px solid #343434;
        padding: 15px;
        text-align: center;
      }

      .data-table th {
        background-color: #f0f0f0;
        font-weight: bold;
      }

      .data-table tr:hover {
        background-color: darkgray;
        transition: background-color 0.5s ease;
      }

      footer {
        background-color: #f5f5f5;
        padding: 20px 0;
        font-size: 14px;
        color: #333;
        border-top: 1px solid #ddd;
      }

      .btn-custom {
        font-size: 16px;
        padding: 10px 20px;
        border: none;
        border-radius: 20px;
        background-color: black;
        color: white;
        cursor: pointer;
        box-shadow: 0 5px 0 gray;
        transition: all 0.2s ease;
        position: relative;
      }

      .btn-custom:hover {
        background-color: whitesmoke;
        color: black;
		 
	  }
		
      .modal-content {
        color: black;
      }