 body {
            margin: 0;
            font-family: "Times New Roman", Times, serif;
            background: #fff;
        }

  /* Header Styles - Keeping your original styles */
/* Header Styles - Keeping your original styles */
.header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    text-align: center;
}

.header img {
    width: 80px;
    height: auto;
    margin-right: 15px;
}

.header h1 {
    margin: 0;
    font-size: 28px;
    font-weight: bold;
    color: #000;
}

/* Navbar Styles */
.navbar {
    background-color: #2e2e2e;
    border: 1px solid white;
    position: relative;
    z-index: 100;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 15px 20px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-menu a, .nav-menu .menu-item .dropdown-toggle {
    color: white;
    padding: 14px 20px;
    display: block;
    text-decoration: none;
    text-align: center;
    border-right: 1px solid white;
}

.nav-menu a:last-child, .nav-menu .menu-item:last-child .dropdown-toggle {
    border-right: none;
}

.nav-menu a:hover, .nav-menu .menu-item:hover .dropdown-toggle {
    background-color: #444;
}

/* Menu Item with Dropdown */
.nav-menu .menu-item {
    position: relative;
}

/* Dropdown Styles */
.nav-menu .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #2e2e2e;
    min-width: 200px;
    z-index: 1;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

/* Special styling for the public notice dropdown */
.nav-menu .public-notice-dropdown {
    max-height: 400px;
    overflow-y: auto;
    width: 300px;
}

.nav-menu .dropdown a {
    padding: 12px 20px;
    border-right: none;
    border-bottom: 1px solid #444;
    text-align: left;
    display: block;
    width: 100%;
}

.nav-menu .dropdown a:last-child {
    border-bottom: none;
}

.nav-menu .menu-item:hover .dropdown {
    display: block;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
    }

    .header img {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .header h1 {
        font-size: 22px;
    }
    
    /* Show hamburger menu */
    .hamburger {
        display: flex;
    }
    
    /* Hide navigation menu by default on mobile */
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #2e2e2e;
    }
    
    /* Show navigation menu when active */
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a, .nav-menu .menu-item .dropdown-toggle {
        border-right: none;
        border-bottom: 1px solid white;
        width: 100%;
    }
    
    .nav-menu a:last-child, .nav-menu .menu-item:last-child .dropdown-toggle {
        border-bottom: none;
    }
    
    /* Mobile dropdown styles */
    .nav-menu .dropdown, .nav-menu .public-notice-dropdown {
        position: static;
        width: 100%;
        max-height: none;
        box-shadow: none;
        background-color: #444;
        display: none;
    }
    
    .nav-menu .menu-item:hover .dropdown {
        display: block;
    }
    
    .nav-menu .dropdown a {
        padding-left: 40px;
        background-color: #444;
    }
    
    .nav-menu .dropdown a:hover {
        background-color: #555;
    }
}

