/* Base styles */
html,
body {
  height: 100%;
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f1f9ff;
}

/* Wrapper for full-page layout */
.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

/* Header and Footer */
header,
footer {
  background-color: #00118e;
  color: #ffffff;
  padding: 10px;
  text-align: center;
}

footer {
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Main container */
.container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  min-height: 100vh;
  flex-wrap: nowrap;
}

/* Sidebar */
.sidebar {
  width: 15%;
  background-color: #cfeaff;
  color: #fff;
  padding: 20px 0;
  flex-shrink: 0;
}
.sidebar h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
  color: #000000;
}
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar li {
  margin-bottom: 10px;
}
.sidebar a {
  display: block;
  color: #000000;
  text-decoration: none;
  padding: 10px 20px;
  transition: background-color 0.2s ease;
  font-size: 14px;
  white-space: nowrap;
}
.sidebar a:hover {
  background-color: #00118e;
  color: #ffffff;
}
/* Main content styling */
.main-content {
  width: 85%;
  flex: 1;
  padding: 20px;
  background-color: #f1f9ff;
}

/* 🍔 Hamburger icon styles */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  margin-right: 20px;
  cursor: pointer;
  color: #fff;
}

/* Mobile styles: sidebar hidden & hamburger shown */
@media (max-width: 768px) {
  .hamburger {
    display: block; /* 👈 show hamburger on tablets/mobiles */
  }

  .sidebar {
    position: absolute;
    top: 80px; /* below your header */
    left: -250px; /* start hidden */
    width: 250px;
    min-height: 150vh;
    background-color: #cfeaff;
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
  }

  .sidebar.open {
    left: 0; /* slide in */
  }

  .main-content {
    width: 100%; /* full width when sidebar hidden */
  }
}

@media (max-width: 480px) {
  .hamburger {
    display: block; /* 👈 show hamburger on tablets/mobiles */
  }

  .sidebar {
    position: absolute;
    top: 70px; /* below your header */
    left: -250px; /* start hidden */
    width: 250px;
    min-height: 150vh;
    background-color: #cfeaff;
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
  }

  .sidebar.open {
    left: 0; /* slide in */
  }

  .main-content {
    width: 100%; /* full width when sidebar hidden */
  }
}

/* Headings */
h1,
h2,
h3 {
  color: #333;
}

