body.light-theme {
    background-color: rgb(212, 204, 204);
  }
  
  body.light-theme .navbar {
    background: rgba(255, 255, 255, 0.267); /* Darker background for contrast */
    border: 1px solid rgba(0, 0, 0, 0.3); /* Darker border */
  }
  
  body.light-theme .navbar-item {
    color: rgb(0, 0, 0); /* Black text for light theme */
  }
  
  body.light-theme .navbar-item:hover {
    background: rgb(255, 255, 255); /* Darker hover effect */
  }
  
  body.light-theme .testimonials-section h1,
  body.light-theme .testimonials-section h3,
  body.light-theme .testimonials-section p {
    color: black;
  }
  
  /* Toggle Button Styling */
  .theme-toggle-button {
    cursor: pointer;
    background: none;
    border: none;
    width: 34px; /* Fixed width for circle */
    height: 34px; /* Fixed height for circle */
    border-radius: 50%; /* Make it circular */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
  }
  
  .theme-toggle-button:hover {
    background: rgba(255, 255, 255, 0.4);
  }
  
  body.light-theme .theme-toggle-button:hover {
    background: rgb(255, 255, 255); /* Darker hover effect */
  }
  
  .theme-toggle-button .navbar-icon {
    width: 35px; /* Adjust icon size */
    height: 35px;
    filter: invert(0); /* Make icon white in dark theme */
  }
  
  body.light-theme .theme-toggle-button .navbar-icon {
    filter: invert(1); /* Make icon black in light theme */
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    padding: 0;
    font-family: monospace;
    background-color: black;
  }
  /* Dark Theme: Hero Section */
  body:not(.light-theme) .hero h1,
  body:not(.light-theme) .hero p {
    color: white;
  }
  
  body:not(.light-theme) .badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
  }
  
 /* User's Navbar CSS - Kept as provided */
.navbar {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  border-radius: 20px;
  padding: 5px 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 12px;
  left: 10%;
  right: 10%;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.3); /* Lighter border for better contrast */
  }
  
  .navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  }
  
  .navbar-items {
  display: flex;
  justify-content: space-around; /* Distributes items evenly */
  align-items: center;
  width: 100%;
  flex-wrap: wrap; /* Allow wrapping on smaller screens if needed */
  }
  
  /* --- CSS Modifications for SVG --- */
  .navbar-icon {
  width: 24px; /* Adjusted size for typical line icons */
  height: 24px;
  /* border-radius removed - not needed for SVGs */
  /* opacity removed - handled by stroke/fill */
  stroke-width: 1.5; /* Control line thickness */
  flex-shrink: 0; /* Prevent icon from shrinking */
  }
  
  .navbar-item span {
  margin-left: 8px; /* Kept user's spacing */
  white-space: nowrap; /* Prevent text wrapping */
  }
  
  .navbar-item {
  color: rgb(255, 255, 255); /* White text */
  text-decoration: none;
  padding: 10px 15px; /* Kept user's padding */
  border-radius: 15px; /* Slightly adjusted for aesthetics */
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px; /* Kept user's gap */
  }
  .about-icon{
    background: rgba(255, 255, 255, 0.4); /* Kept user's hover */
  }
  
  .navbar-item:hover {
  background: rgba(255, 255, 255, 0.4); /* Kept user's hover */
  }
  
  /* Style for the theme toggle button (similar to links) */
  .theme-toggle-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px; /* Make clickable area slightly larger */
   border-radius: 50%; /* Make it circular */
  }
  .theme-toggle-button:hover {
   background: rgba(255, 255, 255, 0.4);
  }
  /* Hide the span visually but keep for accessibility if needed later */
  .theme-toggle-button span {
  display: none;
  }
  /* Ensure theme toggle icon size is consistent */
  .theme-toggle-button .navbar-icon {
   width: 24px;
   height: 24px;
   margin: 0; /* Remove margin if only icon is shown */
  }
  
  
  /* Hide menu toggle button */
  .menu-toggle {
  display: none;
  }

  /* About Section */
  .about-section {
    padding: 60px 20px;
    max-width: 100%;
    margin-top: 30px;
    margin-left: 30px;
    margin-right: 30px;
  }
  
  .about-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .about-container h1 {
    font-size: 2.5rem;
    margin-top: -12px;
    margin-bottom: 20px;
    color: #2e3a59;
    text-align: center;
  }
  
  .about-container h2 {
    font-size: 1.5rem;
    margin-top: 30px;
    color: #1f2d40;
  }
  
  .about-container p {
    font-size: 1rem;
    margin: 15px 0;
  }
  
  .about-container ul {
    list-style-type: none;
    padding-left: 0;
    margin-top: 10px;
  }
  
  .about-container ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
  }
  
  .about-container ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #00c48c;
  }
  
  .about-team ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
  }
  
  .about-team ul li::before {
    content: "👨‍💻";
    position: absolute;
    left: 0;
  }
  
  
  /* Footer Bottom */

