body {
    background-color: #f8fafc;
    font-family: 'Nunito', sans-serif;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.navbar {
    background-color: rgba(24, 124, 25, 0.9) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 12px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}


.navbar-brand img {
    height: 30px;
    margin-right: 10px;
}

.navbar-brand,
.nav-link {
    color: white !important;
    display: flex;
    align-items: center;
    font-weight: 700;
}

/* Specific Navbar Link Styles */
.nav-link-login {
    padding: 8px 15px !important;
    transition: opacity 0.2s ease;
    position: relative;
    z-index: 10000;
}

.nav-link-login:hover {
    opacity: 0.8;
}

.nav-link-register {
    background: linear-gradient(135deg, #FFAB40, #FF9100) !important;
    color: white !important;
    padding: 10px 30px !important;
    border-radius: 12px;
    margin-left: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 171, 64, 0.3);
    position: relative;
    z-index: 10000;
}

.nav-link-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 171, 64, 0.4);
    filter: brightness(1.1);
}


/* Mobile Navbar Overrides */
@media (max-width: 991.98px) {
    .nav-link-register {
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
        display: block;
        width: fit-content;
    }
    
    .navbar-collapse {
        z-index: 10000;
    }
}

.clock-overlay {
  position: absolute;
  top: 97%; /* Adjust this value as needed */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  text-align: center;
  width: 100%;
  pointer-events: none;
  background-color: #8cc71ec4;
}

