/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

h1, h2, h3 {
    margin: 0;
    text-align: center;
}

a {
    text-decoration: none;
    color: #000;
}

a:hover {
    text-decoration: underline;
}

/* Header */
.header {
    text-align: center;
    background-color: #f4f4f4;
    padding: 20px 0;
}

.logo {
    max-width: 100px; /* Adjust for larger logo */
    height: auto;
}

/* Navigation Bar */


.navbar {
    background-color: #4a90e2;
    text-align: center;
    padding: 5px 0;
   }


.navbar ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

.navbar li {
    margin: 0 0px;
}

.navbar a {
    color: #fff;
    font-weight: bold;
    }

@media (max-width: 768px) { 
  .navbar ul {
    list-style: none;
    flex-direction: row; 
    text-align: center; 
    justify-content: space-around;
  }

  .navbar li {
    margin: 0 0px; 
  }
}


/* Main Content */
.main-content {
    display: flex;
    justify-content: center;
    align-items: center;

    padding: 10px;
    flex-wrap: wrap; /* Allow content to wrap on smaller screens */
}

.left-section {
    display: flex; /* Enable flexbox for the container */
    flex-direction: column; /* Stack items vertically */
    justify-content: center; /* Center items vertically within the container */
    align-items: center; /* Center items horizontally within the container */
  
    max-width: 300px; /* Set a maximum width for responsiveness */ 
    
    
}

h2 {
    font-size: 2rem;  /* Set a relative font size */
    margin-bottom: 15px;
}

.right-section {
    max-width: 800px
    /* Adjust for larger right section */
}

.profile {
    text-align: center;
    margin-bottom: 20px;
   
}
.profile-pic {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid #0984e3;
            margin-bottom: 15px;
            transition: transform 0.3s ease;
}

/* Style for the paragraph */
p {
    text-align: justify;
    font-size: 16px;
    line-height: 1.6;
    font-family: Arial, sans-serif;
    color: #333;
    margin: 5px 0;
}




.e-services {
    list-style-type: none;
    margin-bottom: 5px;
    text-align: center;
}

.news {
    padding: 20px;
}

.button {
    display: block;
    background-color: #4a90e2;
    color: #fff;
    padding: 0px;
    margin: 2px 0;
    text-align: left;
    border-radius: 1px;
    width: 100%;
    left: 0;
}

.button:hover {
    background-color: #3a7adf;
}

.new {
    padding: 10px;
    color: red;
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: #4a90e2;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: flex-start; /* Align items to the left (start) horizontally */
    align-items: flex-start; /* Align items to the top of the container vertically */
}



.footer h3 {
    margin-bottom: 10px;
}

.footer p, .footer a {
    color: #fff;
}

.social-icons img {
    width: 30px; /* Increase icon size */
    margin: 0 5px;
}

.new-icon {
    height: 5em;
    vertical-align: middle;
    margin-right: 5px;
}
.link-icon {
    height: 1em;
    vertical-align: middle;
    margin-right: 5px;
}

.location-icon {
    height: 1em;
    vertical-align: middle;
    margin-right: 5px;
}

.contact-icon {
    height: 20px;
    width: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

.quick-links {
    margin-right: 20px;
    margin-left: 20px; /* Adjust margin */
}
.about {
  display: flex; /* Enable flexbox for the container */
  flex-direction: column; /* Stack items vertically */
  justify-content: flex-start; /* Align items to the top of the container */
  align-items: flex-start; /* Align items to the left within the container */
  
  max-width: 300px; /* Set a maximum width for responsiveness */ 
  margin-left: 10px; /* Corrected margin syntax */
  margin-right: 10px; /* Corrected margin syntax */
}
  

.contact {
align-items: left;
padding: 20px;
margin-left: 10px;
margin-right: 10px;
text-align: left;
}


.copyright {
text-align: center;
}

.dropdown {
  
  
  min-width: 10px;
  box-shadow: 0px 0px 0px 0px rgba(0,1,0,0.2);
  z-index: 1;
  left: 0; /* Position the content to the left of the button */
}

.dropdown-content {
  display: none;
  position: absolute;
  left: 0px; /* Adjust this value as needed */ 
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column; 
    }

    .left-section, .right-section {
        width: 100%;
        margin-right: 10px; 
    }

    .footer {
        flex-direction: column;
        text-align: space-around; 
	justify-content: top; /* Center items vertically within the container */

    }
}

