/* Import Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');

body {
    background-color: #0f0f0f;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Navbar */
.navbar {
    background: #000;
    padding: 10px 5px;
    border-radius: 50px;
    display: flex;
    position: sticky;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 5px;
    padding: 0;
    margin: 0;
}

.navbar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: 0.3s;
}

/* Hover effect */
.navbar li:hover a {
    transform: scale(0.8);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Optional: Add a tooltip effect */
.navbar li::after {
    content: attr(data-title);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
}

.navbar li:hover::after {
    opacity: 1;
}

/* General Styles */
body {
    background-color: #111;
    color: #ddd;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200vh;
}

/* About Section */
.about-section {
    text-align: center;
    width: 80%; 
    max-width: 800px;
    margin: auto;
}

/* Background Button */
.background-btn {
    background: #333;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Heading */
h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

h1 span {
    color: #bbb;
}

/* Image Styling */
.image-container {
    margin: 20px auto;
}

.image-container img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
}

/* Text Content */
p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 10px 0;
    text-align: justify;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    p {
        font-size: 0.9rem;
    }
}

footer {
    background-color: #111;
    color: white;
    padding: 20px;
    text-align: center;
  }
  .footer-container {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 1000px;
    margin: auto;
    border-top: 1px solid white;

  }
  .footer-section h4 {
    font-weight: bold;
  }
  .footer-section ul {
    a {
        color: white; /* Change this to any color you want */
        text-decoration: none; /* Removes the underline */
    }
    
    a:hover {
        color: gray; /* Change this to the hover color you prefer */
    }
    
    list-style: none;
    padding: 0;
  }
  .footer-section ul li {
    margin: 5px 0;
    font-weight: 800;
    text-align: left;
  }
  .footer-section ul li a {
    color: white;
    text-decoration: none;
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 1000px;
    margin: auto;
    border-top: 1px solid white;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  }