/* Footer Container */
.container-footer {
  width: 100%;
   /* Optional: Limit max width on very large screens */
  margin: 0 auto; /* Center the container */
  padding: 40px 20px 20px 20px; /* Added more top padding */
  background-color: white;
  box-sizing: border-box; /* Include padding in width calculation */
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Newsletter Section */
.newsletter {
  text-align: center;
  margin-bottom: 50px; /* Increased spacing */
}

.newsletter h2 {
  font-size: 24px;
  font-weight: 600;
  color: black;
  letter-spacing: 1px; /* Adjusted spacing */
  margin-bottom: 15px; /* Increased spacing */
  text-align: center;
}

.newsletter p {
  margin-bottom: 25px; /* Increased spacing */
  color: #555; /* Slightly darker text */
  padding: 0 10px; /* Add horizontal padding for text */
  max-width: 600px; /* Limit width of paragraph */
  margin-left: auto; /* Center paragraph */
  margin-right: auto; /* Center paragraph */
}

/* Email Form */
.email-form {
  display: flex; /* Use flexbox for alignment */
  justify-content: center; /* Center items horizontally */
  flex-wrap: wrap; /* Allow wrapping on very small screens if needed */
  max-width: 500px; /* Limit form width */
  margin: 0 auto; /* Center the form */
  border: 1px solid #ccc; /* Lighter border */
  border-radius: 8px; /* Rounded corners for the form */
  overflow: hidden; /* Keep input/button inside rounded corners */
}

.email-form input[type="email"] {
  padding: 12px 15px; /* Increased padding */
  border: none;
  outline: none;
  flex-grow: 1; /* Allow input to take available space */
  min-width: 200px; /* Minimum width before wrapping */
  font-size: 16px;
  box-sizing: border-box;
  border-radius: 8px 0 0 8px; /* Rounded corners on the left */
}

.email-form button {
  padding: 12px 25px; /* Increased padding */
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  white-space: nowrap; /* Prevent button text wrapping */
  border-radius: 0 8px 8px 0; /* Rounded corners on the right */
  transition: background-color 0.3s ease; /* Smooth hover effect */
}

.email-form button:hover {
  background-color: #333; /* Darker background on hover */
}

/* Main Footer Area */
footer {
  display: flex;
  /* Removed justify-content: space-between; to rely on widths/margins */
  flex-wrap: nowrap; /* Prevent wrapping by default */
  padding: 30px 0; /* Increased padding */
  border-top: 1px solid #eee; /* Lighter border */
  margin-bottom: 30px; /* Adjusted spacing */
  width: 100%; /* Ensure footer takes full width */
  box-sizing: border-box;
}

/* Individual Footer Sections */
.footer-section {
  /* Adjust width slightly less than 1/3 to account for padding/margins */
  width: 33%;
  padding: 0 10px; /* Reduced padding slightly */
  box-sizing: border-box;
  margin-bottom: 30px; /* Add space below each section */
  /* Removed min-width to allow shrinking */
  vertical-align: top; /* Align columns at the top */
}

.footer-section h3 {
  font-size: 16px;
  font-weight: 600; /* Slightly bolder */
  margin-bottom: 15px;
  color: #333;
}

.footer-section ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px; /* Reduced margin slightly */
}

.footer-section ul li a {
  text-decoration: none;
  color: #555; /* Consistent text color */
  font-size: 14px;
  transition: color 0.3s ease; /* Smooth hover effect */
  display: inline-block; /* Needed for potential wrapping */
  /* Allow long words (like email) to break */
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all; /* More aggressive breaking if needed */
}

.footer-section ul li a:hover {
  color: #000; /* Darker color on hover */
  text-decoration: underline;
}

