<!-- styles.css -->
<style>
body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff; /* white */
    /* MODIFIED: Changed text color to a darker navy to match the new image */
    color: #0d2141; 
}
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}
.hero-bg {
    /* MODIFIED: Swapped background image and updated overlay color to match */
    background-image: linear-gradient(rgba(13, 33, 65, 0.7), rgba(13, 33, 65, 0.7)), url('com_bg.jpg');
    background-size: cover;
    background-position: center;
}
.nav-scrolled {
    /* MODIFIED: Changed background to the new darker navy color */
    background-color: #0d2141; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.section-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #3b82f6; /* blue-500 - Kept as a highlight color */
    margin: 16px auto 0;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #e0f2fe; /* blue-100 */
}
::-webkit-scrollbar-thumb {
    background: #60a5fa; /* blue-400 */
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #3b82f6; /* blue-500 */
}
</style>

<!-- Navbar Section (common in all HTML) -->
<!-- MODIFIED: Changed bg-blue-800 to the new darker navy color -->
<nav id="navbar" class="fixed top-0 left-0 right-0 z-50 p-4 transition-all duration-300 nav-scrolled bg-[#0d2141] text-white">
  <div class="container mx-auto flex justify-between items-center">
    <a href="index.html" class="text-2xl font-bold">NCMST-2025</a>
    <div class="hidden md:flex space-x-8 text-lg">
      <a href="index.html#about-ncmst" class="hover:text-blue-300 transition">About</a>
      <a href="call-for-papers.html" class="hover:text-blue-300 transition">Call for Papers</a>
      <a href="committees.html" class="hover:text-blue-300 transition">Committees</a>
      <a href="dates.html" class="hover:text-blue-300 transition">Dates</a>
      <a href="registration.html" class="hover:text-blue-300 transition">Register</a>
      <a href="contact.html" class="hover:text-blue-300 transition">Contact</a>
    </div>
  </div>
</nav>

<!-- Footer Section (common in all HTML) -->
<!-- MODIFIED: Changed bg-blue-800 to the new darker navy color -->
<footer class="bg-[#0d2141] text-white py-8">
  <div class="container mx-auto px-4 text-center text-blue-200">
    <p>© 2025 NCMST - Indian Institute of Space Science and Technology. All rights reserved.</p>
  </div>
</footer>