body {
  font-family: Arial, sans-serif;
  padding: 0;
  background-color: #ffffff; /* Light mode background */
  color: #000; /* Light mode text color */
  transition: background-color 0.3s ease, color 0.3s ease;
}

.toggle-button {
  display: flex; /* Use flexbox for horizontal alignment */
  align-items: center; /* Center items vertically */
  white-space: nowrap; /* Prevent text from wrapping */
}

.about-text {
  margin-right: 0px; /* Space between the text and buttons */
  margin-top: 5px;
}

/* Additional styles for the buttons */
.bar {
  display: block;
  width: 25px; /* Button width */
  height: 4px; /* Button height */
  background-color: black; /* Button color */
  margin: 2px 0; /* Space between buttons */
  transition: all 0.3s; /* Optional: Add a transition for hover effects */
}

/* Dark mode */
/* Main Toggle Button */
.theme-toggle-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 80px;
  height: 40px;
  background: linear-gradient(135deg, #f6d365, #fda085);
  border-radius: 40px;
  border: none;
  cursor: pointer;
  transition: background 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

/* Toggle Slider (Circle) */
.theme-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 32px;
  height: 32px;
  background-color: white;
  border-radius: 50%;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.5);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Sun and Moon Icons */
.theme-icon {
  position: absolute;
  font-size: 18px;
  transition: opacity 0.3s ease;
}

.theme-icon-light {
  left: 10px;
  color: #ffd700;
  opacity: 1;
}

.theme-icon-dark {
  right: 10px;
  color: #4a4a4a;
  opacity: 0;
}

/* Dark Mode Active */
body.dark-mode .theme-toggle-btn {
  background: linear-gradient(135deg, #2c3e50, #4a4a4a);
}

body.dark-mode .theme-slider {
  transform: translateX(40px);
}

body.dark-mode .theme-icon-light {
  opacity: 0;
}

body.dark-mode .theme-icon-dark {
  opacity: 1;
}



/* Dark Mode Styles   */
/* body.dark-mode {
    background-color: #121212;
    color: #ffffff;
} */

/* Calendar Section Styles */
.calendar-section {
  display: flex;
  justify-content: space-between; /* Space between event form and calendar */
  align-items: flex-start;
  margin: 20px;
  gap: 20px;
}

.calendar-title {
  text-align: center;
}

/* Event Form Styles */
/* Styling the form container */
.event-form {
  display: flex;
  flex-direction: column;
  align-items: stretch; /* Stretch inputs to full width */
  width: 300px; /* Set a fixed width */
  padding: 20px;
  border: 1px solid #444444;
  border-radius: 8px;
  background-color: #333333;
  color:#ffffff;
  margin-top: 45px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Stronger shadow for more depth */
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; /* Clean font */
  position: relative;
  overflow: hidden; /* Hide any content that overflows the form */
}

/* Form title styling */
.event-form h3 {
  margin-bottom: 25px;
  font-size: 1.8rem; /* Larger font size for the title */
  font-weight: bold; /* Make the title stand out */
  color: #1997fb; /* Darker title color */
  text-align: center; /* Centered title */
  text-transform: uppercase; /* Uppercase for emphasis */
  letter-spacing: 2px; /* Increased letter spacing */
  position: relative;
  animation: fadeInDown 0.5s ease-in-out; /* Add fade-in animation */
}

.event-form input,
.event-form button {
  margin: 10px 0; /* Adjusted margins for better spacing */
  padding: 10px;
  font-size: 16px;
  border-radius: 8px; /* Softer, more rounded corners */
  background-color: #444444; /* Light input background */
  color:  #ffffff;
  border: 1px solid #555555; /* Light border */
  transition: all 0.3s ease; /* Smooth transition for animations */
  position: relative;
}

/* Input hover and focus effects */
.event-form input:focus {
  border-color: #1997fb;/* Green border on focus */
  box-shadow: 0 0 8px rgba(25, 151, 251, 0.4); /* Green glow on focus */
  outline: none; /* Removes default outline */
  transform: scale(1.02); /* Slight scaling animation on focus */
}

/* Color input styling */
.event-form input[type="color"] {
  appearance: none; /* Remove default browser styling */
  width: 100%; /* Make it full width */
  height: 50px; /* Height to make it more prominent */
  cursor: pointer;
  border: 1px solid #555555; /* Soft border */
  border-radius: 8px; /* Rounded corners */
  padding: 5px;
  background-color: #333333; 
  transition: all 0.3s ease; /* Smooth transition for hover effects */
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Hover effect on color picker */
.event-form input[type="color"]:hover {
  border-color: #4caf50; /* Green border on hover */
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.4); /* Green glow on hover */
  transform: scale(1.03); /* Slight scaling on hover */
}

/* Color Picker Circle inside input */
.event-form input[type="color"]::-webkit-color-swatch {
  border: none; /* Remove default border */
  border-radius: 8px; /* Rounded corners for color box */
  padding: 0;
}

.event-form input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
  border-radius: 8px; /* Smooth edges */
}

