/* Reset and base styles */
* {
  scroll-behavior: smooth;
  font-family: "Poppins", Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  color: #222;
  background-color: #fff;
}

/* Header layout */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  overflow: visible !important;
}

.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5em;
  margin: 0 auto;
  background-color: #fff;
  min-height: 4em;
}

@media (max-width: 800px) {
  .menu {
    min-height: 8em;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8em;
  margin-right: 1.2em;
  width: 200px;
}

.links, .formlinks {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.formlinks {
  margin: 3em 20% 0 20%;
  justify-content: center;
  flex-wrap: wrap;
}

.formlinks a:hover {
  text-decoration: underline;
}

.links a, .formlinks a {
  color: black;
  text-decoration: none;
  padding: 0.5em 1em;
  transition: background-color 0.3s ease;
}

.links a:hover {
  color: #fff;
  background-color: #000;
  border-radius: 4px;
}

.hamburger {
  padding: 2px;
  width: 50px;
  height: 50px;
  display: none;
}

@media (max-width: 800px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .links {
    position: absolute;
    top: 4em;
    right: 1em;
    background-color: #fff !important;
    flex-direction: column;
    padding: 1em;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .links.active {
    display: flex;
  }

  .links ul {
    flex-direction: column;
    width: 100%;
  }

  .dropdown .dropdown-menu {
    position: relative;
    box-shadow: none;
  }

  .dropdown.open .dropdown-menu {
    display: flex;
  }
}

footer {
  width: 100%;
  z-index: 1000;
}

.lower-links {
  display: flex;
  background-color: #000;
  opacity: 90%;
  padding: 0.5em;
  justify-content: center;
  width: 100%;
}

.linksA {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.linksA a {
  color: white;
  text-decoration: none;
  padding: 0.5em;
  transition: background-color 0.3s ease;
}

.linksA a:hover {
  color: black;
  background-color: #fff;
  border-radius: 4px;
}

/* Dropdown Menu Styles */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  border: none;
  background-color: #fff;
  border-radius: 4px;
  padding: 0.5em 1em;
  font-size: 1em;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-menu a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-menu,
.dropdown-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}


/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-menu {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #000;
  color: #fff;
}


  #note {
    field-sizing: content; /* Textarea resize */
    border-radius: 6px;
    border: none;
    min-width: 25em;
    min-height: 15em;
  }

  #aboutus {
    width: 60%;
    margin-top: 5em;
    margin-bottom: 5em;
    text-align: center;
  }

@media (max-width: 700px) {
  #aboutus {
    width: 96%;
    margin: 2em auto;
  }
}

  .contact {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .IFA {
    display: flex;      
    flex-direction: column; 
    justify-content: center;
    align-items: center;
    margin-bottom: 5em;
    margin-top: 5em;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
  }

 address {
    text-align: center;
    margin-top: 2em;
    margin-bottom: 2em;
    margin: 2em auto;
    font-style: normal;
  }

.blog-section {
  width: 100%;
  max-width: 650px;
  margin: 3em auto;
  padding: 2em;
  background: #fafafa;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: left;
}

.blog-section h2 {
  text-align: center;
  margin-bottom: 1.2em;
}

.blog-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1em 0;
}

.blog-list li {
  margin-bottom: 1.1em;
  padding-bottom: 0.7em;
  border-bottom: 1px solid #eee;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.blog-list li:last-child {
  border-bottom: none;
}

.blog-list a {
  color: #1252a2;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.blog-list a:hover {
  color: #007bff;
  text-decoration: underline;
}

.blog-more {
  text-align: center;
  margin-top: 2em;
}



.social-share-widget {
  margin: 20px 0;
  text-align: center;
}

.social-share-widget h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #333;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
  font-size: 0.9em;
  transition: background-color 0.3s;
}

.share-btn i {
  margin-right: 8px;
}

.share-btn.facebook {
  background-color: #3b5998;
}

.share-btn.facebook:hover {
  background-color: #2d4373;
}

.share-btn.whatsapp {
  background-color: #25d366;
}

.share-btn.whatsapp:hover {
  background-color: #1da851;
}

.share-btn.twitter {
  background-color: #1da1f2;
}

.share-btn.twitter:hover {
  background-color: #1a91da;
}

@media (max-width: 600px) {
  .share-buttons {
      flex-direction: column;
      gap: 10px;
  }
}

.saform { max-width: 600px; margin: 0 auto; padding: 20px; }