/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background: #0F1126;
  color: #333;
  scroll-behavior: smooth;
  
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: black;
  color: white;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
}
.logo {
  height: 10px;
  right:10px;
  border-radius: 100px;
}
.logo-header {
  background-color: black;
  text-align: center;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInHeader 1.5s ease-in-out forwards;
}

.brand-logo {
  width: 75%;
  height: 2%;
}


.openbtn {
  font-size: 2rem;
  cursor: pointer;
  color: white;
  font-weight: bold;
  background: linear-gradient(135deg, #4db8ff, #5a0bb4, #962d8a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  border: none;
  outline: none;
}
/* Sidebar Base */
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  background-color: #0c0c18;
  overflow-x: hidden;
  transition: 0.4s ease;
  padding-top: 60px;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.5);
}

/* Sidebar open state - controlled via JS */
.sidebar.open {
  width: 240px;
}

/* Sidebar links */
.sidebar a {
  
  padding: 14px 28px;
  text-decoration: none;
  font-size: 1.1rem;
  color: #00f0ff;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s ease, color 0.2s ease;
  font-weight: 600;
  border-radius: 8px;
}

.sidebar a:hover {
  background: rgba(0, 255, 255, 0.1);
  color: #ffffff;
}

/* Close button (X) */
.sidebar .closebtn {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.sidebar .closebtn:hover {
  transform: rotate(90deg);
}

/* Optional: Add blur background effect when open (JS toggled) */
body.sidebar-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  z-index: 1000;
}
/* Hero Section */
#hero {
  text-align: center;
  padding: 50px 20px;
  background: url('tools/logo.png') no-repeat center center/cover;
  color: white;
  position: relative;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

#hero h2, #hero p, .cta-btn {
  position: relative;
  z-index: 2;
}

#hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-in-out;
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-in-out;
}
/* Contact Section Container */
.contact-section {
  background: linear-gradient(to right, #0f0f1a, #161622);
  color: #f4f4f4;
  padding: 1rem 1rem;
  font-family: 'Segoe UI', sans-serif;
  animation: fadeIn 1.2s ease-in-out both;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Headings */
.contact-section h2,
.contact-section h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: slideIn 0.8s ease forwards;
}

.contact-section h3 {
  margin-top: 1rem;
  font-size: 1rem;
}

/* Description Text */
.contact-section p {
  font-size: 1.05rem;
  color: #cccccc;
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 2.5rem;
  animation: fadeIn 1s ease-in-out;
}

/* Contact Info List */
.contact-info {
  list-style: none;
  padding-left: 0;
  margin-bottom: 3rem;
  animation: fadeIn 1.2s ease-in-out;
}

.contact-info li {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #e0e0e0;
}

.contact-info li i {
  color: #a259ff;
  font-size: 1.1rem;
  
}

.contact-info a {
  color: #a259ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #d1a3ff;
  text-decoration: underline;
}
/* === Contact Form Section === */

#contact-form-section {
  padding: 60px 20px;
  background: #f8f9fa;
}

.form-container {
  max-width: 700px;
  margin: auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
  text-align: center;
  color: #333;
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #444;
  font-size: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
  background-color: #fdfdfd;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  text-align: center;
}

.form-submit button {
  background-color: #4B6CB7;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-submit button:hover {
  background-color: #3953a4;
}
.chinaris-cta {
  background: linear-gradient(135deg, #4db8ff, #5a0bb4, #962d8a);
  color: white;
  border: none;
  align-items: center;
  padding: 15px 30px;
  font-size: 0.7rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}


.chinaris-cta:hover {
  background: #5a0bb4;
}
#chinaris-cta button a{
  text-decoration: none;
  color: aliceblue;
}
.chinaris {
  text-align: center;
  padding: 50px 20px;
  background: url('chinaris.png') no-repeat center center/cover;
  color: white;
  position: relative;
}

.chinaris::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.cta-button {
  position: relative;
  z-index: 2; /* Higher than ::before's z-index */
  background: linear-gradient(to right, #3b82f6, #9333ea); /* Or your gradient */
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  decoration: none;
}
.cta-button a{
  text-decoration: none;
  color:white;
  font-size: 0.8rem;
}




#contact i {
  color: #4db8ff;
  margin-right: 10px;
}

#contact a {
  color: white;
  text-decoration: none;
}

.text {
  color: white;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.3);
  text-align: center;
  align-items: center;
}
.contact-info {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}




/* Our Services Section */
#about-us {
  padding: 50px 20px;
  background: #0F1126;
  text-align: center;
  color: white;
}

#about-us h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: white;
  position: relative;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.service-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 25px;
  border-radius: 12px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 255, 255, 0.2);
}

.service-item i {
  font-size: 1.5rem;
  margin-right: 10px;
  color: #4db8ff;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.service-description {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.6;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* CHINARIS CTA Section */
#chinaris-cta {
  text-align: center;
  padding: 40px 20px;
  background-color: #0F1126;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px); /* ✨ blur effect */
  -webkit-backdrop-filter: blur(6px); /* Safari support */
  overflow: auto;
}