/* Form styles */
form label {
  display: block;
  margin-top: 10px;
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Dashboard-specific styles */
.dashboard-section {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}

.overview-cards,
.analytics-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 180px;
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

table,
th,
td {
  border: 1px solid #ddd;
}

th,
td {
  padding: 10px;
  text-align: left;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .container {
    width: 90%;
    padding: 15px;
  }

  nav a {
    margin: 0 5px;
    font-size: 14px;
  }

  .overview-cards,
  .analytics-cards {
    flex-direction: column;
  }

  table,
  th,
  td {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  header,
  footer {
    padding: 8px;
  }

  .container {
    padding: 10px;
  }

  nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  nav a {
    display: flex; /* ensure links remain inline */
    margin: 5px 10px; /* adjust margins as needed */
  }

  form input,
  form textarea,
  form select {
    padding: 6px;
    font-size: 14px;
  }

  form button,
  .btn {
    padding: 8px;
    font-size: 14px;
  }

  table,
  th,
  td {
    font-size: 12px;
  }
}

/* Top Navigation Bar */
.top-nav {
  background-color: #00118e;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

@media (max-width: 480px) {
  .top-nav {
    padding: 5px 10px;
  }
  .nav-left {
    width: min-content;
    display: flex;
  }
}

.nav-left {
  display: flex;
  align-items: center;
}

/* Logo/Brand styling */
.nav-left a {
  font-size: 24px;
  color: #ffffff;
  text-decoration: none;
  margin: 0px 0px;
}

/* Navigation links list styling */
.nav-right {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Each nav item */
.nav-right li {
  margin-left: 20px;
}

@media (max-width: 480px) {
  .nav-right li {
    margin-left: 8px;
  }
}

/* Nav links styling */
.nav-right a {
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
  margin: 0px 10px;
}

.nav-right a:hover {
  color: #90baed;
  text-decoration: underline;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 480px) {
  .nav-left a {
    font-size: 15px;
  }
  .nav-right li {
    margin-left: 0;
  }
  .nav-right a {
    font-size: 12px;
  }

  .nav-right {
    display: flex;
  }
}

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

/* Footer styles */
.footer {
  color: #fff;
  padding: 30px 20px;
  width: 100%;
  box-sizing: border-box;
}

.footer-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 250px;
  margin: 15px;
  min-width: 220px;
}

.footer-section h3 {
  margin-bottom: 15px;
  color: azure;
  font-size: 18px;
}

.footer-section p,
.footer-section ul li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.5;
}

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

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  text-decoration: underline;
  color: #90d4ff;
}

/* Feedback form styles */
.feedback-form form {
  display: flex;
  flex-direction: column;
}

.feedback-form input,
.feedback-form textarea {
  margin-bottom: 10px;
  padding: 8px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

.feedback-form textarea {
  min-height: 60px;
  resize: vertical;
}

.feedback-form button {
  padding: 10px;
  border: none;
  background: #21af01;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 14px;
}

.feedback-form button:hover {
  background: #198754;
}

#feedbackMsg {
  margin-top: 10px;
  font-size: 14px;
  color: #fff;
}

/* Footer bottom section */
.footer-bottom {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 20px;
  font-size: 13px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-section {
    margin: 10px 0;
  }
  .feedback-form form {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 20px 10px;
  }
  .footer-section h3 {
    font-size: 16px;
  }
  .footer-section p,
  .footer-section ul li {
    font-size: 13px;
  }
  .feedback-form input,
  .feedback-form textarea {
    font-size: 13px;
    padding: 6px;
  }
  .feedback-form button {
    font-size: 13px;
    padding: 8px;
  }
  .footer-bottom {
    font-size: 12px;
  }
}
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  overflow-x: hidden;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header Styles */
.modern-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.hamburger-btn:hover {
  background: rgba(59, 130, 246, 0.1);
}

.hamburger-icon,
.close-icon {
  font-size: 1.25rem;
  color: #3b82f6;
  transition: all 0.3s ease;
}

.close-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.hamburger-btn.active .hamburger-icon {
  opacity: 0;
  transform: rotate(-90deg);
}

.hamburger-btn.active .close-icon {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg);
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.875rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: bold;
  font-size: 1.25rem;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: all 0.3s ease;
}

