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

body {
  font-family: "Inter", sans-serif;
  background: #f8fafc;
  color: #1e293b;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  background: white;
  padding: 16px 0;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
}

.logo {
  height: 40px;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
  color: #475569;
  transition: 0.2s;
}

.nav-links a:hover {
  color: #2563eb;
}

/* HERO */
.hero {
  background: linear-gradient(120deg, #2563eb, #172554);
  padding: 140px 0;
  text-align: center;
  color: white;
}

.hero-inner h1 {
  font-size: 42px;
  font-weight: 800;
}

.hero-inner p {
  margin-top: 10px;
  font-size: 18px;
  opacity: 0.9;
}

.primary-btn {
  display: inline-block;
  margin-top: 25px;
  background: #2563eb;
  padding: 12px 28px;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.2s;
}

.primary-btn:hover {
  background: #1d4ed8;
}

/* SECTION TITLES */
.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 700;
  color: #0f172a;
}

/* SERVICES */
.services {
  padding: 80px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.06);
  transition: 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.08);
}

/* ENQUIRY FORM */
.enquiry {
  padding: 80px 0;
}

.form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.05);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 16px;
}

textarea {
  margin-top: 20px;
  height: 120px;
}

.form-result {
  margin-top: 15px;
  font-size: 15px;
}

/* ABOUT */
.about {
  padding: 80px 0;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
}

/* FOOTER */
.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 20px 0;
  margin-top: auto;
  text-align: center;
}

.tab-section {
  display: none;
}

.tab-section.active {
  display: block;
}
.about-info {
  margin-top: 30px;
  text-align: left;
  max-width: 600px;
  margin-inline: auto;
}

.about-info h3 {
  font-size: 22px;
  margin-top: 25px;
  color: #0f172a;
}

.about-info ul {
  margin: 10px 0 0 20px;
  line-height: 1.8;
}

.about-info li {
  font-size: 17px;
  color: #334155;
}

.email-link {
  color: #2563eb;
  font-size: 18px;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}
.about-info {
  margin-top: 40px;
  max-width: 700px;
  margin-inline: auto;
}

.about-block {
  background: #ffffff;
  padding: 20px 25px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.about-block h3 {
  margin-bottom: 12px;
  font-size: 20px;
  color: #0f172a;
  font-weight: 700;
}

/* Two-column style for labels and values */
.about-list .item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
}

.about-list .item:last-child {
  border-bottom: none;
}

.label {
  font-weight: 600;
  color: #475569;
}

.value {
  color: #1e293b;
  font-weight: 500;
}

.email-link {
  color: #2563eb;
  text-decoration: none;
  font-size: 18px;
}

.email-link:hover {
  text-decoration: underline;
}