/* Animation Styles */
@-webkit-keyframes appear {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes headline_appear_animation {
    from {
        opacity: 0;
    }
    25% {
        opacity: 0;
    } 
    to {
        opacity: 1;
    }
}

@-webkit-keyframes contentappear{
  from {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  50% {
    -webkit-transform:  scale(0.5);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}

@-moz-keyframes appear{
  from{
    opacity: 0;
    }
  to  {
    opacity: 1;
  }
}

@-moz-keyframes headline_appear_animation{
  from{
    opacity: 0;
  }
  25% {
    opacity: 0;
  } 
  to  {
    opacity: 1;
  }
}

@-moz-keyframes contentappear{
  from {
    -moz-transform: scale(0);
    opacity: 0;
  }
  50% {
    -moz-transform:  scale(0.5);
    opacity: 0;
  }
  to {
    -moz-transform: scale(1);
    opacity: 1;
  }
}

* {
  margin: 0;
  padding: 0;
}
/*################ Sliding and appearing animation for the 404 page. Works in webkit browsers and mozilla firefox.*/

a:active{
  position: relative;
  top: 1px;
}

html{
  background: url(/web/20180307165218im_/http://villagepanchayatpomburpa-olaulim.in/backgrounds/background-3.png) no-repeat center center fixed;
  /*Image for the full size image background. If you want to have a color as a background, just remove the complete html{} style and uncomment the last line in the body{}*/
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  /*CSS3 for the fullscreen image background*/
}

body{
  font-family: 'Helvetica Neue';
  width: auto;
  /*margin: 0 auto 100px auto;*/
/*  background: #C9D0F5 /*373A4D*!/;*/
}
/* Slider Styles */
#container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

#wowslider-container1 {
  position: relative;
  width: 100%;
  height: 400px; /* Adjust height as needed */
  margin: 0 auto;
  overflow: hidden;
}

.ws_images {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ws_images ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

.ws_images li {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.ws_images li:first-child {
  display: block;
}

.ws_images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Navigation bullets */
.ws_bullets {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.ws_bullets a {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  margin: 0 4px;
  cursor: pointer;
  opacity: 0.6;
}

.ws_bullets a.ws_selbull, .ws_bullets a:hover {
  opacity: 1;
}

/* Shadow effect */
.ws_shadow {
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  height: 15px;
  background: url('assests/images/shadow.png') no-repeat center bottom;
  background-size: 100% 100%;
  z-index: 1;
}

/* Content Styles */
#site_body {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
}

#site_body h1 {
  font-family: "Times New Roman", Times, serif;
  font-size: 28px;
  color: #000;
  text-align: center;
}

.messages, .style5 {
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  text-align: justify;
}

/* Footer Styles */
.footer {
  background-color: #2e2e2e;
  color: #fff;
  padding: 20px 0;
  margin-top: 30px;
}

.footer .container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.footer_link {
  text-align: center;
}

.footer_link a {
  color: #fff;
  text-decoration: none;
  padding: 0 5px;
}

.footer_link a:hover {
  text-decoration: underline;
}

.footer-grid {
  text-align: center;
  font-size: 14px;
  margin-top: 15px;
}

.footer-grid a {
  color: #fff;
  text-decoration: none;
}

.footer-grid a:hover {
  text-decoration: underline;
}

.clearfix {
  clear: both;
}

 /* Specific styles for the accountability page */
        .accountability-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        
        .page-title {
            color: #333;
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid #ddd;
        }
        
        .download-link {
            display: block;
            text-align: center;
            margin: 20px 0 40px;
            padding: 12px 20px;
            background-color: #2e2e2e;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            transition: background-color 0.3s;
            width: 300px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .download-link:hover {
            background-color: #444;
        }
        
        .rti-logo {
            display: block;
            margin: 20px auto 30px;
            max-width: 200px;
            height: auto;
        }
        
        .rti-section {
            margin: 30px 0;
            text-align: center;
        }
        
        .rti-section h2 {
            font-size: 18px;
            margin-bottom: 20px;
            color: #333;
        }
        
        .rti-section p {
            margin: 5px 0;
            line-height: 1.6;
        }
        
        .officer-details {
            background-color: #f9f9f9;
            padding: 20px;
            margin: 20px 0;
            border-radius: 4px;
            border-left: 4px solid #2e2e2e;
        }
        
        .officer-name {
            font-weight: bold;
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .signature {
            margin-top: 50px;
            text-align: center;
            font-style: italic;
        }
        
        .signature .title {
            font-weight: bold;
            margin-top: 5px;
        }

          .meetings-container {
            max-width: 1000px;
            margin: 30px auto;
            padding: 20px;
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
            border-radius: 4px;
        }
        
        .page-title {
            text-align: center;
            color: #333;
            margin-bottom: 30px;
            padding-bottom: 10px;
            border-bottom: 2px solid #eee;
        }
        
        .year-section {
            margin-bottom: 40px;
        }
        
        .year-title {
            text-align: center;
            font-size: 24px;
            margin-bottom: 20px;
            padding: 10px;
            background-color: #2e2e2e;
            color: white;
            border-radius: 4px;
        }
        
        /* Styles for 2017 meetings list */
        .meetings-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 15px;
        }
        
        .meeting-item {
            background-color: #f9f9f9;
            border-left: 4px solid #2e2e2e;
            padding: 15px;
            border-radius: 4px;
            transition: transform 0.2s, box-shadow 0.2s;
        }
        
        .meeting-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .meeting-item a {
            color: #333;
            text-decoration: none;
            display: block;
            font-weight: 500;
        }
        
        .meeting-item a:hover {
            color: #000;
            text-decoration: underline;
        }
        
        .special-meeting {
            position: relative;
        }
        
        .special-meeting::after {
            content: "Special";
            position: absolute;
            top: -10px;
            right: 10px;
            background-color: #e74c3c;
            color: white;
            font-size: 12px;
            padding: 3px 8px;
            border-radius: 10px;
        }
        
        /* Styles for 2016 meetings table */
        .meetings-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        
        .meetings-table th {
            background-color: #2e2e2e;
            color: white;
            padding: 12px;
            text-align: center;
            border: 1px solid #ddd;
        }
        
        .meetings-table td {
            padding: 12px;
            text-align: center;
            border: 1px solid #ddd;
            vertical-align: middle;
        }
        
        .meetings-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .meetings-table a {
            color: #333;
            text-decoration: none;
            font-weight: 500;
            display: inline-block;
            padding: 5px 10px;
            border-radius: 4px;
            transition: background-color 0.2s;
        }
        
        .meetings-table a:hover {
            background-color: #eee;
            text-decoration: underline;
        }
        
        .separator {
            height: 2px;
            background-color: #eee;
            margin: 30px 0;
            border: none;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .meetings-list {
                grid-template-columns: 1fr;
            }
            
            .meetings-table {
                font-size: 14px;
            }
            
            .meetings-table th, 
            .meetings-table td {
                padding: 8px;
            }
        }