body {
    margin: 0;
    padding-top: 0px;
    background: #e9f3ff;
    font-family: Arial, sans-serif;
}
.NavBar{
	height: 100px;
	width: 100%;
	padding:10px;
	border:2px solid transparent;
	position: fixed;
	top: 0;         
    left: 0;
	background-color: #1468a2;
	
    display: flex;
    justify-content: space-between;
    align-items: center;
	z-index: 9999;
	
	box-sizing: border-box; /* important fix */
}
.logo{
	height: 100px;
	width: 100px;
}
.NavPages {
    display: flex;
    gap: 25px;          /* space between links */
    margin-left: auto;  /* push links to the right */
    margin-right: 30px; /* fixed distance from the right edge */
}
.NavPages a {
    color: white;                 /* text color */
    text-decoration: none;        /* remove underline */
    margin-left: 25px;            /* spacing between links */
    font-size: 18px;              /* adjust text size */
    font-family: Arial, sans-serif;
    font-weight: 500;             /* slightly bold */
	font: poppins;
}
.NavPages a:hover {
    color: #ffdd57;               /* highlight color */
    transition: 0.3s;             /* smooth transition */
}
/* Style for the active (current) page link */
.NavPages a.active {
    background-color: white; /* White background */
	padding: 5px;
    color: #1468a2;             /* Blue font color */
	border-radius: 10px;	/*makes box rounder*/
}
.Function-Container{
    display: flex;               /* enable flexbox */
	justify-content: center;
    gap: 20px;                   /* space between the boxes */
}
.Function-Container p{
	color: White;
}	
.Function-Container h1{
	color: White;
}
.FuncBox{
    display: flex;                  /* make text inside easy to align */	
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;          /* remove underline */
    color: white;                   /* text color */
	height: 200px;
	width: 260px;
	padding:10px;
	border:2px solid transparent;
	position: relative;
	background-color: #104271;
	border-radius: 10px;	/*makes box rounder*/
    transition: 0.3s;
}
.FuncBox:hover {
    background-color: #1468a2;      /* hover effect */
    cursor: pointer;                /* shows pointer */
}

.function-title {
    text-align: center;
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-color);
    font-weight: 700;
}

/* ========= Survey Button ========= */
.SurveyForm {
    text-align: center;
    margin-top: 40px;
}
	
.survey-button {
    display: inline-block;
    padding: 12px 20px;
    background: #1468a2;
    color: white;
    text-decoration: none;  /* removes underline */
    border-radius: 8px;
    font-size: 18px;
    transition: 0.3s;
}

.survey-button:hover {
    background: #0d4e7f;
}

/* ========= THEME VARIABLES ========= */
:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --navbar-color: #1468a2;
}

/* Apply theme */
body {
    margin: 0;
    background-color: var(--bg-color);
    color: var(--text-color);
}

/* Example navbar */
.NavBar {
    width: 100%;
    background-color: var(--navbar-color);
    padding: 15px;
}

/* ============================
   BEAUTIFUL SETTINGS PAGE
============================ */
.settings-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.settings-box {
    background: var(--bg-color);
    color: var(--text-color);
    padding: 30px 35px;
    width: 400px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgb(0 0 0 / 15%);
    border: 1px solid rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.settings-box h2 {
    margin-top: 0;
    text-align: center;
    font-size: 26px;
    margin-bottom: 5px;
}

.settings-subtitle {
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 25px;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.setting-item:last-child {
    border-bottom: none;
}

/* ============================
   SWITCH DESIGN (Dark Mode)
============================ */
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.switch input {
    display: none;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #0078ff;
}

input:checked + .slider:before {
    transform: translateX(22px);
}

/* ============================
   COLOR PICKER
============================ */
.color-picker {
    width: 50px;
    height: 30px;
    border-radius: 6px;
    border: solid 1px #888;
    cursor: pointer;
}

/* ============================
   SAVE BUTTON
============================ */
.save-btn {
    width: 100%;
    margin-top: 25px;
    padding: 12px;
    background: #0078ff;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.25s;
}

.save-btn:hover {
    background: #005fcc;
}

.reset-btn {
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    background: #dddddd;
    color: #333;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.25s;
}

.reset-btn:hover {
    background: #cfcfcf;
}

/* Default (light mode) */
.quiz-container {
    background: #ffffff;
    color: #000000;
}

/* DARK MODE FIX — when dark mode is active */
[data-theme="dark"] .quiz-container {
    background: #1e1e1e;   /* dark gray */
    color: #ffffff;        /* white text */
}

/* make labels follow text color */
[data-theme="dark"] .quiz-container label {
    color: #ffffff;
}

/* ================================
   ABOUT SECTION
================================ */
.AboutSection {
    width: 90%;
    max-width: 1000px;
    margin: 80px auto;
    padding: 25px;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    transition: background 0.3s, color 0.3s;
}

.AboutSection h1 {
    margin-bottom: 15px;
    font-size: 2rem;
    color: var(--text);
}

.AboutSection p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text2);
}


/* ================================
   TEAM SECTION
================================ */
.TeamSection {
    width: 100%;
    margin: 60px 0;
    text-align: center;
}

.TeamSection h1 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text);
}

/* Container for the cards */
.TeamContainer {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* Individual team card */
.TeamCard {
    width: 260px;
    background: var(--bg2);
    padding: 20px;
    border-radius: 14px;
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    transition: transform 0.25s ease, background 0.3s;
}

.TeamCard:hover {
    transform: translateY(-5px);
}

/* Image styling */
.TeamCard img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid var(--accent);
}

/* Names */
.TeamCard h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text);
}

/* Roles */
.TeamCard p {
    font-size: 0.95rem;
    color: var(--text2);
}

.Features-Section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 60px 5%;
    flex-wrap: wrap;
}

.Feature-Card {
    background: #ffffff; /* Contrast against your blue-ish background */
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    width: 280px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}

.Feature-Icon {
    font-size: 3rem;
    color: #1468a2; /* SIKAP blue */
    margin-bottom: 20px;
}

.Feature-Card h4 { color: #2c3e50; margin-bottom: 10px; }
.Feature-Card p { color: #7f8c8d; font-size: 0.95rem; line-height: 1.5; }