#liveClock {
  font-size: 1rem;
  font-weight: bold;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 300px 20px;
  box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

    .slider {
      display: flex;
      height: 100%;
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
      transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1;
    }

    .slide {
      flex: 0 0 100%;
      height: auto;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      animation: slideZoom 8s ease-in-out infinite;
    }

    @keyframes slideZoom {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }

    .content-slider {
      position: relative;
      overflow: hidden;
      min-height: 300px;
      width: 100%;
    }

    .content-slide:not(.active) {
      position: absolute !important;
      width: 0 !important;
      height: 0 !important;
      visibility: hidden !important;
      opacity: 0 !important;
      transform: translateX(-9999px) !important;
      transition: none !important;
      pointer-events: none !important;
      z-index: -9999 !important;
      left: -9999px !important;
      top: -9999px !important;
      display: none !important;
      overflow: hidden !important;
      clip: rect(0, 0, 0, 0) !important;
      clip-path: inset(100%) !important;
    }

    .content-slide.active {
      position: relative !important;
      visibility: visible !important;
      opacity: 1 !important;
      transform: translateX(0) !important;
      pointer-events: auto !important;
      z-index: 10 !important;
      display: block !important;
      width: 100% !important;
      height: auto !important;
      left: 0 !important;
      top: 0 !important;
    }

    .slide-dots {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 20px;
    }

    .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.4);
      cursor: pointer;
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }

    .dot:hover {
      background-color: rgba(255, 255, 255, 0.6);
      transform: scale(1.1);
    }

    .dot.active {
      background-color: #69B41E;
      border-color: white;
      transform: scale(1.2);
    }

    .content-actions {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .btn-outline-hero {
      background-color: transparent;
      color: white;
      border: 2px solid white;
      padding: 10px 20px;
      font-size: 1rem;
      border-radius: 25px;
      transition: all 0.3s ease;
    }

    .btn-outline-hero:hover {
      background-color: white;
      color: #187C19;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .login-form-inline {
      background: rgba(255, 255, 255, 0.95);
      padding: 25px;
      border-radius: 15px;
      margin: 20px 0;
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      max-width: 400px;
      margin-left: auto;
      margin-right: auto;
    }

    .form-row {
      display: flex;
      gap: 10px;
      margin-bottom: 15px;
    }

    .form-input {
      flex: 1;
      padding: 12px 15px;
      border: 2px solid #e0e0e0;
      border-radius: 8px;
      font-size: 14px;
      transition: all 0.3s ease;
      background: white;
    }

    .form-input:focus {
      outline: none;
      border-color: #187C19;
      box-shadow: 0 0 0 3px rgba(24, 124, 25, 0.1);
    }

    .btn-login-inline {
      width: 100%;
      background: linear-gradient(135deg, #187C19, #69B41E);
      color: white;
      border: none;
      padding: 12px;
      border-radius: 8px;
      font-weight: 600;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .btn-login-inline:hover {
      background: linear-gradient(135deg, #136a14, #8DC71E);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(24, 124, 25, 0.3);
    }

    .login-message {
      margin-top: 10px;
      padding: 8px;
      border-radius: 6px;
      font-size: 13px;
      text-align: center;
      min-height: 20px;
    }

    .login-message.error {
      background-color: #fee;
      color: #c33;
      border: 1px solid #fcc;
    }

    .login-message.success {
      background-color: #efe;
      color: #3c3;
      border: 1px solid #cfc;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(29, 29, 29, 0.555), rgba(42, 121, 53, 0.8));
      z-index: 2;
    }

.content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
}

    .content h1 {
        font-size: 2.3rem;
        font-weight: 700;
    }

    .content p {
    font-size: 1rem;
    font-weight: 400;
    }

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hero {
        padding: 200px 15px 100px 15px;
    }
    
    .content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .content p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }
    
    .content-actions {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 15px;
        padding: 0 20px;
        text-align: center;
        display: flex;
    }
    
    .btn-hero, .btn-outline-hero {
        width: 100%;
        max-width: 250px;
        padding: 12px 20px;
        font-size: 0.9rem;
        text-align: center;
        display: block;
        margin: 0 auto;
    }
    
    .content-slider {
        min-height: 250px;
    }
    
    .slide-dots {
        margin-top: 15px;
        gap: 8px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .content h1 {
        font-size: 1.5rem;
    }
    
    .content p {
        font-size: 0.85rem;
        padding: 0 5px;
    }
    
    .content-actions {
        padding: 0 15px;
        justify-content: center;
        align-items: center;
    }
    
    .btn-hero, .btn-outline-hero {
        max-width: 200px;
        font-size: 0.85rem;
        padding: 10px 15px;
        margin: 0 auto;
        display: block;
    }
}


.btn-hero {
    background: linear-gradient(135deg, #69B41E, #4CAF50);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(105, 180, 30, 0.3);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(105, 180, 30, 0.4);
    filter: brightness(1.05);
    color: white;
}


.features {
    margin-top: 10px;
}

.avatars {
    margin-top: 10px;
    margin-bottom: 5px;
    color: #187C19;
}

.avatars h1 {
    text-align: center;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 2.5rem;
}

h5 {
    text-align: center;
    font-weight: 500;
    font-size: 1.6rem;
}

.card {
    border-radius: 10px;
    text-align: center;
    margin: 10px;
}

.card img {
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.modal-content {
    border-radius: 10px;
    background: #ffffff;
    border: none;
    width: 100%;
    max-width: 400px;
    margin: auto;
}

.modal-header {
    background-color: #0D5B11;
    color: white;
}

.modal-body {
    border-radius: 10px;
    background-color: #ffffff;
}

.btn-success {
    background-color: #69B41E;
    border: none;
    color: white;
}

.btn-success:hover {
    background-color: #8DC71E;
}

.avatar-option {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
}

.avatar-option label {
    cursor: pointer;
}

.avatar-option img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.avatar-option input[type="radio"]:checked + img {
    border-color: #187C19;
}

.footer-armygreen {
    background-color: #0D5B11;
}

.social-link:hover {
    color: #8DC71E !important;
    text-decoration: underline;
}

#about-squared h2 {
    font-size: 2.25rem;
    color: #69B41E;
}

#about-squared .lead {
    font-size: 1.1rem;
    color: #187C19;
}


