/* Navbar */

nav{
  background-color: #35055b;
  box-shadow: 3px 3px 5px rgba(0,0,0,0.1);
}

.nav-logo{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80%;
  width: 100%;
}

nav ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
nav li{
  height: 70px;
}
nav a{
  height: 100%;
  padding: 0 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 1.1rem;
}
nav a:hover{
  color: #ff8ed7;

}
nav li:first-child{
  margin-right: auto;

} 

/* toggle-btn */

.sidebar{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 999;
  backdrop-filter: blur(10px);
  box-shadow: -10px 0 10px rgba(0,0 ,0,0.1);
  display: none;
 flex-direction: column;
 color: black;
 align-items: flex-start;
 justify-content: flex-start;
}
.sidebar li{
  width: 100%;
}
.sidebar a {
  width: 100%;
}
.menu-btn{
  display: none;
}
.slide-btn{
  font-size: 1.5rem;
}
@media(max-width:800px){
  .hideOnMoble{
    display: none;
  }
  .menu-btn{
    display: block;
  }
}

   /* footer Section */
.footer {
    background-color: #200025; /* Dark purple color */
    color: #ffffff; /* White text */
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 20px;
}

.footer-section h4 {
    color: #a5037c; /* Lighter purple for headings */
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-section p, .footer-section ul {
    font-size: 0.9rem;
    color: #cccccc;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #a872ff; /* Hover effect */
}

.social-links a {
    margin-right: 15px;
}

.social-links img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #4a2d8a; /* Subtle line to separate */
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #aaaaaa;
}
