/* General Reset */
* {
    margin: 0;
    padding: 10;
    box-sizing: border-box;
    font-family: "Times New Roman", Times, serif;
}


body {
    font-family: Arial, sans-serif;n;
    background-color: #floralwhite;
}

a{
    text-decoration:none;
    cursor: pointer;
}

/* Navbar Styles */
.navbar {

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  position:fixed;; 
    width:100%;
    height:65px;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.3); /* Transparent */
    backdrop-filter: blur(10px); /* Blur effect */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.icon menu-icon{
    width:200px;
    height:200px;
}

.logo {
    font-size: 2.8rem;
    
    
    font-weight: bold;
    color: #333;
}
.profileicon{
    width: 40px;
    height: 40px;
}

.icons ,.profileicon{
      
    font-size:30px;
    display: flex;
    gap: 20px;
}

.icon {
    font-size: 1.9rem;
    color: #333;
    cursor: pointer;
}

/* Menu Window Styles */
.menu-window {
    position: fixed;
    top: 72px;
    right: 20px;
    width: 200px;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    display: none; /* Initially hidden */
    animation: fadeIn 0.3s ease-in-out;
}

.menu-window ul {
    list-style: none;
}

.menu-window li {
    padding: 10px 1px;
    border-bottom: 0px solid #f0f0f0;
}

.menu-window li:last-child {
    border-bottom: none;
}

.menu-window li a {
    text-decoration: none;
    color: #333;
    font-size: 1rem;
}

.menu-window li:hover {
    background-color: #f9f9f9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 10px;
    }

    .menu-window {
        width: 200px;
        padding: 0px;
    }
}

@media (max-width: 480px) {
    .navbar .logo {
        font-size: 1.2rem;
    }

    .icon {
        font-size: 1.2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Footer Base Styles */
  footer {
    background-color: #f6f5f9;
    color: #010b15;
    padding: 20px;
    text-align: center;
  }

  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .footer-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #010b15;
  }

  .footer-section ul {
    list-style: none;
    padding: 0;
  }

  .footer-section ul li {
    margin: 5px 0;
  }

  .footer-section ul li a {
    color: #010b15;
    text-decoration: none;
  }

  .footer-section ul li a:hover {
    text-decoration: underline;
  }

  /* Social Media Styles */
  
  .social-media {
  display: flex;
    justify-content: center;
    gap: 15px;
    
  }

  .social-icon {
    width: 30px;
    height: 30px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .social-icon.facebook {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/5/51/Facebook_f_logo_%282019%29.svg');
  }

  .social-icon.twitter {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/6/60/Twitter_Logo_as_of_2021.svg');
  }

  .social-icon.instagram {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/9/95/Instagram_logo_2022.svg');
  }

  .social-icon.linkedin {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/0/01/LinkedIn_Logo_2019.svg');
  }

  .social-icon:hover {
    opacity: 0.8;
  }

  /* Responsive Design */
   /* Center Social Media for Larger Screens */
  @media (min-width: 640px) {
    .footer-container {
      grid-template-columns: repeat(5, 1fr);
    }

    .social-center {
      grid-column: span 5;
      text-align: center;
    }
  }
  
  
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
  }



  @media (max-width: 480px) {
    .social-icon {
      width: 25px;
      height: 25px;
    }
  }

.space{
    height:50px;
}

.heading{
    text-align: center; 
}

p{
    text-align: center;
    margin:10px;
}
h2 {
  color: #333;
  text-align: center;
}