* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Poppins', sans-serif;
  background: #f4f9ff;
  color: #222;
  overflow-x: hidden;
}
#edu{
  padding:10px 15px 5px 10px;
}
/* Animations */
.fade-in {
  animation: fadeIn 1.5s ease-in;
}
.slide-up {
  animation: slideUp 1.2s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
/* Define the keyframes for color change */
@keyframes colorChange {
  0% { color: #333; } /* Starting color */
  25% { color: #ff6347; } /* Change to red */
  50% { color: #1e90ff; } /* Change to blue */
  75% { color: #32cd32; } /* Change to green */
  100% { color: #ff6347; } /* Loop back to red */
}

.description {
  font-size: 1.1em;
  line-height: 1.6;
  transition: color 0.5s ease-in-out;
  animation: colorChange 5s infinite; /* Apply the animation */
}

/* Navigation */
.navbar {
  background: #ffffff;
  padding: 0px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #bfe2dd;
}
.nav-wrapper {
  display: flex;
  align-items: center;  /* This aligns logo and links vertically */
  justify-content: space-between;
  padding: 10px 20px;   /* Optional: gives vertical spacing */
}

.logo {
  font-size: 26px;
  font-weight: 700;
  color: #00a88e;
  line-height: 1; /* Ensures it aligns well with nav links */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
}
.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-links li a:hover {
  color: #00a88e;
}
.cta-buttons a {
  margin-left: 12px;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-outline {
  border: 2px solid #00a88e;
  color: #00a88e;
}
.btn-outline:hover {
  background-color: #00a88e;
  color: white;
}
.btn-primary {
  background-color: #00a88e;
  color: white;
}
.btn-primary:hover {
  background-color: #008d78;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #e1f7f4, #f4f9ff);
  padding: 80px 0;
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
}
.text-content h1 {
  font-size: 42px;
  font-weight: 700;
}
.text-content h1 span {
  color: #00a88e;
}
.text-content p {
  margin: 18px 0;
  font-size: 18px;
  color: #444;
}
.search-bar {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.search-bar input {
  padding: 12px;
  width: 320px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.search-bar input:focus {
  outline: none;
  border-color: #00a88e;
  box-shadow: 0 0 0 3px rgba(0,168,142,0.2);
}
.btn-search {
  padding: 12px 24px;
  background-color: #00a88e;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn-search:hover {
  background-color: #008d78;
}
.stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}
.stats div {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  transition: transform 0.3s ease;
}
.stats div:hover {
  transform: scale(1.1);
}
.stats strong {
  display: block;
  font-size: 24px;
  color: #00a88e;
}

/* Cards */
.card-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.card-button {
  background: #00a88e;
  color: white;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 168, 142, 0.3);
}
.card-button:hover {
  background: #008d78;
  transform: translateY(-3px);
}

/* Responsive */
@media (min-width: 768px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
  .text-content {
    flex: 1;
  }
  .card-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* Section Wrapper */
.tools-section {
  background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
  padding: 80px 20px;
  animation: fadeInUp 1s ease;
}

/* Section Title */
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
}
.section-title span {
  color: #00a88e;
  font-weight: 800;
  display: inline-block;
  position: relative;
}
.section-title span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #00a88e;
  left: 0;
  bottom: -6px;
  border-radius: 10px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-content: center;
}

/* Responsive fallback for tablets */
@media (max-width: 1024px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive fallback for small screens */
@media (max-width: 600px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
}


/* Card Base Style */
.tool-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Hover Effects */
.tool-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 168, 142, 0.15);
  border-color: #00a88e;
}
.tool-card:hover .tool-icon {
  transform: rotate(10deg) scale(1.1);
}
.tool-card:hover a {
  color: #007c67;
}

/* Icon */
.tool-icon {
  font-size: 36px;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
  color: #00a88e;
}

/* Title */
.tool-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

/* Description */
.tool-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Link */
.tool-card a {
  font-weight: 600;
  text-decoration: none;
  color: #00a88e;
  font-size: 15px;
  transition: color 0.3s ease;
  display: inline-block;
  position: relative;
}
.tool-card a::after {
  content: '';
  width: 0%;
  height: 2px;
  background: #00a88e;
  position: absolute;
  bottom: -3px;
  left: 0;
  transition: width 0.3s ease;
}
.tool-card a:hover::after {
  width: 100%;
}

/* Card Color Variants */
.tool-card.green {
  background: linear-gradient(135deg, #e6fdf9 0%, #ffffff 100%);
}
.tool-card.blue {
  background: linear-gradient(135deg, #e5f5ff 0%, #ffffff 100%);
}

/* Fade Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Fixes */
@media (max-width: 600px) {
  .section-title {
    font-size: 26px;
  }
  .tool-card {
    padding: 20px;
  }
  .tool-card h3 {
    font-size: 18px;
  }
  .tool-card p {
    font-size: 14px;
  }
}

* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
    }

    body {
      background: #fff;
      padding: 20px;
      text-align: center;
    }

    h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .description {
      font-size: 1rem;
      max-width: 900px;
      margin: 0 auto 30px;
      color: #333;
    }

    .slider-container {
      position: relative;
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      overflow: hidden;
    }

    .card-slider {
      display: flex;
      transition: transform 0.4s ease-in-out;
    }

    .card {
      min-width: 270px;
      max-width: 270px;
      background-color: #eee;
      border-radius: 15px;
      margin: 0 10px;
      padding: 20px;
      text-align: center;
      flex-shrink: 0;
      transition: transform 0.3s;
    }

    .card img {
      max-width: 100%;
      height: auto;
      margin-bottom: 15px;
    }

    .card p {
      font-weight: bold;
    }

    .nav-button {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: #000;
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      cursor: pointer;
      font-size: 20px;
      z-index: 2;
    }

    .nav-button.left {
      left: 0;
    }

    .nav-button.right {
      right: 0;
    }

    .buttons {
      margin-top: 20px;
    }

    .buttons button {
      padding: 10px 20px;
      border: none;
      border-radius: 30px;
      margin: 0 10px;
      cursor: pointer;
      font-size: 1rem;
    }

    .explore {
      background-color: #29c5f6;
      color: white;
    }

    .guidance {
      background-color: #0fdb9b;
      color: black;
    }
     .slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
  }

  .card-slider {
    display: flex;
    transition: transform 0.5s ease;
    padding: 20px 0;
  }

  .card {
    min-width: 270px;
    max-width: 270px;
    background-color: #fdf7e3; /* Contrasting background */
    border-radius: 16px;
    margin: 0 15px;
    padding: 20px;
    text-align: center;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }

  .card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .card img {
    max-width: 100%;
    height: auto;
    margin-bottom: 12px;
    border-radius: 12px;
    transition: transform 0.4s ease;
  }

  .card:hover img {
    transform: scale(1.05);
  }

  .card-text {
    font-size: 1.2em;
    font-weight: bold;
    color: #00a88e;
    margin-top: 10px;
    transition: color 0.3s ease;
  }

  .card:hover .card-text {
    color: #007a6e;
  }

  .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 22px;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }

  .nav-button:hover {
    background-color: #00a88e;
    transform: scale(1.1);
  }

  .nav-button.left {
    left: 10px;
  }

  .nav-button.right {
    right: 10px;
  }

  footer {
    margin-top: 30px;
    background-color: #00a88e;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
  }

  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .footer-logo img {
    max-width: 120px;
    margin-bottom: 20px;
  }

  .social-icons {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .social-icon {
    font-size: 32px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
  }

  .social-icon:hover {
    transform: scale(1.3);
  }

  .social-icon.instagram:hover { color: #e4405f; }
  .social-icon.mail:hover { color: #d44638; }
  .social-icon.telephone:hover { color: #34b7f1; }
  .social-icon.linkedin:hover { color: #0077b5; }
  .social-icon.facebook:hover { color: #3b5998; }
  .social-icon.whatsapp:hover { color: #25d366; }

  .contact-info {
    margin-top: 20px;
    font-size: 16px;
    color: #ccc;
  }

  .contact-info a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-info a:hover {
    color: #f1c40f;
  }
  /* Add small style for logout button to match */
    .btn-logout {
      cursor: pointer;
      background: none;
      border: 1px solid #00a88e;
      color: #00a88e;
      padding: 5px 12px;
      border-radius: 4px;
      font-weight: 600;
      margin-left: 10px;
    }
    .user-info {
      color: #00a88e;
      font-weight: 600;
      margin-left: 10px;
    }

    @media (max-width: 768px) {
  .nav-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 10px 0;
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .cta-buttons a {
    width: 100%;
    text-align: center;
  }
}


@media (max-width: 768px) {
  .hero-content {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .text-content h1 {
    font-size: 28px;
  }

  .text-content p {
    font-size: 16px;
  }

  .search-bar {
    flex-direction: column;
    align-items: center;
  }

  .search-bar input,
  .btn-search {
    width: 100%;
    max-width: 300px;
  }
}


@media (max-width: 768px) {
  .stats {
    flex-direction: column;
    gap: 20px;
  }

  .card-actions {
    flex-direction: column;
    align-items: center;
  }

  .card-button {
    width: 80%;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .tools-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .webinar-header h1 {
    font-size: 24px;
  }

  .webinar-card {
    padding: 15px;
  }

  .webinar-title {
    font-size: 16px;
  }

  .webinar-date,
  .webinar-description {
    font-size: 13px;
  }

  .webinar-card a {
    font-size: 13px;
  }
}


@media (max-width: 768px) {
  .slider-container {
    padding: 0 10px;
  }

  .card {
    min-width: 220px;
    margin: 0 8px;
    padding: 15px;
  }

  .card-text {
    font-size: 1em;
  }

  .nav-button {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}


  /* 🌌 Modal Background */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 9999;
}

.popup-overlay.show {
  visibility: visible;
  opacity: 1;
}

/* 📦 Popup Box with Glassmorphism */
.popup-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 30px 40px;
  width: 320px;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transform: translateY(-20px) scale(0.95);
  opacity: 0;
  transition: all 0.5s ease;
}

.popup-overlay.show .popup-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* 📝 Typography */
.popup-box h2 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}

.popup-box p {
  font-size: 14px;
  margin-bottom: 25px;
  color: #eee;
}

/* 🔘 Button Style */
.popup-box button {
  padding: 10px 26px;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #00bfa5, #00695c);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.popup-box button:hover {
  background: linear-gradient(135deg, #00cdb6, #004d40);
  transform: scale(1.05);
}


.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: 80px auto;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 700px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  position: relative;
  animation: fadeIn 0.4s ease;
}

.close-btn {
  color: #333;
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 10px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}


.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 12px;
  max-width: 700px;
  width: 90%;
  text-align: center;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #555;
  cursor: pointer;
}

/* ⭐ Floating Button */
#rateUsBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: teal;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 10000;
  transition: transform 0.3s ease;
}

#rateUsBtn:hover {
  transform: scale(1.1);
  background-color: #00897b;
}

/* 🪟 Modal */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 12px;
  max-width: 700px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #444;
  cursor: pointer;
}

#typingText {
  font-size: 28px;
  font-weight: 600;
  color: #0d9488;
  font-family: 'Poppins', sans-serif;
  white-space: nowrap;
  border-right: 2px solid #0d9488;
  overflow: hidden;
}


body {
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
  margin: 0;
  padding: 20px;
}

.slider-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.card-slider {
  display: flex;
  transition: transform 0.4s ease-in-out;
  padding: 20px 0;
}

.card {
  min-width: 270px;
  max-width: 270px;
  margin: 0 10px;
  background: #fff3e0;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 12px;
}

.card-text {
  font-size: 18px;
  font-weight: bold;
  color: #00a88e;
}

.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #00a88e;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
  z-index: 10;
}

.nav-button.left {
  left: 10px;
}
.nav-button.right {
  right: 10px;
}

.search-dropdown {
  position: absolute;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #ccc;
  z-index: 1000;
  border-radius: 5px;
  padding: 10px;
  display: none;
}

.search-dropdown.visible {
  display: block;
}

.search-dropdown p {
  padding: 6px;
  margin: 0;
  cursor: pointer;
  transition: background 0.3s;
}

.search-dropdown p:hover {
  background-color: #f0f0f0;
}

/* 🌟 Search Bar Wrapper */
.search-bar {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 50px auto 0;
  padding: 10px;
  z-index: 99;
  animation: fadeSlide 0.8s ease forwards;
}

/* 🔍 Search Input Box */
#siteSearch {
  width: 100%;
  padding: 16px 22px;
  font-size: 16px;
  border: 2px solid transparent;
  border-radius: 40px;
  outline: none;
  background: #f9f9f9;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

#siteSearch:focus {
  background: #fff;
  border-color: #5b9eff;
  box-shadow: 0 0 10px rgba(91, 158, 255, 0.25);
}




/* 🏷️ Type Badge */
.result-type {
  background: linear-gradient(to right, #5b9eff, #00c9ff);
  color: white;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 5px rgba(91, 158, 255, 0.25);
}

/* 💫 Animations */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popDown {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .search-bar {
    padding: 0 15px;
  }

  #siteSearch {
    font-size: 15px;
    padding: 14px 18px;
  }

  .results-box a {
    padding: 14px 20px;
    font-size: 14px;
  }

  .result-type {
    font-size: 10px;
    padding: 3px 8px;
  }
}

/* 🌟 Search Box */
.results-box {
  position: absolute;
  top: 110%;
  width: 100%;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  backdrop-filter: blur(12px); /* 🧊 Glassmorphism */
  display: none;
  z-index: 999;
  animation: popDown 0.3s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* 🔗 Search Result Links */
.results-box a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  font-size: 15px;
  color: #1a1a1a;
  text-decoration: none;
  transition: background 0.25s ease;
}

.results-box a:hover {
  background: rgba(91, 158, 255, 0.08);
  transform: translateX(4px);
}

.results-box.visible {
  display: block;
  animation: popDown 0.3s ease-in-out;
}


/* 😔 No Results Message */
.no-results {
  text-align: center;
  padding: 30px 20px;
  color: #555;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
}

.no-results i {
  font-size: 24px;
  color: #888;
  display: block;
  margin-bottom: 8px;
}

/* 👓 Font Awesome Search Icon */
.results-box i.fas.fa-magnifying-glass {
  margin-right: 10px;
  color: #5b9eff;
}
