*{
    padding:0%;
    margin:0%;
    text-decoration:none;
    list-style:none;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background-color: trasparent;
}
#navbar{
    position: fixed;
    top: 0;
    left: 0;
    height: 10%;
    width: 100%;
    display: grid;
    place-items: center;
    box-shadow: 0 0px 10px rgba(24,73,103);
    background-color: white; /* Important to make it opaque */
    z-index: 1000; /* Raised to ensure it's on top */
}
#navbar #logo{
    position: absolute;
    left:5%;
    height:100%;
    width:14%;
    background-color: aqua;

}
#navbar #logo img{
    height:100%;
    width:100%;
}
#navbar #navul1{
    float: right;
    position: absolute;
    right: 5%;
}
#navbar #navul1 li{
    display: inline-block;
    margin-left:40px;
}
#navbar #navul1 li a{
    color:rgba(24,73,103);
    font-size: 17px;
}
#navbar #navul1 li:last-child {
  background-color: rgba(24,73,103);
  padding: 10px;
  border-radius: 5px;
}
#navbar #navul1 li:last-child a{
  color:#fff;
}
#navbar #opnbtn{
	position:absolute;
	height:70%;
	width:3%;
	background:#fff;
	top:11%;
	left:1%;
	border:none;
    display: none;
}
#nav{
    position: fixed;
    top:10%;
    left:0%;
    width:0%;
    height:90%;
    background-color: rgba(0,0,0,0.5);
	transition: 0.5s;
}
#nav #ul{
    position: fixed;
    top:10%;
    left:0%;
    width:70%;
    height:100%;
    background-color: #fff;
    display: none;
    transition: 0.5s;
}
#nav #ul li{
    margin: 30px;
}
#nav #ul li:first-child button{
    position: absolute;
    top:3%;
    right: 10%;
    font-size: 30px;
    background-color: transparent;
    border: none;
    outline: none;
    padding: 0%;
    margin: 0%;
}
#nav #ul li a{
    font-size: 20px;
    color:rgba(24,73,103)

}

/* Footer Styles */
.footer {
  position:absolute;
  top:100%;
  left:0%;
  width:100%;
  background-color: #0c1122;
  color: #dcdcdc;
  padding-top: 40px;
  padding-bottom: 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-column h4 {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-column ul li a {
  color: #dcdcdc;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.logo-box {
  background-color: #2d7df4;
  color: white;
  font-weight: bold;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 1.2rem;
}

.small-text {
  font-size: 0.8rem;
  color: #ccc;
}

.footer hr {
  border: none;
  border-top: 1px solid #333;
  margin: 20px 0;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
}
@media screen and (max-width:450px){
    #navbar #opnbtn{
        position:absolute;
        height:70%;
        width:3%;
        background:#fff;
        top:50%;
        left:10%;
        transform: translateY(-50%);
        border:none;
        display: block;
    }
    #navbar #navul1{
        display: none;
    }
    #navbar #logo{
        position: absolute;
        top:50%;
        left: 50%;
        transform: translate(-50%,-50%);
        background-color: #fff;
        height: 95%;
        width:45%;
    }
    #nav{
        z-index: 1;
    }
    .footer{
      position: absolute;
      top:100%;
      left:0%;
      width:100%;
    }
    .footer-container {
      width:80%;
      flex-direction: column;
      align-items: flex-start;
    }

    .footer-column {
      width: 100%;
    }

    .logo {
      flex-direction: row;
    }
}