.modal-content {
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px); /* ✨ blur effect */
  -webkit-backdrop-filter: blur(6px); /* Safari support */
  margin: 5% auto;
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  position: absolute;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 25px;
  font-size: 35px;
  cursor: pointer;
  color: white;
  font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-top: 8px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.95rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.1);
  outline: none;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border: 1px solid #38bdf8;
  box-shadow: 0 0 5px rgba(56, 189, 248, 0.5);
}

.contact-form label {
  color: #fff;
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

/* Submit Button */
.contact-form .cta-button {
  background-color: #38bdf8;
  color: #000;
  padding: 12px 25px;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form .cta-button:hover {
  background-color: #0ea5e9;
}

.cta-button {
  background-color: #4B6CB7;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 0.7rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #3a56a0;
}


/* Footer Styling */
footer {
  background-color: #0b0e1b;
  color: #cccccc;
  padding: 40px 20px 30px;
  font-size: 0.95rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer .footer-links {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;  /* Stack vertically */
  align-items: flex-start; /* Align to the left */
  text-align: left;
  gap: 8px;
  padding-left: 20px; /* Optional: adds some spacing from the edge */
}


footer .footer-links a {
  color: #4db8ff;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

footer .footer-links a:hover {
  color: #00ffff;
}

footer .social-icons {
  margin-bottom: 15px;
}

footer .social-icons a {
  color: #1e90ff;
  margin: 0 8px;
  font-size: 1.2rem;
  transition: transform 0.3s, color 0.3s;
}

footer .social-icons a:hover {
  color: #00ffff;
  transform: scale(1.2);
}

footer p {
  font-size: 0.85rem;
  color: white;
  margin-top: 10px;
}

footer a.credits {
  color: #4db8ff;
  text-decoration: underline;
  font-weight: 500;
}

footer a.credits:hover {
  color: #00ffff;
}
/* ABOUT PAGE STYLES */



#about-us h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  display: flex;
  flex-direction: column; /* Stack icon and text vertically */
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.6rem;
  color: white;
  letter-spacing: 0.3px;
}
#about-us h2 i {
  font-size: 1.6rem;
  color: #58a6ff;
}

#about-us p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #dcdcdc;
  margin-bottom: 2rem;
}

#about-us strong {
  font-weight: 700;
}

#about-us ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

#about-us ul li {
  display: flex;
  align-items: center;
  padding: 1rem 1.2rem;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 4px solid #4db8ff;
  border-radius: 10px;
  font-size: 1rem;
  color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  gap: 12px;
}

#about-us ul li i {
  font-size: 1.3rem;
  color: #4db8ff;
  transition: transform 0.3s ease;
}

#about-us ul li:hover {
  background-color: rgba(77, 184, 255, 0.07);
  transform: translateX(5px);
  border-left-color: #5a0bb4;
}

#about-us ul li:hover i {
  transform: scale(1.2) rotate(6deg);
  color: #5a0bb4;
}

.services ul {
  list-style: none;
  padding: 0;
  color: aliceblue;
}

.services ul li {
  font-size: 1rem;
  margin: 0.8rem 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: #58a6ff;
}

.services ul li i {
  font-size: 1.2rem;
  color: #58a6ff;
}

.services h2 {
  margin-top: 3rem;
  margin-bottom: 1.2rem;
  font-size: 2rem;
}



/* AOS animation adjustments */
[data-aos] {
  transition: all 0.6s ease-in-out !important;
}

