@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');
*{
	margin:0;
	padding:0;
	box-sizing:border-box;
	font-family:Poppins;
	
}
body {
  background-image: url('TileMail.png');
  background-repeat: repeat;
  background-size: auto; /* or set a size if needed */
   padding-top: 20px; /* Adjust based on banner height */
}

.top-banner {
    background-color: #007bff;
    color: black;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* ensures it stays on top of other elements */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	
}









.container{
	width: auto;
	max-width:100%;
   	min-height:100vh;
	
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:flex-start; /*Was "center"*/
	padding:50px 20px;
	overflow:hidden;
	
	
}
.logo img{

	width: auto;   
	max-width: 100%;
    height: auto;
    display: block;
} 


.menu {
    display: flex;	
    justify-content: center; /* Centers the menu horizontally */
	width:100%;
	padding: 5px 0;
	
	}
.menu ul{
	display: flex;
	gap:40px;
	padding:0;
}
.menu ul li{
	list-style:none;
		
}
.menu ul li a {
    color: black ;
    position: relative;
    border-radius: 20px;
    padding: 10px 20px; /* Ensures clickable area */
    display: inline-block;
    background: linear-gradient(grey, grey) padding-box, /* Button fill */
                linear-gradient(to right,red, black) border-box; /* Border */
    border: 2px solid transparent; /* Border is managed by background */
    background-clip: padding-box, border-box; /* Clips the inner and border separately */
	text-decoration:none;
	transition: all 0.3s ease-in-out;
}

/* Hover effect */
.menu ul li a:hover {
    color: #fff; /* Changes color on hover */
	
}

.menu ul li:nth-child(1) a {
    color: white; /* Change color of "Home" */

}

   

.MissionGreeting {
	
	
	margin-top: 0px;
	color:black;
	font-style:italic;
	padding:50px;
	text-align:center;
	
}

.RoutesPic {
	text-align:center;
}

.CircleLogo img {

	width: auto;   
	max-width: 100%;
    height: auto;
    display: block;
		
}

@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .menu ul {
        flex-direction: column;
        gap: 10px;
        
    }
    
    .menu ul li {
        width: 100%;
    }

    .menu ul li a {
        display: block;
        width: 90%;
        padding: 8px 10px;
    }
	.logo-div, .CircleLogo {
        width: 80%; /* Reduce the width to 80% for mid-sized screens */
    }
	

   
}
@media (max-width: 150px) {
   
    .MissionGreeting {
        font-size: 1.5rem; /* Shrink text */
    }
}
@media (max-width: 480px) {
    .logo-div, .CirlceLogo-div {
        width: 60%; /* Further reduce the width for smaller screens */
    }
}

@media (max-width: 320px) {
    .logo-div, .CirlceLogo-div {
        width: 50%; /* Smallest image size for very small screens */
    }
}


