body {	
		background-color: #e6e6e6;
		font-family : calibri, ITC Zapf Chancery, Aardvark;
		width:85%;
		margin:auto;
				
		}
		
	header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 30px;
      background-color: #ffffff;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      height: 40px;
      margin-right: 10px;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
    }

    .logo-text .main {
      font-size: 140%;
      font-weight: bold;
      color: #0f0f0f; 
    }

    .logo-text .sub {
      font-size: 12px;
      color: #666666;
    }


#navMenu {
  display: flex;
  gap: 10px;
  align-items: center;
}



nav a {
      text-decoration: none;
      color: #000;
      font-size: 16px;
      padding: 10px 12px;
      border-radius: 4px;
      transition: background-color 0.3s ease;
    }

    nav a:hover {
		text-decoration: none;
		background-color: #f0f0f0;
		color: #0f0f0f;
    }
	
	nav a.active {
		text-decoration: none;
		background-color: #f0f0f0;
		color: #0f0f0f;
		cursor: not-allowed;       /* changes the cursor */
  pointer-events: none;      /* disables clicking */
    }

	
	
	
.hamburger {
  display: none;

}




.content {
			padding: 20px;
			background-color: #fff;
			min-height: 600px;
			box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
			
}

h2 {
	font-size: 200%;
	margin: 0px;
}

h3 {
	font-size: 150%;
	margin: 0px;
	font-weight: normal;
}

.footer-bottom {
  
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: #5053b9;
  font-size: clamp(11px, 4vw, 18px);
  color: #fff;
  text-align: center;
  padding:10px 0px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}		

.footer {
	display: flex;
	justify-content: space-between;
	background-color: #0f1c3a;
	color: #fff;
	padding: 0px 30px;
}

.image-scroll-container {
	width: 100%;
	height: 50px;
	overflow: hidden;
	position: relative;
}	

	.image-scroll-container:hover .image-track {
		animation-play-state: paused;
		}

	
	.image-track {
					display: flex;
					height: 50px;
					animation: scroll-left 30s linear infinite;
					}
					
	.image-track a img {
					height: 50px;
					width: auto;
					margin-right: 10px;
	}
	
	@keyframes scroll-left {
		0% {
			transform: translateX(100%);
		}
		100% {
			transform: translateX(-100%);
		}
	}
	

.refer a img {
	width: 100%;
	height: auto;
	aspect-ratio: 3/2;
	object-fit: contain;
}







}

table, th, td {
  border: 1px solid black;
  border-collapse: collapse;
  text-align: center;
}

a:link {
  
  text-decoration: none;
}
a:visited {
  

  text-decoration: none;
}
a:hover {
  
  background-color: transparent;
  text-decoration: none;
}
a:active {
 
  background-color: transparent;
  text-decoration: none;
}

.contact-link {
	margin: 15px;
}
.contact-link a {
    display: inline-block;
    position: relative;
    transition: margin 0.3s ease-in-out;
}

.contact-link a img {
    transition: transform 0.3s ease-in-out;
    display: block;
}

.contact-link a:hover {
    margin: 0px 20px 0px 20px; /* Creates a temporary gap when hovered */
}

.contact-link a:hover img {
    transform: scale(2); /* Zoom effect */
    position: relative;
    z-index: 10; /* Ensures zoomed image appears on top */
   
}

.footer a {
	color: #fff;
}

table {
	width: 100%;
      margin: auto;
      border-collapse: collapse;
      background-color: #fff;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
th, td {
      padding: 12px 10px;
      text-align: left;
      border-bottom: 1px solid #ddd;
    }

    th {
      background-color: #4CAF50;
      color: white;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    tr:hover {
      background-color: #f1f1f1;
    }
	
	
	/* hhhhhhhhhhhhhhhhhhhhhhhhh 
	form {
  max-width: 600px;
  margin: 30px auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fafafa;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

label {
  display: block;
  font-weight: bold;
  margin-bottom: 6px;
  color: #333;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="file"],
input[type="password"],
textarea,
select {
  width: 80%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #bbb;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #007BFF;
  outline: none;
}

*/