/* Responsive tweaks */
@media (max-width: 600px) {
  #about-us h2 {
    font-size: 1.7rem;
  }

  #about-us p {
    font-size: 1rem;
  }

  #hero h2 span:last-of-type {
    font-size: 2rem;
    -webkit-text-stroke: 0.8px silver;
  }
}
h2 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* or any preferred font */
  font-weight: 700; /* bold */
  font-size: 1.8rem; /* adjust as needed */
  color: white; /* soft cyan blue - you can change this */
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  text-align: center;
}
p {
  font-size: 1.125rem;
  font-weight: 400;
  color: #dddddd;
  font-family: 'Segoe UI', sans-serif;
}
h3 {
  font-size: 1.25rem; /* Adjust size as needed */
  color: aquamarine;     /* Replace with your desired color */
}
.blog-entry {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-image {
  width: 100%;
  height: auto;
  display: block;
}

.blog-title {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 16px;
  background: #f5f5f5;
  color: #333;
}

.blog-date {
  font-size: 0.9rem;
  padding: 0 16px;
  color: #777;
}

.blog-summary {
  padding: 0 16px 12px;
  color: #444;
  line-height: 1.6;
}

.blog-tags {
  padding: 0 16px 12px;
}

.blog-tags span {
  display: inline-block;
  background: #e0e7ff;
  color: #1e3a8a;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  margin: 2px 6px 2px 0;
}

.read-more {
  margin: 0 16px 16px;
  padding: 10px 16px;
  background: #1e3a8a;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.read-more:hover {
  background: #3749a3;
}

.blog-full {
  padding: 0 16px 20px;
  color: black;
  font-size: 1rem;
  line-height: 1.7;
  background-color: #fafafa;
  display: none;
}

.blog-full h3,
.blog-full h4 {
  color: #1e3a8a;
  margin-top: 20px;
}

.blog-full ul {
  padding-left: 20px;
  list-style-type: disc;
}

.blog-full p {
  margin-top: 12px;
  color: black;
}

@media (max-width: 768px) {
  .blog-title {
    font-size: 1.2rem;
  }
  .read-more {
    width: 33%;
    margin:4% 35%;
  }
}
/* ========== Search & Filter Section ========== */
.search-filter {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  padding: 20px 15px;
  margin-bottom: 25px;
  background-color: #eef2ff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}


/* Input/Select wrapper with icon */
.input-icon {
  position: relative;
  flex: 1;
  min-width: 220px;
}

/* Font Awesome icon positioning */
.input-icon i {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #1e3a8a;
  font-size: 1rem;
  pointer-events: none;
}

/* Input and Select shared styling */
.input-icon input,
.input-icon select {
  width: 87%;
  padding: 10px 12px 10px 38px; /* left padding for icon */
  font-size: 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background-color: #f8fafc;
  color: #1e3a8a;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.input-icon input::placeholder {
  color: #64748b;
}

/* Focus states */
.input-icon input:focus,
.input-icon select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
  background-color: #ffffff;
}

/* Mobile responsive: Full width inputs */
@media (max-width: 600px) {
  .input-icon {
    flex: 1 1 100%;
  }
}
.dropdown-container {
  display: none; /* Hidden by default */
  padding-left: 30px;
  background-color: #333;
}

.dropdown-container a {
  padding: 8px 16px;
  display: block;
  color: #fff;
  text-decoration: none;
}

.dropdown-container a:hover {
  background-color: #444;
}
.footer-dropdown-container {
  display: none;
  padding-left: 30px;
  
}

.footer-dropdown-container a {
  display: block;
  padding: 6px 0;
  color: #ccc;
  text-decoration: none;
}

.footer-dropdown-container a:hover {
  color: #fff;
}
  /* ===== CHINARIS CTA Section ===== */
    

    #chinaris-cta {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 4rem 1rem;
      background-color: #0d1117;
    }

    .cta-button {
      background: linear-gradient(135deg, #4db8ff, #5a0bb4, #962d8a);
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

    .cta-button i {
      font-size: 1.2rem;
    }

    .cta-button:hover {
      background: #0e8f6e;
      transform: translateY(-2px);
    }
.faq-chat-section {
  background: #f4f6fb;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
}

.faq-chat-container {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.chat-window {
  height: 270px;
  overflow-y: auto;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.user-msg, .bot-msg {
  padding: 12px 16px;
  border-radius: 20px;
  max-width: 80%;
  line-height: 1.5;
  font-size: 0.95rem;
  display: inline-block;
  position: relative;
}

.user-msg {
  align-self: flex-end;
  background-color: #d0e6ff;
  color: #000;
}

.bot-msg {
  align-self: flex-start;
  background-color: #ebecf0;
  color: #333;
}

.typing {
  font-style: italic;
  opacity: 0.7;
}

.chat-input-area {
  display: flex;
  gap: 8px;
  align-items: center;
}

.chat-input-area input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 30px;
  border: 1px solid #ccc;
  outline: none;
  font-size: 1rem;
}

.chat-input-area button {
  background-color: #3b3f58;
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s;
}

.chat-input-area button:hover {
  background-color: #4c5270;
}

.suggestions-box {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.suggestion {
  background-color: #edf0f5;
  color: #333;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  border: 1px solid #ccc;
  transition: background 0.3s ease;
}

.suggestion:hover {
  background: #dbe3ec;
}
/* Privacy Policy Section - Dark Theme */
.privacy-policy-section {
  max-width: 960px;
  margin: 40px auto;
  padding: 20px;
  font-family: 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  background: #1a1c2e; /* Darker background to match body */
  color: #e0e0e0; /* Light text color */
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5); /* Darker shadow */
}

.privacy-policy-section h1,
.privacy-policy-section h2 {
  color: #ffffff;
  border-bottom: 2px solid #333; /* Darker border for dark mode */
  padding-bottom: 5px;
  margin-top: 30px;
}

.privacy-policy-section ul {
  padding-left: 20px;
}

.privacy-policy-section a {
  color: #4da6ff; /* Lighter blue for visibility */
  text-decoration: underline;
}

.footer-note {
  font-size: 0.9rem;
  color: #aaa;
  text-align: center;
  padding-top: 10px;
}
#share-button {
  position: relative;
  display: inline-block;
  font-family: sans-serif;
}

#share-button button {
  padding: 8px 6px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#share-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 10px;
  z-index: 999;
  min-width: 160px;
  border-radius: 5px;
}

#share-menu a {
  display: block;
  margin-bottom: 8px;
  color: inherit;
  text-decoration: none;
  font-size: 14px;
}

#share-menu a i {
  margin-right: 8px;
}

#share-menu a:hover {
  text-decoration: underline;
}