/* File: /ict-site/css/style.css */
/* Created: 2025-07-31 15:50 */

/* Reset default spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Typography */
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
  padding-bottom: 50px;
}

/* Header and Navigation */
header {
  background-color: #002b5c;
  color: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 60px; /* Logo size: 250x80 recommended */
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

nav a.active {
  border-bottom: 2px solid #fff;
}

/* Hero Section */
.hero {
  position: relative;
}

.hero img {
  width: 100%;
  height: auto;
}

.hero-text {
  position: absolute;
  bottom: 20%;
  left: 5%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 20px;
  max-width: 50%;
}

/* Intro & Sections */
main {
  padding: 40px;
}

.features {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.features div {
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  flex: 1;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
}

.features img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

/* Forms */
form {
  background: #fff;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

input, textarea {
  width: 100%;
  margin-bottom: 20px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  background-color: #002b5c;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
}

/* Footer */
footer {
  position: fixed;
  bottom: 0;
  background: #002b5c;
  color: #fff;
  width: 100%;
  text-align: center;
  padding: 10px 0;
}
