/* Variables */
:root {
  --primary: #10bcd3; /* Gold */
  --primary-hover: #26d7ee; /* Lighter Gold */
}

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

/* Main structure */
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: #0d0e12;
  color: #e5e5e5;
  line-height: 1.6;
}
section {
  padding: 3rem 0;
  min-height: 400px;
}
.container h2 {
  text-align: center;
  color: #fff;
}
.container {
  max-width:1200px;
  margin:0 auto;
  padding:0 1rem;
}

/* Main styling */
a {
  color: var(--primary);
  text-decoration: none;
}
a:hover {
  color: var(--primary-hover);
}
h1, h2, h3, h4 {
  font-weight: bold;
  font-size: 2.0em;
  margin-bottom: 1em;
}
li {
  font-size: 1.1rem;
  line-height: 2.0em;
  position: relative;
}

/* Header */
header {
  background:#141517;
  padding:1rem 0;
  border-bottom:1px solid #222;
}
header .header-inner {
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.logo {
  display:flex;
  align-items:center;
  gap:0.5rem;
}
.logo img {
  height:40px;
  width:100px;
}
.nav a {
  margin-left:1.5rem;
  font-weight:500;
}

/* Hero */
.hero {
  padding: 4rem 0;
  text-align: center;
  background: linear-gradient(135deg, #1e1f23, #0e0f13);
  color: #b0b0b0;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #fff;
}
.hero .subtitle{
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.hero .supertitle {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, color 0.3s, border 0.3s;
  border: 1px solid var(--primary);
}
.btn.primary {
  color: #0d0e12;
  background: var(--primary);
}
.btn.secondary {
  color: var(--primary);
}
.btn:hover {
  color: #e3e3e3;
  background: var(--primary-hover);
  border: 1px solid var(--primary-hover);
}

/* Contact */
.contact {
  padding: 2rem 0;
  text-align: center;
  background: #141517;
  color: #e5e5e5;
}
.contact p {
  font-size: 1.1rem;
}
.contact a {
  color: var(--primary-hover);
  text-decoration: none;
}
.contact a:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  padding: 1.5rem 0;
  background: #0d0e12;
  color: #e5e5e5;
  text-align: center;
}
.site-footer .footer-nav {
  margin-top: 1rem;
}
.site-footer .footer-nav a {
  margin: 0 1rem;
  color: var(--primary-hover);
  text-decoration: none;
}
.site-footer .footer-nav a:hover {
  text-decoration: underline;
}

/* Highlights */
.highlights {
  padding: 3rem 0;
  background: #141517;
  color: #e5e5e5;
}
.highlights-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}
.highlights-list li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem;
}
.highlights-list li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1;
}

/* About Section */
.about {
  padding: 3rem 0;
  background: #141517;
  color: #e5e5e5;
  text-align: center;
}
.about p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.about-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.about-points .point {
  background: #1e1f23;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-size: 1rem;
  color: #cfcfcf;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.about-points .point:hover {
  background: #27292e;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.card-grid.rows2 {
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr)); /* 2 items per row */
}
.card-grid.rows3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 3 items per row */
}
.card {
  background: #1e1f23;
  padding: 1.5rem;
  border-radius: 8px;
  transition: transform 0.2s, background-color 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  background: #27292e;
}
.card.grid {
  display: flex;
}
.card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  color: var(--primary);
}
.card p {
  font-size: 0.95rem;
  color: #cfcfcf;
}
.card .icon {
  font-size: 2rem;
  color: var(--primary);
  flex-shrink: 0;
}
.card div.icon {
  margin-right: 0.7rem;
}
.card .icon img {
  height: 1em;
  width: auto;
}
.card ul {
  list-style-position: inside;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.social-links {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.social-links
.social-icon {
  width: 24px;
  height: 24px;
  fill: #e5e5e5; /* Near-white color to fit the color scheme */
  transition: transform 0.2s, fill 0.2s;
}
.social-links
.social-icon:hover {
  transform: scale(1.2);
  fill: var(--primary);
}

/* Unified styles for cards */
.service-card,
.project-card,
.about-points .point {
  background: #1e1f23;
  border-radius: 8px;
  transition: transform 0.2s, background-color 0.2s;
}
.service-card:hover,
.project-card:hover,
.about-points .point:hover {
  transform: translateY(-4px);
  background: #27292e;
}