/* When color picker is active (clicked) */
.event-form input[type="color"]:focus {
  outline: none;
  border-color: #4caf50;
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.6); /* Green glow */
  transform: scale(1.05); /* Slight scale effect */
}

/* Button hover effect */
.event-form button {
  background-color: #28a745;/* Green background */
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease; /* Smooth hover transition */
  border-radius: 8px;
  font-weight: bold; /* Make the text stand out */
  transform: scale(1); /* Default state */
  animation: fadeInUp 0.6s ease-in-out; /* Button fade-in animation */
}

.event-form button:hover {
  background-color: #45a049; /* Darker green on hover */
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Shadow on hover */
  transform: scale(1.05); /* Slight scaling effect on hover */
}

/* Label styling */
.event-form label {
  font-size: 1rem;
  font-weight: 500;
  color: #1997fb;
  margin-bottom: 8px; /* Space between label and input */
  text-align: left;
  animation: fadeInLeft 0.5s ease-in-out; /* Label animation */
}

/* Animation for fading the title in from the top */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px); /* Starts from above */
  }
  to {
    opacity: 1;
    transform: translateY(0); /* Moves into place */
  }
}

/* Animation for fading in inputs and buttons */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px); /* Starts from below */
  }
  to {
    opacity: 1;
    transform: translateY(0); /* Moves into place */
  }
}

/* Animation for labels sliding in from the left */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px); /* Starts from the left */
  }
  to {
    opacity: 1;
    transform: translateX(0); /* Moves into place */
  }
}

/* Calendar Styles */
.calendar {
  flex-grow: 1; /* Allow calendar to take up available space */
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px;
}

/* Calendar Header */
.calendar-header {
  display: flex;
  align-items: center; /* Center items vertically */
  justify-content: center; /* Center items horizontally */
  margin-bottom: 20px;
}

.month-year-box {
  padding: 10px 20px;
  /* background-color: #f0f0f0; */
  border: 1px solid #ccc;
  border-radius: 5px;
  font-weight: bold;
  margin: 0 10px;
}

/* Calendar Grid */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr); /* Seven columns for days */
  gap: 10px;
  margin-bottom: 20px;
  width: 100%; /* Full width */
  max-width: 900px; /* Maximum width for the grid */
}

/* Calendar Day Styles */
.calendar-day {
  border: 1px solid #ccc;
  padding: 10px; /* Adjusted padding */
  text-align: center;
  /* position: relative; */
  /* /* background-color: #ffffff;   */
  /* height: 100px; Fixed height for uniformity */
  border-radius: 8px; /* Rounded corners */
  transition: background-color 0.3s ease; /* Smooth transition */
}

/* Dark Mode Calendar Day Styles */
body.dark-mode .calendar-day {
  background-color: #1e1e1e; /* Dark mode day background */
  border-color: #444; /* Dark mode border color */
}

.calendar-day:hover {
  background-color: #e0e0e0;
}

body.dark-mode .calendar-day:hover {
  background-color: #333; /* Dark hover effect */
}