.footer-section.bio p {
  font-size: 14px;
  line-height: 1.6; /* Adjusted line height */
  color: #666;
  /* Allow text wrapping */
  word-wrap: break-word;
  overflow-wrap: break-word;
}
/* Add specific styling for bio section heading if needed */
.footer-section.bio h3 {
  /* Keep consistent with other h3 or adjust as needed */
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

/* Copyright Area */
.copyright {
  text-align: center;
  font-size: 13px; /* Slightly smaller */
  color: #aaa;
  padding: 15px 0 0 0; /* Add padding above */
  border-top: 1px solid #eee; /* Separator line */
  margin-top: -10px; /* Adjust based on footer margin-bottom */
}

/* --- Responsive Styles --- */

/* Medium Screens (Tablets) */
@media (max-width: 768px) {
  /* Keep footer as flex, but ensure no wrap */
  footer {
    flex-wrap: nowrap;
    padding: 20px 0; /* Adjust padding */
  }

  .footer-section {
    /* Maintain 3 columns, adjust width if needed */
    width: 33%;
    padding: 0 8px; /* Further reduce padding */
    /* Ensure text aligns left */
    text-align: left;
  }

  .footer-section h3 {
    font-size: 15px; /* Slightly smaller heading */
    /* Ensure text aligns left */
    text-align: left;
  }
  .footer-section ul {
    /* Ensure list aligns left */
    display: block;
    text-align: left;
  }
  .footer-section ul li a {
    font-size: 13px; /* Slightly smaller font */
  }

  .footer-section.bio p {
    font-size: 13px; /* Slightly smaller font */
    /* Ensure text aligns left */
    text-align: left;
  }
}

/* Small Screens (Mobiles) */
@media (max-width: 480px) {
  .container-footer {
    padding: 30px 10px 15px 10px; /* Adjust padding for mobile */
  }

  footer {
    flex-wrap: nowrap; /* Explicitly prevent wrapping */
    padding: 15px 0; /* Adjust padding */
    margin-bottom: 15px;
  }

  .newsletter h2 {
    font-size: 20px; /* Smaller heading */
  }

  .newsletter p {
    font-size: 13px; /* Smaller text */
    margin-bottom: 20px;
  }

  /* Keep email form stacked for usability */
  .email-form {
    flex-direction: column;
    border: none;
    border-radius: 0;
    max-width: 100%;
  }

  .email-form input[type="email"] {
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-align: center;
  }

  .email-form button {
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
  }

  /* Keep 3 columns, adjust width and padding */
  .footer-section {
    width: 33%; /* Maintain 3 columns */
    padding: 0 5px; /* Minimal padding */
    margin-bottom: 20px;
    text-align: left; /* Align text left */
  }

  .footer-section h3 {
    font-size: 14px; /* Smaller heading */
    margin-bottom: 10px;
    text-align: left; /* Align heading left */
  }

  .footer-section ul {
    display: block;
    text-align: left; /* Align list left */
  }

  .footer-section ul li {
    margin-bottom: 8px; /* Reduce list item margin */
  }

  .footer-section ul li a {
    font-size: 12px; /* Smaller link font */
  }

  .footer-section.bio p {
    font-size: 12px; /* Smaller bio font */
    line-height: 1.5;
    text-align: left; /* Align bio text left */
  }

  .copyright {
    font-size: 11px; /* Even smaller copyright */
    margin-top: 5px;
    padding-top: 10px;
  }
}
  @media (max-width: 768px) {
    .navbar {
      left: 10%;
      right: 10%;
      height: 40px;
      align-self: center;
    }
  
    .navbar-item span {
      display: none; /* Hide text labels on small screens */
    }
  
    .navbar-items {
      justify-content: space-between;
      padding: 0px;
    }
  
    .navbar-item {
      padding: 0px;
    }
  }
  
  @media (max-width: 480px) {
    .navbar {
      left: 5%;
      right: 5%;
      height: 35px;
      align-self: center;
    }
    .navbar-items :hover {
      padding: 0px;
    }
    .cards {
      margin-top: 100px;
    }
    .container-footer {
      margin-top: 100px;
    }
  
    .email-form input[type="email"] {
      padding: 8px;
      border: none;
      outline: none;
      width: 200px;
      font-size: 16px;
    }
    .copyright {
      text-align: center;
      margin: -20px 0px -20px 0px;
    }
  }body.light-theme {
  background-color: rgb(212, 204, 204);
}

body.light-theme .navbar {
  background: rgba(255, 255, 255, 0.267); /* Darker background for contrast */
  border: 1px solid rgba(0, 0, 0, 0.3); /* Darker border */
}

body.light-theme .navbar-item {
  color: rgb(0, 0, 0); /* Black text for light theme */
}

body.light-theme .navbar-item:hover {
  background: rgb(255, 255, 255); /* Darker hover effect */
}

body.light-theme .testimonials-section h1,
body.light-theme .testimonials-section h3,
body.light-theme .testimonials-section p {
  color: black;
}

/* Toggle Button Styling */
.theme-toggle-button {
  cursor: pointer;
  background: none;
  border: none;
  width: 34px; /* Fixed width for circle */
  height: 34px; /* Fixed height for circle */
  border-radius: 50%; /* Make it circular */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.theme-toggle-button:hover {
  background: rgba(255, 255, 255, 0.4);
}

body.light-theme .theme-toggle-button:hover {
  background: rgb(255, 255, 255); /* Darker hover effect */
}

.theme-toggle-button .navbar-icon {
  width: 35px; /* Adjust icon size */
  height: 35px;
  filter: invert(0); /* Make icon white in dark theme */
}

body.light-theme .theme-toggle-button .navbar-icon {
  filter: invert(1); /* Make icon black in light theme */
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: monospace;
  background-color: black;
}

/* Dark Theme: Hero Section */
body:not(.light-theme) .hero h1,
body:not(.light-theme) .hero p {
  color: white;
}

body:not(.light-theme) .badge {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

/* User's Navbar CSS - Kept as provided */
.navbar {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  border-radius: 20px;
  padding: 5px 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 12px;
  left: 10%;
  right: 10%;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.3); /* Lighter border for better contrast */
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-items {
  display: flex;
  justify-content: space-around; /* Distributes items evenly */
  align-items: center;
  width: 100%;
  flex-wrap: wrap; /* Allow wrapping on smaller screens if needed */
}

/* --- CSS Modifications for SVG --- */
.navbar-icon {
  width: 24px; /* Adjusted size for typical line icons */
  height: 24px;
  /* border-radius removed - not needed for SVGs */
  /* opacity removed - handled by stroke/fill */
  stroke-width: 1.5; /* Control line thickness */
  flex-shrink: 0; /* Prevent icon from shrinking */
}

.navbar-item span {
  margin-left: 8px; /* Kept user's spacing */
  white-space: nowrap; /* Prevent text wrapping */
}

.navbar-item {
  color: rgb(255, 255, 255); /* White text */
  text-decoration: none;
  padding: 10px 15px; /* Kept user's padding */
  border-radius: 15px; /* Slightly adjusted for aesthetics */
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px; /* Kept user's gap */
}
.about-icon {
  background: rgba(255, 255, 255, 0.4); /* Kept user's hover */
}

.navbar-item:hover {
  background: rgba(255, 255, 255, 0.4); /* Kept user's hover */
}

/* Style for the theme toggle button (similar to links) */
.theme-toggle-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px; /* Make clickable area slightly larger */
  border-radius: 50%; /* Make it circular */
}
.theme-toggle-button:hover {
  background: rgba(255, 255, 255, 0.4);
}
/* Hide the span visually but keep for accessibility if needed later */
.theme-toggle-button span {
  display: none;
}
/* Ensure theme toggle icon size is consistent */
.theme-toggle-button .navbar-icon {
  width: 24px;
  height: 24px;
  margin: 0; /* Remove margin if only icon is shown */
}

/* Hide menu toggle button */
.menu-toggle {
  display: none;
}

/* About Section */
.about-section {
  padding: 60px 20px;
  max-width: 100%;
  margin-top: 30px;
  margin-left: 30px;
  margin-right: 30px;
}

.about-container {
  background: rgba(255, 255, 255, 0.2); /* Semi-transparent white for glass effect */
  backdrop-filter: blur(10px); /* Blur for glassmorphism */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle border for glass effect */
}

.about-container h1 {
  font-size: 2.5rem;
  margin-top: -12px;
  margin-bottom: 20px;
  color: #ffffff; /* White text for dark theme */
  text-align: center;
}

.about-container h2 {
  font-size: 1.5rem;
  margin-top: 30px;
  color: #ffffff; /* White text for dark theme */
}

.about-container p {
  font-size: 1rem;
  margin: 15px 0;
  color: #ffffff; /* White text for dark theme */
}

.about-container ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 10px;
}

.about-container ul li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
  color: #ffffff; /* White text for dark theme */
}

