
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    position: relative;
}

.top-bar {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.govt-banner img {
    height: 50px;
}

.language-translator select {
    padding: 5px;
}

.navbar {
    background-color: #007BFF;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.navbar .logo img {
    height: 50px;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar ul li {
    margin: 0 10px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.navbar ul li a:hover {
    background-color: #0056b3;
}

.navbar .dropdown {
    position: relative;
}

.navbar .dropdown .dropdown-content {
    display: none;
    position: absolute;
    background-color: #007BFF;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.navbar .dropdown:hover .dropdown-content {
    display: block;
}

.navbar .dropdown .dropdown-content a {
    color: white;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #0056b3;
}

.navbar .dropdown .dropdown-content a:hover {
    background-color: #0056b3;
}




.search-container {
    display: flex;
    align-items: center;
    max-width: 300px; /* Adjust as needed */
    width: 100%;
    position: relative;
}

#search-bar {
    flex-grow: 1;
    padding: 8px 12px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

#search-bar:focus {
    border-color: #007bff;
}

#search-button {
    padding: 8px 12px;
    background-color: #51504f;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s;
}

#search-button:hover {
    background-color: #0056b3;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.navbar {
    background-color: #0056b3;
    overflow: hidden;
    padding: 10px 0;
}

.navbar .logo img {
    height: 50px;
    margin-left: 10px;
}

.navbar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

.navbar ul li {
    display: inline;
    padding: 14px 20px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    display: block;
}

.navbar ul li a:hover,
.navbar ul li a.active {
    background-color: #575757;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.content {
    padding: 20px;
    min-height: calc(100vh - 140px); /* Adjust according to the height of your header and footer */
    box-sizing: border-box;
}

.contact-section {
    margin-top: 20px;
}

.contact-section p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.card {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.card h3 {
    margin-top: 0;
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: #333;
    color: white;
    position: relative;
    width: 100%;
}

/* Footer Styling */
footer {
    margin-top: auto;
    background-color: #004D99;
    color: yellow;
    padding: 20px;
    text-align: center;
    position: relative; /* or absolute depending on your layout */
    z-index: 10; /* Higher value to bring it on top */
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-section h3 {
    margin-bottom: 10px;
}

.footer-section a {
    color: yellow;
    text-decoration: none;
}

.footer-section .social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.footer-section .social-icons a img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.footer-section .social-icons a img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid yellow;
    padding-top: 10px;
}

.language-translator {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    color: #333;
  }
  
  .language-translator select {
    background: transparent;
    border: none;
    font-size: 14px;
    cursor: pointer;
    outline: none;
  }
  
  .language-translator select:focus {
    outline: none;
  }
  
  .goog-te-gadget-icon {
    display: none;
  }
  
  .goog-te-gadget-simple {
    border: none !important;
    background-color: transparent !important;
    font-size: 14px !important;
    line-height: 1.5;
    color: #333 !important;
  }
  
  .goog-te-gadget-simple a {
    color: #333 !important;
    text-decoration: none;
  }
  
  .goog-te-gadget-simple .goog-te-menu-value {
    padding: 0;
  }
  
  .goog-te-combo {
    padding: 5px;
    font-size: 14px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background-color: #fff;
    margin-left: 5px;
  }
  
  .goog-te-banner-frame.skiptranslate {
    display: none !important;
  }
  
  body {
    top: 0px !important; 
  }
  html, body {
    height: 100%; /* Ensure full height */
    margin: 0; /* Remove default margin */
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Make container at least full height */
}

main {
    flex: 1; /* Allow main to grow */
    padding: 20px; /* Add padding to main content */
}

footer {
   
  
    text-align: center; /* Center text */
    padding: 20px; /* Padding */
}

/* image slider */
.image1 {
 margin: 0;
 display: flex;
 justify-content: center;
 align-items: center;
 
}

.image-scroller {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin: 20px 0;
    
}

.images {
 display: flex;
 width: 100%;
 transition: transform 0.5s ease-in-out;
}

.images img {
 min-width: 100%;
 height: 300px; /* Adjust as needed */
 object-fit: cover;
}