/* Event Styles */
.event {
  background-color: #4caf50;
  /* color: white; */
  padding: 0 5px; /* Adjusted padding */
  border-radius: 3px;
  font-size: 12px; /* Increased font size */
  text-align: center;
  height: 20px;
  margin-bottom: 2px;
  cursor: pointer; /* Makes the event clickable */
  overflow: hidden; /* Prevents overflow of text */
  white-space: nowrap; /* Keeps text in a single line */
  text-overflow: ellipsis; /* Adds ellipsis for overflowed text */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 92px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .calendar-section {
    flex-direction: column; /* Stack elements on smaller screens */
    align-items: center; /* Center the items */
  }

  .event-form {
    width: 90%; /* Make form full width on small screens */
    margin: 10px 0; /* Adjust margin */
  }
}

/* General Navbar Styling */
.navbar {
  /* background-color: #333; */
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* position: fixed; */
  transition: background-color 0.3s;
  width: 100%;
  height: 12vh;
  font-weight: 750;
  font-size: 18px;
  top: 0;
  margin-top: 0px;
  z-index: 1000;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  position: sticky;
}
.light-mode .navbar {
  background-color: white; /* White background for light mode */
  color: black; /* Text color for light mode */
}

.dark-mode .navbar {
  background-color: #333; /* Dark background for dark mode */
  color: white; /* Text color for dark mode */
}

.content {
  height: 2000px; /* Just for scrolling */
  padding: 20px;
}

/* Center the menu items */
.navbar ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  flex: 1;
}

/* Move Hamburger Menu to Right */
.hamburger-menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* Logo Styling */
.logo {
  height: 60px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.1);
}
/* .darkmode {
    background-color: #fdf8f8;
    color: #070707;
    background-color: #401111;
    background-color: #908989;
    background-color: #2a2929;
    color: #401111;
} */

/* .website-name {
  font-size: 1.8rem;
  /* color: #fff; */
  /* font-weight: bold;
  letter-spacing: 1.2px;
  margin-right: auto;
  margin-left: 15px;
} */ 
.website-name {
  display: flex; /* Flexbox to align items horizontally */
  align-items: center; /* Vertically center the items */
  margin-left: 20px;
  margin-bottom: 5px;
}
 .website-name .static-text{
  color:orangered;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 1.2px;
 }
 .website-name .dynamic-text {
  margin-right: auto;
  margin-left: 15px;
   height: 50px;
   line-height: 40px;
   padding: 0;
   /* overflow:hidden; */
}
.website-name li{
  color: #000;
  list-style: none;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1.2px;
  position: relative;
  overflow: hidden;
  width: fit-content;
  /* display: inline-block; */
  /* margin-right: 10px; */
}


.dynamic-text li span::after{
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  background:white ;
  border-left: 2px solid black;
  top: 0;
  /* left: 0; */
  animation: typing 1.5s steps(11) infinite;
 
}
@keyframes typing{
  100%{
    left: 100%;
    margin: 0 -35px 0 35px;
  }
}
.dark-mode .website-name .static-text{
  color: orangered;
}
.dark-mode .website-name {
  color: white;
}
.dark-mode .website-name li{
  color: white;
  list-style: none;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 1.2px;
  position: relative;
  overflow: hidden;
  width: fit-content;
  /* display: inline-block; */
  /* margin-right: 10px; */
}
.dark-mode .dynamic-text li span::after{
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  background:#333 ;
  border-left: 2px solid white;
  top: 0;
  /* left: 0; */
  animation: typing 1.5s steps(11) infinite;
 
}

/* Center Links */
.center-links {
  list-style: none;
  display: flex;
  align-items: center;

  justify-content: center;
  flex: 1;
  position: relative; /* Added to position dropdowns correctly */
}

.center-links li {
  margin-left: 25px;
  position: relative; /* Added for dropdown positioning */

  margin: 0;
  z-index: 10;
}

.navbar ul {
  display: flex;
  align-items: center;
  gap: 4vw;
  list-style: none;
}

.navbar ul li {
  position: relative;
  display: inline-block;
}
/* Initially hide the dropdown */
.navbar ul li .dropdown {
  display: none;
}

/* Show the dropdown on hover */
.navbar ul li:hover .dropdown {
  display: block;
}

.navbar ul li:hover {
  transform: scale(1.1);
  color: red;
  border-radius: 50px;
}


.navbar-links a:hover {
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.5);;
 
}

