/* Footer Styles */
#footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    color: white;
    padding: 3rem 1rem 1rem;
    font-size: 0.9rem;
    user-select: none;
  }
  
  #footer .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
  }
  
  .footer-content > div {
    flex: 1 1 200px;
    min-width: 180px;
  }
  
  .footer-content h4 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
  }
  
  .footer-content p {
    line-height: 1.4;
    margin-bottom: 1rem;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover,
  .footer-links a:focus {
    color: #81c784;
    outline: none;
    text-decoration: underline;
  }
  
  .button {
    display: inline-block;
    background-color: #4CAF50;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .button:hover,
  .button:focus {
    background-color: #388e3c;
    outline: none;
  }
  
  /* Footer bottom */
  .footer-bottom {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
    font-size: 0.85rem;
  }
  
  .footer-bottom a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
  }
  
  .footer-bottom a:hover,
  .footer-bottom a:focus {
    color: #81c784;
    outline: none;
    text-decoration: underline;
  }
  
  /* Base */
  body {
    margin: 0;
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(270deg, #777, #4CAF50, #FFC107, #F44336, #673AB7, #2196F3);
    background-size: 1200% 1200%;
    animation: gradientShift 30s ease infinite;
    color: white;
    scroll-behavior: smooth;
    padding-bottom: 65px;
  }
  @keyframes gradientShift {
    0% {background-position:0% 50%}
    50% {background-position:100% 50%}
    100% {background-position:0% 50%}
  }
  
  a {
    color: #FFF;
    text-decoration: none;
  }
  a:hover, a:focus {
    text-decoration: underline;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    box-sizing: border-box;
  }
  
  .navbar img {
    height: 40px;
  }
  
  /* Container for menu button + bell */
  .navbar-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto; /* push to right */
  }
  
  /* Nav menu */
  .navbar nav {
    display: flex;
    gap: 1rem;
    font-weight: 600;
    max-width: 100vw;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    order: 2;  /* Push nav to the right */
    margin-left: auto; /* make nav go to right side */
  }
  
  /* Hamburger menu button */
  .menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    order: 3; /* after nav */
    background: transparent;
    border: none;
    color: white;
  }
  
  /* Bell icon */
  .notif-bell {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    user-select: none;
  }
  
  /* Mobile styles */
  @media (max-width: 768px) {
    .navbar nav {
      display: none;
    }
  
    .notif-bell {
      display: inline-flex;
      order: 1; /* first in navbar-right */
    }
  
    .menu-btn {
      display: inline-flex;
      order: 2; /* after bell */
    }
  
    .navbar-right {
      margin-left: auto; /* keep right aligned */
    }
  }
  
  /* Hero */
  .masthead {
    padding-top: 80px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
  }
  
  .masthead .logo-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    padding: 1rem 2rem;
    border-radius: 20px;
    max-width: 350px;
  }
  
  .masthead img {
    max-width: 300px;
    height: auto;
  }
  
  .masthead p {
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.3;
  }
  
  /* Scroll arrow */
  .scroll-arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    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);}
  }
  
  /* Requests & History */
  .section {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    margin: 2rem auto 5rem;
    padding: 1rem;
    border-radius: 15px;
    width: 90%;
    max-width: 1200px;
    color: #fff;
  }
  .tabs {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    user-select: none;
  }
  .tab {
    flex: 1;
    text-align: center;
    padding: .5rem;
    cursor: pointer;
    font-weight: 600;
    background: transparent;
    transition: background-color 0.3s ease;
  }
  .tab:hover, .tab:focus {
    background: rgba(255,255,255,0.1);
    outline: none;
  }
  .tab.active {
    border-bottom: 3px solid #fff;
    font-weight: 700;
    background: rgba(255,255,255,0.2);
  }
  .tab-content {
    display: none;
    padding-top: 1rem;
    min-height: 400px;
  }
  .tab-content.active { display: block; }
  @media (min-width: 992px) {
    .tabs { display: none; }
    .tab-layout { display: flex; gap: 1rem; }
    .tab-content {
      display: block !important;
      flex: 1;
    }
  }
  
  iframe {
    border-radius: 12px;
    border: none;
    width: 100%;
    height: 100%;
    min-height: 400px;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 1rem;
    font-size: .9rem;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    color: #eee;
    user-select: none;
  }
  .overlay-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    box-sizing: border-box;
  }
  
  .overlay-menu[aria-hidden="false"] {
    display: flex;
  }
  
  .overlay-menu a {
    color: white !important;
    text-decoration: none;
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 700;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
  }
  
  .overlay-menu a:hover,
  .overlay-menu a:focus {
    color: #4CAF50 !important;
    transform: scale(1.1);
    outline: none;
  }
  
  .overlay-menu a:active {
    color: white !important;
  }
  
  .overlay-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: clamp(2rem, 6vw, 3rem);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
  }
