body {
      background-color: #f5f8fa;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    /* Top info bar */
    .top-info-bar {
      background-image: linear-gradient(to right, #fc9048, #fd5e15 , #ff6600, #ff3300); 
      color: white;
      font-size: 0.9rem;
      padding: 2px 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-height: 32px; /* Add this line or reduce further if needed */
      margin: 0 auto;
    }
    .top-info-bar .contact-info {
      display: flex;
      gap: 20px;
    }
    .top-info-bar .contact-info span {
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .top-info-bar .social-icons a {
      color: white;
      margin-left: 10px;
      font-size: 1.1rem;
      text-decoration: none;
    }
    .top-info-bar .social-icons a:hover {
      color: #333;
    }
    header, section {
      padding: 60px 15px;
    }
    .hero {
      position: relative;
      color: white;
      text-align: center;
      padding: 120px 15px 80px 15px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    .hero::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background-color: rgba(0, 0, 50, 0.6);
      z-index: 0;
    }
    .hero-content {
      position: relative;
      z-index: 1;
      padding: 40px;
      border-radius: 15px;
      display: inline-block;
      max-width: 700px;
    }
    .hero h1 {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 15px;
      text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
    }
    .hero p {
      font-size: 1.5rem;
      font-weight: 400;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
    }
    .section-title {
      font-weight: 700;
      font-size: 2rem;
      margin-bottom: 40px;
      text-align: center;
      color: #333;
    }
    .project-card {
      border: none;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
      display: flex;
      flex-direction: column;
      height: 100%;
      width: 18rem;
    }
    .project-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .project-card img {
      height: 200px;
      object-fit: cover;
      border-top-left-radius: 15px;
      border-top-right-radius: 15px;
    }
    .project-card .card-body {
      flex-grow: 1;
    }
    footer {
      background-image: linear-gradient(to bottom right, #004080, #0c3985, #5088e9, #97c0f0);
      color: white;
      text-align: center;
      padding: 20px 15px;
      margin-top: 60px;
    }
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .project-card {
        height: auto;
        width: 100%;
      }
    }
    .projects-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
    }
    /* Add or update this in your <style> section */
    #languageSelector {
  border: none !important;
  /* ...other styles... */
}
.navbar :hover,
.navbar :focus {
  background-color: #000000 !important;
  background-color: rgba(0, 0, 0, 0.7) !important;
  color: #fff !important;
  border-radius: 20px;
  transition: background 0.2s;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  /* Removed flex-direction column and related styles to prevent wrapping */
  .top-info-bar {
    padding: 2px 15px;
    max-height: 32px;
  }
  .top-info-bar .social-icons {
    overflow-x: auto;
    flex-wrap: nowrap; /* Prevent wrapping of social icons */
    display: flex; /* Ensure flex display */
  }
  /* Add background color for navbar on small screens */
  /* Add this at the end of your CSS file */

}
@media (max-width: 992px) {
  .hero-content {
    padding-top: 80px; /* Adjust this value to match your navbar height */
  }
}