.center-links li a {
  text-decoration: none;
  /* color: #fff; */
  padding: 8px 10px;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.center-links li a:hover {
  background-color: #555;

  color: #f1c40f; /* Add hover color effect */
}
/* Hamburger Menu Styling */
.hamburger-menu .toggle-button {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 4px;
  padding-right: 10px;
}

/* Apply a smooth transform transition for the icon */
.hamburger-menu img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Rotation or scaling effect when active */
.hamburger-menu img.active {
  transform: rotate(90deg); /* or scale(1.2) for a scaling effect */
  opacity: 0.8;
}

.my-svg {
  width: 100px;
  height: 100px;
}

/* Dropdown Menu */
.dropdown {
  display: none;
  position: absolute;
  /* background-color: #333; */
  padding: 10px;
  border-radius: 4px;
  z-index: 1;

  top: 100%;
  right:0;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  max-width: calc(100vw - 40px);
  overflow: hidden;
}

.center-links li:hover .dropdown {
  display: block;

  top: 27px;
  right: 0%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dark-mode .navbar ul li:hover .dropdown {
  display: block;
  opacity: 1;
  background-color: #504c4c;
  color: #fff;

  transform: translateY(0);
}
.light-mode .navbar ul li:hover .dropdown {
  display: block;
  opacity: 1;
  background-color: rgb(245, 243, 243);
  color: #000000;
  transform: translateY(0);
  box-shadow: 2px 3px 2px grey;
}
.dropdown li {
  margin: 10px 0;
  list-style-type: disc;
  padding-left: 20px;
}

.dropdown li a {
  /* color: #fff; */

  padding: 5px 5px;
  display: block;
  white-space: nowrap;
}

.dropdown li a:hover {
  border-radius: 4px;
}
.dropdown li a span:hover {
  background-color: #555;
  border-radius: 4px;
}

/* Hamburger Menu */
.hamburger-menu {
  position: relative;
  margin-right: 5px; /* Added for dropdown positioning */
}

/* Dropdown Styling */
.hamburger-menu .dropdown {
  display: block;
  position: absolute;
  background-color: #333;
  padding: 10px;
  border-radius: 4px;
  z-index: 1;
  top: 100%;
  right: 0;
  width: 200px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hamburger-menu.active .dropdown {
  display: block;
}

/* Fix the dropdown text formatting */
.hamburger-menu .dropdown li {
  list-style: none;
  margin: 10px 0;
}

.hamburger-menu .dropdown li a {
  /* color: #fff; */
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  font-size: 1rem;
}

.hamburger-menu .dropdown li a:hover {
  background-color: #555;
  color: #f1c40f;
}

/* Dark Mode Button */
#theme-switch {
  height: 40px;
  width: 40px;
  margin: 0 20px;
  padding: 5px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

body.dark-mode #theme-switch {
  /* background-color: #333; */
  color: #fff;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
}

#theme-switch:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .navbar ul {
    flex-direction: column;
    align-items: flex-start;
    display: none;
    width: 100%;
    /* background-color: #333; */
    padding: 20px 0;
    position: absolute;
    top: 60px;
    left: 0;
  }

  .navbar ul li {
    margin-left: 0;
  }

  .navbar ul li a {
    padding: 10px 20px;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .navbar ul li a :hover{
    background-color: #2563eb;
    color:#000;
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }

  .navbar ul li:hover .dropdown {
    /* position: relative; */
    top: 100%;
    /* left: 0; */
  }

  .hamburger-menu.active + ul {
    display: flex;
  }

  /* Dropdown for Hamburger */
  .hamburger-menu .dropdown {
    top: 50px;
    right: 0;
  }
}

/* Fixing Hamburger Menu Display */
.hamburger-menu {
  display: none;
}
.navbar-links .about-text :hover{
  color: red;
}

@media (max-width: 768px) {
  .hamburger-menu {
    display: block;
  }

  .navbar ul {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    background-color: #56566b;
    border-radius: 5px;
    position: absolute;
    top: 60px;
    right: 0;
    padding: 20px 0;
  }

  .navbar ul.active {
    display: flex;
  }

  .navbar ul li {
    margin-left: 0;
    width: 100%;
  }



  /* Dropdown for Hamburger */
  .hamburger-menu .dropdown {
    display: none;
    /* align-items: center; */
  }

  .hamburger-menu.active .dropdown {
    display: block;
  }

  /* Fixing the space for the dropdown */
  .hamburger-menu .dropdown li {
    padding-left: 0;
    text-align: center;
  }

  .hamburger-menu .dropdown li a {
    padding: 10px 15px;
    display: block;
    text-align: center;
  }
}

/* About Community Section */
.about-community {
  padding: 30px;
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)),
              url('images/about-img.png');
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  margin: 20px auto;
  max-width: 1400px;
  height: 600px; 
  border-radius: 20px;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-community:hover {
  transform: translateY(-5px);
/* color: red; */
}

