  @font-face {
        font-family: 'Nikosh';
        src: url('{{ public_path('fonts/Nikosh.ttf') }}') format('truetype');
        font-weight: normal;
        font-style: normal;
    }
    body {
            font-family: 'Nikosh', sans-serif;
	}
			body {
            font-family: 'Nikosh', sans-serif;
            background-color: #f4f7f6;
            display: flex;
            justify-content: center;
            height: 100vh;
            margin: 0;
        }
        .container {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            max-width: 800px;
            width: 90%;
            border-top: 6px solid #2c3e50;
        }
        h2 {
            color: #2c3e50;
            text-align: center;
            margin-bottom: 25px;
            border-bottom: 2px solid #eee;
            padding-bottom: 10px;
        }
        ul {
            list-style-type: none;
            padding: 0;
        }
        li {
            background: #fff;
            margin-bottom: 15px;
            padding: 10px;
            border-left: 5px solid #3498db;
            border-radius: 4px;
            font-size: 20px;
            /*line-height: 0.8;*/
            color: #34495e;
            text-align:left;
            transition: transform 0.2s;
        }
        li:hover {
            transform: translateX(5px);
            background-color: #f9f9f9;
        }
        .highlight {
            font-weight: bold;
            color: #e74c3c;
        }
		
		
		.modern-btn {
  position: relative;
  padding: 15px 35px;
  background: #000; /* Dark base */
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* The animated gradient background */
.modern-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ff00cc, #3333ff);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Floating glow effect */
.modern-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 0, 204, 0.3);
}

.modern-btn:hover::before {
  opacity: 1;
}

/* Ensuring text stays above the gradient */
.text {
  position: relative;
  z-index: 1;
}

/* Click feedback */
.modern-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(255, 0, 204, 0.2);
}
