/* Glossary Container */
.thekeyword-glossary-wrapper {
    padding: 40px 5%;
    font-family: "Inter", sans-serif;
    background-color: #f0f2f5;
  }
  
  /* Now the entire letter section (like "A") becomes a card box */
  .thekeyword-letter-group {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px 28px;
    margin-bottom: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e1e4e8;
    transition: box-shadow 0.3s ease;
  }
  
  .thekeyword-letter-group:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
  
  /* Letter Heading (e.g. A, B, C) */
  .thekeyword-letter-heading {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ED592C;
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
}
  
  /* Grid for keywords inside the letter box */
  .thekeyword-entry-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
  }
  
  /* Each keyword card (inside the group box) */
  .thekeyword-entry {
    background-color: #f9fafb;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.02);
    transition: background-color 0.3s ease;
  }
  
  .thekeyword-entry:hover {
    background-color: #eef3f8;
  }
  
  /* Keyword Link */
  .thekeyword-entry a {
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    color: #0366d6;
    display: block;
    transition: color 0.2s ease;
  }
  
  .thekeyword-entry a:hover {
    color: #023b84;
  }
  
  /* Glossary Heading and Search */
.thekeyword-glossary-header {
    max-width: 900px;
    margin: 40px auto 20px;
    text-align: center;
  }
  
  .thekeyword-main-heading {
    font-size: 5em;
    font-weight: 800;
    margin-bottom: 16px;
    color: #ED592C;
}
  
  #thekeyword-search {
    width: 90%;
    max-width: 400px;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease;
}
  
  #thekeyword-search:focus {
    border-color: #0073e6;
    outline: none;
  }
  
  @media (max-width: 768px) {
    .thekeyword-glossary-wrapper {
      padding: 20px 2%;
    }
  
    .thekeyword-letter-heading {
      font-size: 2.5em;
    }
  
    .thekeyword-entry-list {
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
  
    .thekeyword-entry a {
      font-size: 16px;
    }
  
    .thekeyword-main-heading {
      font-size: 4em;
    }
  
    #thekeyword-search {
      width: 80%;
      max-width: none;
  }
    .thekeyword-main-heading {
      font-size: 3em;
      font-weight: 800;
      margin-bottom: 16px;
      color: #ED592C;
      margin-top: 87px;
  }
    
  }



  .thekeyword-alphabet-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
    gap: 10px;
  }
  
  .alphabet-letter {
    font-size: 1rem;
    font-weight: bold;
    color: #ed592c;
    cursor: pointer;
    padding: 5px 10px;
    border: 1px solid #ed592c;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .alphabet-letter:hover {
    background-color: #ed592c;
    color: #fff;
  }
  
  .alphabet-letter.active {
    background-color: #ed592c;
    color: #fff;
  }




/* Footer Container */
.newfooterx-container {
  background: #fff; /* White background */
  color: #333; /* Default text color */
  padding: 0px;
  font-family: 'Poppins', sans-serif;
  border-top: 2px solid #ed592c; /* Orange border at the top */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle box shadow */
}

/* Footer Content */
.newfooterx-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 90%;
  margin: 0 auto;
  padding: 34px 0px;
}
/* Footer Columns */
.newfooterx-column {
  flex: 1;
  min-width: 250px;
}

.newfooterx-logo {
  width: 150px;
  margin-bottom: 20px;
}

.newfooterx-description {
  font-size: 0.8em;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Social Icons */
.newfooterx-social-icons a {
  color: #ed592c; /* Default orange color */
  font-size: 1.2rem;
  margin-right: 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.newfooterx-social-icons a:hover {
  color: #f97316; /* Lighter orange on hover */
  transform: scale(1.2); /* Slight zoom effect */
}

/* Contact Items */
.newfooterx-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.newfooterx-contact-item i {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #ed592c; /* Icon color */
}

/* Resources Links */
.newfooterx-resources,
.newfooterx-quick-links {
  list-style: none;
  padding: 0;
}

.newfooterx-resources li, .newfooterx-quick-links li {
  margin-bottom: 10px;
  font-size: 1em;
}

.newfooterx-resources a,
.newfooterx-quick-links a {
  color: #ed592c; /* Default orange color */
  text-decoration: none;
  transition: color 0.3s ease, border 0.3s ease;
  border-bottom: 1px solid transparent; /* Border for hover effect */
}

.newfooterx-resources a:hover,
.newfooterx-quick-links a:hover {
  color: #f97316; /* Lighter orange on hover */
  border-bottom: 1px solid #f97316; /* Orange underline on hover */
}

/* Newsletter Form */
.newfooterx-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newfooterx-newsletter-input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.newfooterx-newsletter-button {
  background-color: #ed592c;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.newfooterx-newsletter-button:hover {
  background-color: #f97316;
}

/* Map Styling */
.newfooterx-column iframe {
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow for the map */
}

/* Copyright Strip */
.newfooterx-copyright {
  background: #ed592c; /* Orange background */
  color: #fff; /* White text */
  text-align: center;
  padding: 10px 0;
  font-size: 0.9rem;
  margin-top: 20px;
  width: 100%;
}

.newfooterx-copyright p {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .newfooterx-content {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
}
.newfooterx-contact-item span{
  font-size: 0.8em;
}

.newfooterx-column h2,h3{
  color: #ed592c;
    font-size: 1.4em;
}
.newfooterx-column p{
  font-size: 0.8em;
}

  .newfooterx-column {
    text-align: left; /* Left-align text */
  }

  .newfooterx-social-icons {
    justify-content: flex-start; /* Align social icons to the left */
  }

  .newfooterx-resources,
  .newfooterx-quick-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Grid layout for smaller screens */
    gap: 10px;
  }
}

.newfooterx-column h2, h3 {
  color: #ed592c;
  font-size: 1.4em;
}