.about-container ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00c48c;
}

.about-team ul li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 8px;
  color: #ffffff; /* White text for dark theme */
}

.about-team ul li::before {
  content: "👨‍💻";
  position: absolute;
  left: 0;
}

/* Light theme adjustments for about section */
body.light-theme .about-container {
  background: rgba(255, 255, 255, 0.267); /* Slightly opaque for light theme */
  border: 1px solid rgba(0, 0, 0, 0.3); /* Darker border for contrast */
}

body.light-theme .about-container h1,
body.light-theme .about-container h2,
body.light-theme .about-container p,
body.light-theme .about-container ul li,
body.light-theme .about-team ul li {
  color: #2e3a59; /* Darker text for light theme */
}

/* Footer Container */
.container-footer {
  width: 100%;
  margin: 0 auto; /* Center the container */
  padding: 40px 20px 20px 20px; /* Added more top padding */
  background-color: white;
  box-sizing: border-box; /* Include padding in width calculation */
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Newsletter Section */
.newsletter {
  text-align: center;
  margin-bottom: 50px; /* Increased spacing */
}

.newsletter h2 {
  font-size: 24px;
  font-weight: 600;
  color: black;
  letter-spacing: 1px; /* Adjusted spacing */
  margin-bottom: 15px; /* Increased spacing */
  text-align: center;
}

.newsletter p {
  margin-bottom: 25px; /* Increased spacing */
  color: #555; /* Slightly darker text */
  padding: 0 10px; /* Add horizontal padding for text */
  max-width: 600px; /* Limit width of paragraph */
  margin-left: auto; /* Center paragraph */
  margin-right: auto; /* Center paragraph */
}

/* Email Form */
.email-form {
  display: flex; /* Use flexbox for alignment */
  justify-content: center; /* Center items horizontally */
  flex-wrap: wrap; /* Allow wrapping on very small screens if needed */
  max-width: 500px; /* Limit form width */
  margin: 0 auto; /* Center the form */
  border: 1px solid #ccc; /* Lighter border */
  border-radius: 8px; /* Rounded corners for the form */
  overflow: hidden; /* Keep input/button inside rounded corners */
}

.email-form input[type="email"] {
  padding: 12px 15px; /* Increased padding */
  border: none;
  outline: none;
  flex-grow: 1; /* Allow input to take available space */
  min-width: 200px; /* Minimum width before wrapping */
  font-size: 16px;
  box-sizing: border-box;
  border-radius: 8px 0 0 8px; /* Rounded corners on the left */
}

.email-form button {
  padding: 12px 25px; /* Increased padding */
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  white-space: nowrap; /* Prevent button text wrapping */
  border-radius: 0 8px 8px 0; /* Rounded corners on the right */
  transition: background-color 0.3s ease; /* Smooth hover effect */
}

.email-form button:hover {
  background-color: #333; /* Darker background on hover */
}

/* Main Footer Area */
footer {
  display: flex;
  flex-wrap: nowrap; /* Prevent wrapping by default */
  padding: 30px 0; /* Increased padding */
  border-top: 1px solid #eee; /* Lighter border */
  margin-bottom: 30px; /* Adjusted spacing */
  width: 100%; /* Ensure footer takes full width */
  box-sizing: border-box;
}

/* Individual Footer Sections */
.footer-section {
  width: 33%;
  padding: 0 10px; /* Reduced padding slightly */
  box-sizing: border-box;
  margin-bottom: 30px; /* Add space below each section */
  vertical-align: top; /* Align columns at the top */
}

.footer-section h3 {
  font-size: 16px;
  font-weight: 600; /* Slightly bolder */
  margin-bottom: 15px;
  color: #333;
}

.footer-section ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px; /* Reduced margin slightly */
}