.brand-name:hover {
  background: linear-gradient(135deg, #2563eb, #0891b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.powered-by {
  font-size: 0.75rem;
  color: #6b7280;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #4b5563;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
}

.nav-link:hover {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  transform: translateY(-1px);
}

.nav-link i {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.nav-link:hover i {
  transform: scale(1.1);
}

.auth-buttons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.login-link {
  color: #3b82f6;
}

.btn-register {
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-register:hover {
  background: linear-gradient(135deg, #2563eb, #0891b2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.logout-link:hover {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

/* Mobile Menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
}

.mobile-menu.active {
  max-height: 16rem;
}

.mobile-menu-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #4b5563;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover {
  color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
}

.mobile-nav-link.logout:hover {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

.mobile-register-btn {
  margin: 0.5rem 1rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.mobile-register-btn:hover {
  background: linear-gradient(135deg, #2563eb, #0891b2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 1;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #fff7ed 100%);
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background: url("https://images.pexels.com/photos/3184430/pexels-photo-3184430.jpeg?auto=compress&cs=tinysrgb")
    center/cover;
  opacity: 0.05;
}

.floating-elements {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(40px);
  animation: float 6s ease-in-out infinite;
}

.circle-1 {
  width: 18rem;
  height: 18rem;
  background: rgba(59, 130, 246, 0.2);
  top: 5rem;
  left: 2.5rem;
  animation-delay: 0s;
}

.circle-2 {
  width: 18rem;
  height: 18rem;
  background: rgba(6, 182, 212, 0.2);
  top: 10rem;
  right: 2.5rem;
  animation-delay: 2s;
}

.circle-3 {
  width: 18rem;
  height: 18rem;
  background: rgba(249, 115, 22, 0.2);
  bottom: -2rem;
  left: 5rem;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-content {
  position: relative;
  max-width: 1200px;
  margin-bottom: 100px;
  /* margin: 0 auto; */
  /* padding: 0 1rem; */
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text {
  margin-bottom: 4rem;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 50%, #f97316 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-subtitle {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: #4b5563;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.highlight-blue {
  font-weight: 600;
  color: #3b82f6;
}

.highlight-teal {
  font-weight: 600;
  color: #06b6d4;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-bottom: 4rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.btn-primary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #2563eb, #0891b2);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

.btn-primary i {
  transition: transform 0.3s ease;
}

.btn-primary:hover i {
  transform: rotate(12deg);
}

.btn-secondary {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  color: #4b5563;
  border: 1px solid rgba(209, 213, 219, 0.3);
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.blue-gradient {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.teal-gradient {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.orange-gradient {
  background: linear-gradient(135deg, #f97316, #ea580c);
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #4b5563;
  line-height: 1.6;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.scroll-mouse {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid #6b7280;
  border-radius: 1rem;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-wheel {
  width: 0.25rem;
  height: 0.75rem;
  background: #6b7280;
  border-radius: 0.125rem;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(0.5rem);
  }
}
.modern-footer {
  background-color: #00118e;
  color: #ffffff;
  padding: 30px 20px;
  width: 100%;
  box-sizing: border-box;
}

.modern-footer .footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.modern-footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.modern-footer .footer-section {
  flex: 1 1 250px;
  margin: 15px;
  min-width: 220px;
}

.modern-footer .footer-section h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #fff;
}

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

.modern-footer .footer-section ul li {
  margin-bottom: 6px;
}

.modern-footer .footer-section ul li a {
  color: #fff;
  text-decoration: none;
}

.modern-footer .footer-section ul li a:hover {
  text-decoration: underline;
  color: #90d4ff;
}

.modern-footer .company-info .footer-brand {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.modern-footer .footer-brand-name {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.modern-footer .contact-info {
  margin-top: 10px;
}

.modern-footer .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
}

.modern-footer .contact-icon {
  margin-right: 8px;
}

/* Feedback form inside footer */
.modern-footer .feedback-form input,
.modern-footer .feedback-form textarea {
  margin-bottom: 10px;
  padding: 8px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

.modern-footer .feedback-form textarea {
  min-height: 60px;
  resize: vertical;
}

.modern-footer .feedback-form button {
  padding: 10px;
  border: none;
  background: #21af01;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 14px;
}

.modern-footer .feedback-form button:hover {
  background: #198754;
}

.modern-footer #feedbackMsg {
  margin-top: 10px;
  font-size: 14px;
  color: #fff;
}

/* Footer bottom line */
.modern-footer .footer-bottom {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 20px;
  font-size: 13px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .modern-footer .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .modern-footer .footer-section {
    margin: 10px 0;
  }
  .modern-footer .feedback-form form {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .modern-footer {
    padding: 20px 10px;
  }
  .modern-footer .footer-section h3 {
    font-size: 16px;
  }
  .modern-footer .footer-section ul li {
    font-size: 13px;
  }
  .modern-footer .feedback-form input,
  .modern-footer .feedback-form textarea {
    font-size: 13px;
    padding: 6px;
  }
  .modern-footer .feedback-form button {
    font-size: 13px;
    padding: 8px;
  }
  .modern-footer .footer-bottom {
    font-size: 12px;
  }
}