.about-community::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #ffd93d);
  transition: 0.5s;
}

.about-community:hover::before {
  left: 0;
}

.about-community h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-community h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #ffd93d);
  border-radius: 2px;
}

.about-community p {
  max-width: 1000px;
  margin: 15px auto;
  padding: 15px;
  color: #f0f0f0;
  font-size: 1rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  max-height: calc(100vh - 300px);
  overflow-y: auto;
}

.social-icons {
  margin-top: 20px;
  padding: 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons img {
  width: 25px;
  height: 25px;
  transition: all 0.3s ease;
  filter: brightness(1.2);
}

.social-icons a:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-icons a:hover img {
  transform: scale(1.15);
  filter: brightness(1.4);
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
  .about-community {
      height: calc(100vh - 60px);
      padding: 20px;
      margin: 15px;
  }

  .about-community h2 {
      font-size: 2rem;
      margin-bottom: 15px;
  }

  .social-icons {
      gap: 20px;
  }

  .social-icons a {
      width: 45px;
      height: 45px;
  }

  .social-icons img {
      width: 22px;
      height: 22px;
  }
}

@media (max-width: 480px) {
  .about-community {
      height: calc(100vh - 40px);
      padding: 15px;
      margin: 10px;
  }

  .about-community h2 {
      font-size: 1.8rem;
  }

  .social-icons {
      flex-wrap: wrap;
      gap: 15px;
  }
  
  .social-icons a {
      width: 40px;
      height: 40px;
  }

  .social-icons img {
      width: 20px;
      height: 20px;
  }
}

/* Footer Styles */
/* General Styling for Footer */
.footer-section {
    background-color: #f9fafb;
    padding: 3rem 1rem;
    color: #6b7280;
    font-family: 'Arial', sans-serif;
  }

/* Light Mode Footer */
.light-mode-footer {
  background-color: #f8f9fa;
  color: #000;
}

/* Dark Mode Footer */
.dark-mode-footer {
  background-color: #2E2E2E;
  color: #fff;
}

.dark-text {
  color: #f1f1f1;
}

.light-text {
  color: black;
}
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  
  .footer-logo-about {
    flex: 1;
    min-width: 300px;
    text-align: left;
  }
  
  .footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  
  .footer-logo {
    height: 50px;
    display: inline-block;
  }
  
  .website-name {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .footer-about-text {
    margin-top: 15px;
    line-height: 1.6;
    font-style: italic;
  }
  
  .social-icons {
    margin-top: 1.5rem;
    display: flex;
    gap: 10px;
  }
  
  .social-icons img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
  }
  
  .social-icons img:hover {
    transform: scale(1.1);
  }
  
  /* Footer Links Styling */
  .footer-links {
    display: flex;
    justify-content: space-evenly;
    gap: 2rem;
    flex: 1;
    min-width: 250px;
  }
  
  .footer-column {
    flex: 1;
  }
  
  .footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .footer-list {
    list-style: none;
    padding: 0;
  }
  
  .footer-list li {
    margin-bottom: 0.75rem;
  }
  
  .footer-list a {
    text-decoration: none;
    color: #6b7280;
    transition: color 0.2s ease;
  }
  
  .footer-list a:hover {
    color: #2563eb;
  }
  
  /* Footer Bottom Styling */
  .footer-divider {
    border-top: 1px solid #e5e7eb;
    margin: 2rem 0;
  }
  
  .footer-bottom-text {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
  }