.footer-section ul li a {
  text-decoration: none;
  color: #555; /* Consistent text color */
  font-size: 14px;
  transition: color 0.3s ease; /* Smooth hover effect */
  display: inline-block; /* Needed for potential wrapping */
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all; /* More aggressive breaking if needed */
}

.footer-section ul li a:hover {
  color: #000; /* Darker color on hover */
  text-decoration: underline;
}

.footer-section.bio p {
  font-size: 14px;
  line-height: 1.6; /* Adjusted line height */
  color: #666;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Add specific styling for bio section heading if needed */
.footer-section.bio h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

/* Copyright Area */
.copyright {
  text-align: center;
  font-size: 13px; /* Slightly smaller */
  color: #aaa;
  padding: 15px 0 0 0; /* Add padding above */
  border-top: 1px solid #eee; /* Separator line */
  margin-top: -10px; /* Adjust based on footer margin-bottom */
}

/* --- Responsive Styles --- */

/* Medium Screens (Tablets) */
@media (max-width: 768px) {
  /* Keep footer as flex, but ensure no wrap */
  footer {
      flex-wrap: nowrap;
      padding: 20px 0; /* Adjust padding */
  }

  .footer-section {
      width: 33%;
      padding: 0 8px; /* Further reduce padding */
      text-align: left;
  }

  .footer-section h3 {
      font-size: 15px; /* Slightly smaller heading */
      text-align: left;
  }
  .footer-section ul {
      display: block;
      text-align: left;
  }
  .footer-section ul li a {
      font-size: 13px; /* Slightly smaller font */
  }

  .footer-section.bio p {
      font-size: 13px; /* Slightly smaller font */
      text-align: left;
  }

  .navbar {
      left: 10%;
      right: 10%;
      height: 40px;
      align-self: center;
  }

  .navbar-item span {
      display: none; /* Hide text labels on small screens */
  }

  .navbar-items {
      justify-content: space-between;
      padding: 0px;
  }

  .navbar-item {
      padding: 0px;
  }
}

/* Small Screens (Mobiles) */
@media (max-width: 480px) {
  .container-footer {
      padding: 30px 10px 15px 10px; /* Adjust padding for mobile */
      margin-top: 100px;
  }

  footer {
      flex-wrap: nowrap; /* Explicitly prevent wrapping */
      padding: 15px 0; /* Adjust padding */
      margin-bottom: 15px;
  }

  .newsletter h2 {
      font-size: 20px; /* Smaller heading */
  }

  .newsletter p {
      font-size: 13px; /* Smaller text */
      margin-bottom: 20px;
  }

  /* Keep email form stacked for usability */
  .email-form {
      flex-direction: column;
      border: none;
      border-radius: 0;
      max-width: 100%;
  }

  .email-form input[type="email"] {
      width: 100%;
      margin-bottom: 10px;
      border: 1px solid #ccc;
      border-radius: 8px;
      text-align: center;
      padding: 8px;
  }

  .email-form button {
      width: 100%;
      padding: 12px 20px;
      border-radius: 8px;
  }

  /* Keep 3 columns, adjust width and padding */
  .footer-section {
      width: 33%; /* Maintain 3 columns */
      padding: 0 5px; /* Minimal padding */
      margin-bottom: 20px;
      text-align: left; /* Align text left */
  }

  .footer-section h3 {
      font-size: 14px; /* Smaller heading */
      margin-bottom: 10px;
      text-align: left; /* Align heading left */
  }

  .footer-section ul {
      display: block;
      text-align: left; /* Align list left */
  }

  .footer-section ul li {
      margin-bottom: 8px; /* Reduce list item margin */
  }

  .footer-section ul li a {
      font-size: 12px; /* Smaller link font */
  }

  .footer-section.bio p {
      font-size: 12px; /* Smaller bio font */
      line-height: 1.5;
      text-align: left; /* Align bio text left */
  }

  .copyright {
      font-size: 11px; /* Even smaller copyright */
      margin: -20px 0px -20px 0px;
      padding-top: 10px;
  }

  .navbar {
      left: 5%;
      right: 5%;
      height: 35px;
      align-self: center;
  }
  .navbar-items :hover {
      padding: 0px;
  }
  .cards {
      margin-top: 100px;
  }
}
body.light-theme {
  background-color: rgb(212, 204, 204);
}

body.light-theme .navbar {
  background: rgba(255, 255, 255, 0.267); /* Darker background for contrast */
  border: 1px solid rgba(0, 0, 0, 0.3); /* Darker border */
}

body.light-theme .navbar-item {
  color: rgb(0, 0, 0); /* Black text for light theme */
}

body.light-theme .navbar-item:hover {
  background: rgb(255, 255, 255); /* Darker hover effect */
}

body.light-theme .testimonials-section h1,
body.light-theme .testimonials-section h3,
body.light-theme .testimonials-section p {
  color: black;
}

/* Toggle Button Styling */
.theme-toggle-button {
  cursor: pointer;
  background: none;
  border: none;
  width: 34px; /* Fixed width for circle */
  height: 34px; /* Fixed height for circle */
  border-radius: 50%; /* Make it circular */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.theme-toggle-button:hover {
  background: rgba(255, 255, 255, 0.4);
}

body.light-theme .theme-toggle-button:hover {
  background: rgb(255, 255, 255); /* Darker hover effect */
}

.theme-toggle-button .navbar-icon {
  width: 35px; /* Adjust icon size */
  height: 35px;
  filter: invert(0); /* Make icon white in dark theme */
}

body.light-theme .theme-toggle-button .navbar-icon {
  filter: invert(1); /* Make icon black in light theme */
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: monospace;
  background-color: black;
}

/* Dark Theme: Hero Section */
body:not(.light-theme) .hero h1,
body:not(.light-theme) .hero p {
  color: white;
}

body:not(.light-theme) .badge {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}

/* User's Navbar CSS - Kept as provided */
.navbar {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  border-radius: 20px;
  padding: 5px 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 12px;
  left: 10%;
  right: 10%;
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.3); /* Lighter border for better contrast */
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-items {
  display: flex;
  justify-content: space-around; /* Distributes items evenly */
  align-items: center;
  width: 100%;
  flex-wrap: wrap; /* Allow wrapping on smaller screens if needed */
}

/* --- CSS Modifications for SVG --- */
.navbar-icon {
  width: 24px; /* Adjusted size for typical line icons */
  height: 24px;
  /* border-radius removed - not needed for SVGs */
  /* opacity removed - handled by stroke/fill */
  stroke-width: 1.5; /* Control line thickness */
  flex-shrink: 0; /* Prevent icon from shrinking */
}

.navbar-item span {
  margin-left: 8px; /* Kept user's spacing */
  white-space: nowrap; /* Prevent text wrapping */
}

.navbar-item {
  color: rgb(255, 255, 255); /* White text */
  text-decoration: none;
  padding: 10px 15px; /* Kept user's padding */
  border-radius: 15px; /* Slightly adjusted for aesthetics */
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px; /* Kept user's gap */
}
.about-icon {
  background: rgba(255, 255, 255, 0.4); /* Kept user's hover */
}

.navbar-item:hover {
  background: rgba(255, 255, 255, 0.4); /* Kept user's hover */
}

/* Style for the theme toggle button (similar to links) */
.theme-toggle-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px; /* Make clickable area slightly larger */
  border-radius: 50%; /* Make it circular */
}
.theme-toggle-button:hover {
  background: rgba(255, 255, 255, 0.4);
}
/* Hide the span visually but keep for accessibility if needed later */
.theme-toggle-button span {
  display: none;
}
/* Ensure theme toggle icon size is consistent */
.theme-toggle-button .navbar-icon {
  width: 24px;
  height: 24px;
  margin: 0; /* Remove margin if only icon is shown */
}

/* Hide menu toggle button */
.menu-toggle {
  display: none;
}

/* About Section */
.about-section {
  padding: 60px 20px;
  max-width: 100%;
  margin-top: 30px;
  margin-left: 30px;
  margin-right: 30px;
}

.about-container {
  background: rgba(255, 255, 255, 0.2); /* Semi-transparent white for glass effect */
  backdrop-filter: blur(10px); /* Blur for glassmorphism */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle border for glass effect */
}

.about-container h1 {
  font-size: 2.5rem;
  margin-top: -12px;
  margin-bottom: 20px;
  color: #ffffff; /* White text for dark theme */
  text-align: center;
}

.about-container h2 {
  font-size: 1.5rem;
  margin-top: 30px;
  color: #ffffff; /* White text for dark theme */
}

.about-container p {
  font-size: 1rem;
  margin: 15px 0;
  color: #ffffff; /* White text for dark theme */
}

.about-container ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 10px;
}

