*{ box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f9f9fb;
  color: #222;
}

/* Header */
header {
  padding: 0 !important;
  margin: 0 !important;
  position: sticky;
  top: 0;
  height: 75px;
  background: linear-gradient(90deg, #17b2ff 10%, #f107a3 100%);
  color: #fff;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
}

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

.logo img {
  height: 50px;
  width: auto;
}

.logo span {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
}

.top-header h1 { 
  font-size: 20px; 
}

.top-header input {
  padding: 6px 10px;
  border-radius: 20px;
  border: none;
  outline: none;
  width: 50%;
}

/* Navigation (FIXED LEFT GAP) */
.nav-scroll {
  display: flex;
  overflow-x: auto;
  background: #fff;
  gap: 10px;
  font-size: 0.8rem;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  scrollbar-width: none;
}

.nav-scroll::-webkit-scrollbar {
  display: none;
}

.nav-scroll a {
  margin-left: 0 !important;
  flex: 0 0 auto;
  padding: 10px 15px;
  text-decoration: none;
  color: #6a0dad;
  border: 1.5px solid #17b2ff;
  margin: 5px 0;
  border-radius: 50px;
}

.nav-scroll a.active {
  border-color: #f107a3;
  font-weight: bold;
}

/* category bar */
.tabs{
	max-width:1000px;
	margin:20px auto 0;
	display:flex;
	background :#fff ;
	gap:10px;
	padding:8px 6px;
	overflow-x:auto
	}
	
.tabs button{
  flex:0 0 auto;
  padding:8px 14px;
  border-radius:999px;
  margin-left: 5px;
  border:1.5px solid #17b2ff;
  background:transparent ;
  color:black ;
  cursor:pointer;
  font-weight:600}
  
.tabs button.active{
	
  border: 1.5px solid #f107a3 ;
  border-radius: 50px ;
  font-weight: bold;
	
	
	}


/* SECTIONS */
section {
  max-width: 850px;
  margin: 20px auto;
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  display: none;
}

section.active {
	display: block; 
	animation: fadeIn 0.4s ease;
	}
	
h2, h3 {
	color: var(--blue);
	margin-bottom: 10px;
}

a {
	color: var(--blue); 
	text-decoration: none;
}

form {
	display: flex; 
	flex-direction: column; 
	gap: 10px; 
	margin-top: 10px;
}

input, textarea {
	padding: 10px; 
	border-radius: 6px; 
	border: 1px solid #ccc; 
	font-size: 15px;
}

button[type=submit] {
  background :#fff;
  color: #222;
  border:1.5px solid #17b2ff;
  padding: 10px;
  border-radius: 6px; 
  cursor: pointer; 
  font-weight: 600;
}

button[type=submit]:hover {
	opacity: 0.9;
	}
	
footer {
	text-align: center; 
	margin: 30px 0; 
	color: #777;
	font-size: 13px;
}

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

