/* Global Reset & Fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}
header .logo a {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
}
nav ul {
  display: flex;
  list-style: none;
}
nav ul li {
  margin-left: 25px;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
nav ul li a:hover {
  color: #f39c12;
}
.nav-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: #fff;
}

/* Hero Section */
.hero-home {
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hero-home::before {
  content: "";
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.55);
}
.hero-home .hero-content {
  position: relative;
  z-index: 1;
}
.hero-home h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero-home p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Sections */
.section {
  padding: 40px 20px;
  text-align: center;
}
.section h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}
.section p {
  max-width: 800px;
  margin: 0 auto 10px;
  font-size: 1.1rem;
  color: #555;
}
/* Optional: slightly smaller margin under section headers */
.section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px; /* was 25px */
}
/* Our Strategy bullets */
.strategy-list {
  text-align: left;
  display: inline-block;
  margin-top: 15px;
  padding-left: 0;
}
.strategy-list li {
  margin-bottom: 12px;
  font-size: 1.1rem;
  list-style: none;
  position: relative;
  padding-left: 25px;
}
.strategy-list li::before {
  content: '•';
  color: #f39c12;
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -2px;
}

/* Focus Area */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
  justify-items: center;
  align-items: stretch;
}
.focus-card {
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,0.1);
  transition:0.3s;
  display:flex;
  flex-direction:column;
  width:100%;
  max-width:300px;
}
.focus-card:hover {
  transform: translateY(-8px);
  box-shadow:0 12px 25px rgba(0,0,0,0.2);
}
.focus-card img {
  width:100%;
  height:180px;
  object-fit:cover;
}
.focus-card h3 {
  font-size:1.5rem;
  margin:15px 0 10px;
  color:#222;
}
.focus-card p {
  padding:0 15px 20px;
  font-size:1rem;
  color:#555;
}

/* Contact Form */
.contact form {
  max-width:600px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:15px;
}
.contact input,
.contact textarea {
  padding:12px 15px;
  border:1px solid #ccc;
  border-radius:8px;
  font-size:1rem;
  width:100%;
}
.contact button {
  padding:12px;
  background:#f39c12;
  color:#fff;
  border:none;
  border-radius:8px;
  font-size:1rem;
  cursor:pointer;
  transition:0.3s;
}
.contact button:hover {
  background:#e67e22;
}

/* Footer */
footer {
  background:#222;
  color:#fff;
  text-align:center;
  padding:30px 20px;
}

/* Responsive */
@media(max-width:768px) {
  nav ul {
    display:none;
    flex-direction:column;
    background: rgba(0,0,0,0.95);
    position:absolute;
    top:60px;
    right:0;
    width:200px;
    padding:10px;
  }
  nav ul.show {
    display:flex;
  }
  nav ul li {
    margin:15px 0;
  }
  .nav-toggle {
    display:block;
  }
}