.about-container ul li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
  color: #ffffff; /* White text for dark theme */
}

.about-container ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00c48c;
}

.about-team ul li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 8px;
  color: #ffffff; /* White text for dark theme */
}

.about-team ul li::before {
  content: "👨‍💻";
  position: absolute;
  left: 0;
}

/* Light theme adjustments for about section */
body.light-theme .about-container {
  background: rgba(255, 255, 255, 0.267); /* Slightly opaque for light theme */
  border: 1px solid rgba(0, 0, 0, 0.3); /* Darker border for contrast */
}

body.light-theme .about-container h1,
body.light-theme .about-container h2,
body.light-theme .about-container p,
body.light-theme .about-container ul li,
body.light-theme .about-team ul li {
  color: #2e3a59; /* Darker text for light theme */
}

/* Footer Container */
.container-footer {
  width: 100%;
  margin: 0 auto; /* Center the container */
  padding: 40px 20px 20px 20px; /* Added more top padding */
  background-color: white;
  box-sizing: border-box; /* Include padding in width calculation */
  overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Newsletter Section */
.newsletter {
  text-align: center;
  margin-bottom: 50px; /* Increased spacing */
}

.newsletter h2 {
  font-size: 24px;
  font-weight: 600;
  color: black;
  letter-spacing: 1px; /* Adjusted spacing */
  margin-bottom: 15px; /* Increased spacing */
  text-align: center;
}

.newsletter p {
  margin-bottom: 25px; /* Increased spacing */
  color: #555; /* Slightly darker text */
  padding: 0 10px; /* Add horizontal padding for text */
  max-width: 600px; /* Limit width of paragraph */
  margin-left: auto; /* Center paragraph */
  margin-right: auto; /* Center paragraph */
}

/* Email Form */
.email-form {
  display: flex; /* Use flexbox for alignment */
  justify-content: center; /* Center items horizontally */
  flex-wrap: wrap; /* Allow wrapping on very small screens if needed */
  max-width: 500px; /* Limit form width */
  margin: 0 auto; /* Center the form */
  border: 1px solid #ccc; /* Lighter border */
  border-radius: 8px; /* Rounded corners for the form */
  overflow: hidden; /* Keep input/button inside rounded corners */
}

.email-form input[type="email"] {
  padding: 12px 15px; /* Increased padding */
  border: none;
  outline: none;
  flex-grow: 1; /* Allow input to take available space */
  min-width: 200px; /* Minimum width before wrapping */
  font-size: 16px;
  box-sizing: border-box;
  border-radius: 8px 0 0 8px; /* Rounded corners on the left */
}

.email-form button {
  padding: 12px 25px; /* Increased padding */
  background-color: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 16px;
  white-space: nowrap; /* Prevent button text wrapping */
  border-radius: 0 8px 8px 0; /* Rounded corners on the right */
  transition: background-color 0.3s ease; /* Smooth hover effect */
}

.email-form button:hover {
  background-color: #333; /* Darker background on hover */
}

/* Main Footer Area */
footer {
  display: flex;
  flex-wrap: nowrap; /* Prevent wrapping by default */
  padding: 30px 0; /* Increased padding */
  border-top: 1px solid #eee; /* Lighter border */
  margin-bottom: 30px; /* Adjusted spacing */
  width: 100%; /* Ensure footer takes full width */
  box-sizing: border-box;
}

/* Individual Footer Sections */
.footer-section {
  width: 33%;
  padding: 0 10px; /* Reduced padding slightly */
  box-sizing: border-box;
  margin-bottom: 30px; /* Add space below each section */
  vertical-align: top; /* Align columns at the top */
}

.footer-section h3 {
  font-size: 16px;
  font-weight: 600; /* Slightly bolder */
  margin-bottom: 15px;
  color: #333;
}

.footer-section ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px; /* Reduced margin slightly */
}

.footer-section ul li a {
  text-decoration: none;
  color: #555; /* Consistent text color */
  font-size: 14px;
  transition: color 0.3s ease; /* Smooth hover effect */
  display: inline-block; /* Needed for potential wrapping */
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-all; /* More aggressive breaking if needed */
}

.footer-section ul li a:hover {
  color: #000; /* Darker color on hover */
  text-decoration: underline;
}

.footer-section.bio p {
  font-size: 14px;
  line-height: 1.6; /* Adjusted line height */
  color: #666;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Add specific styling for bio section heading if needed */
.footer-section.bio h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

/* Copyright Area */
.copyright {
  text-align: center;
  font-size: 13px; /* Slightly smaller */
  color: #aaa;
  padding: 15px 0 0 0; /* Add padding above */
  border-top: 1px solid #eee; /* Separator line */
  margin-top: -10px; /* Adjust based on footer margin-bottom */
}

/* --- Responsive Styles --- */

/* Medium Screens (Tablets) */
@media (max-width: 768px) {
  /* Keep footer as flex, but ensure no wrap */
  footer {
      flex-wrap: nowrap;
      padding: 20px 0; /* Adjust padding */
  }

  .footer-section {
      width: 33%;
      padding: 0 8px; /* Further reduce padding */
      text-align: left;
  }

  .footer-section h3 {
      font-size: 15px; /* Slightly smaller heading */
      text-align: left;
  }
  .footer-section ul {
      display: block;
      text-align: left;
  }
  .footer-section ul li a {
      font-size: 13px; /* Slightly smaller font */
  }

  .footer-section.bio p {
      font-size: 13px; /* Slightly smaller font */
      text-align: left;
  }

  .navbar {
      left: 10%;
      right: 10%;
      height: 40px;
      align-self: center;
  }

  .navbar-item span {
      display: none; /* Hide text labels on small screens */
  }

  .navbar-items {
      justify-content: space-between;
      padding: 0px;
  }

  .navbar-item {
      padding: 0px;
  }
}

/* Small Screens (Mobiles) */
@media (max-width: 480px) {
  .container-footer {
      padding: 30px 10px 15px 10px; /* Adjust padding for mobile */
      margin-top: 100px;
  }

  footer {
      flex-wrap: nowrap; /* Explicitly prevent wrapping */
      padding: 15px 0; /* Adjust padding */
      margin-bottom: 15px;
  }

  .newsletter h2 {
      font-size: 20px; /* Smaller heading */
  }

  .newsletter p {
      font-size: 13px; /* Smaller text */
      margin-bottom: 20px;
  }

  /* Keep email form stacked for usability */
  .email-form {
      flex-direction: column;
      border: none;
      border-radius: 0;
      max-width: 100%;
  }

  .email-form input[type="email"] {
      width: 100%;
      margin-bottom: 10px;
      border: 1px solid #ccc;
      border-radius: 8px;
      text-align: center;
      padding: 8px;
  }

  .email-form button {
      width: 100%;
      padding: 12px 20px;
      border-radius: 8px;
  }

  /* Keep 3 columns, adjust width and padding */
  .footer-section {
      width: 33%; /* Maintain 3 columns */
      padding: 0 5px; /* Minimal padding */
      margin-bottom: 20px;
      text-align: left; /* Align text left */
  }

  .footer-section h3 {
      font-size: 14px; /* Smaller heading */
      margin-bottom: 10px;
      text-align: left; /* Align heading left */
  }

  .footer-section ul {
      display: block;
      text-align: left; /* Align list left */
  }

  .footer-section ul li {
      margin-bottom: 8px; /* Reduce list item margin */
  }

  .footer-section ul li a {
      font-size: 12px; /* Smaller link font */
  }

  .footer-section.bio p {
      font-size: 12px; /* Smaller bio font */
      line-height: 1.5;
      text-align: left; /* Align bio text left */
  }

  .copyright {
      font-size: 11px; /* Even smaller copyright */
      margin: -20px 0px -20px 0px;
      padding-top: 10px;
  }

  .navbar {
      left: 5%;
      right: 5%;
      height: 35px;
      align-self: center;
  }
  .navbar-items :hover {
      padding: 0px;
  }
  .cards {
      margin-top: 100px;
  }
}

