:root {
  --bg-dark: #0f1115;
  --bg-card: #181b22;
  --accent: #e63946;
  --text-main: #ffffff;
  --text-muted: #b0b3b8;
}

/* Brand color (adjust if needed) */
:root {
  --brand-orange: #e67e22;
}
@media (max-width: 768px) {
  .hero-text {
    padding: 70px 20px 60px;
  }

  .hero-text h1 {
    font-size: 3rem;
    letter-spacing: 2px;
  }
}


.hero-text {
  text-align: center;
  padding: 100px 20px 80px;
  background: #0f1116;
}

.hero-text h1 {
  font-size: 5rem;
  font-weight: 800;
  color: var(--brand-orange);
  letter-spacing: 4px;
  margin-bottom: 15px;
}

.hero-text p {
  color: #b0b3b8;
  font-size: 1.1rem;
}


.hero-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background: #0f1116;
}

.intro-section {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.intro-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #b0b3b8;
  margin-bottom: 20px;
}

.credentials-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  margin-bottom: 40px;
}

.credential {
  background: #181b22;
  padding: 25px 15px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.project-card {
  background: #181b22;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.project-image {
  height: 220px;
  background: #0f1116;
  border: 2px dashed #2a2f3a;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c6f78;
  margin-bottom: 15px;
  font-weight: 500;
}

.project-card h4 {
  margin-bottom: 8px;
  color: var(--brand-orange);
}

.project-card p {
  color: #b0b3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.credential h3 {
  color: var(--brand-orange);
  margin-bottom: 8px;
}

.credential p {
  color: #b0b3b8;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .credentials-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .credentials-section {
    grid-template-columns: 1fr;
  }
}

.hero-logo img {
  max-width: 500px;
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .hero-logo {
    padding: 50px 20px;
  }

  .hero-logo img {
    max-width: 320px;
  }
}

.project-image-real {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
}

.project-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.project-image-wrapper img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

/* Hover zoom */
.project-image-wrapper:hover img {
  transform: scale(1.6);
  z-index: 10;
}

/* Bring hovered image above others */
.project-card {
  position: relative;
  z-index: 1;
}

.project-card:hover {
  z-index: 20;
}

.gallery-grid:hover .project-card {
  opacity: 0.4;
}

.gallery-grid .project-card:hover {
  opacity: 1;
}

/* LIGHTBOX */
#lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0,0,0,0.95);
  justify-content: center;
  align-items: center;
}


/* Lightbox image */
#lightbox img {
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
}

/* Close */
#lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 42px;
  color: white;
  cursor: pointer;
}

/* Navigation arrows */
#lightbox .nav {
  position: absolute;
  top: 50%;
  font-size: 60px;
  color: white;
  cursor: pointer;
  user-select: none;
  padding: 10px;
}

#lightbox .prev {
  left: 20px;
}

#lightbox .next {
  right: 20px;
}

/* Mobile arrow size */
@media (max-width: 768px) {
  #lightbox .nav {
    font-size: 40px;
  }
}



* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.logo {
  height: 60px;
  width: auto;
}

body {
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.team-section {
  text-align: center;
}

.team-section p {
  max-width: 800px;
  margin: 0 auto 20px;
}

.intro-split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.intro-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.intro-text {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

}

.intro-text h2 {
  margin-bottom: 15px;
  color: var(--brand-orange);
}

.intro-text p {
  margin-bottom: 12px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .intro-split {
    flex-direction: column;
    text-align: center;
  }

  .intro-image img {
    max-width: 100%;
  }
}

.btn-primary {
  margin-top: 20px;
  display: inline-block;
  background: var(--brand-orange);
  color: #000;
  padding: 12px 26px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: #ff9c3a;
  transform: translateY(-2px);
}


header {
  background: #0b0d12;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0f1116;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  border-bottom: 1px solid #1f232e;
.section:first-of-type {
  padding-top: 100px;
}


}

.logo {
  height: 60px;
  width: auto;
}

nav a {
  margin-left: 20px;
}


header h1 {
  font-size: 24px;
}

nav a {
  margin-left: 20px;
  color: var(--text-main);
  font-weight: bold;
}

nav a:hover {
  color: var(--accent);
}

.hero {
  padding: 80px 40px;
  text-align: center;
}

.hero h2 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero p {
  color: var(--text-muted);
  max-width: 700px;
  margin: auto;
}

.button {
  display: inline-block;
  background: var(--brand-orange);
  color: #000;
  padding: 15px;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
}
form .button {
  width: 100%;
  display: block;
}
.button:hover {
  opacity: 0.9;
}

.team-photo {
  margin-top: 40px;
  width: 100%;
  max-width: 900px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.team-caption {
  margin-top: 15px;
  color: #b0b3b8;
  font-style: italic;
}


.section {
  padding: 60px 40px;
  max-width: 1100px;
  margin: auto;
}

.section h3 {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-box {
  background: #181b22;
  padding: 25px;
  border-radius: 6px;
  color: white;
  text-decoration: none;
}

.service-box:hover {
  transform: translateY(-3px);
  transition: 0.2s;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.services-grid {
  margin-bottom: 20px;
}


.business-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
  background: #141720;
  border-radius: 8px;
}
  margin-bottom: 20px;
}
.map-section {
  padding: 0;
}

.map-section iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 8px;
}


.info-block h4 {
  margin-bottom: 10px;
}

.info-block p {
  color: #b0b3b8;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .business-info {
    grid-template-columns: 1fr;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 220px;
  }
}


footer {
  background: #0b0d12;
  padding: 30px;
  text-align: center;
  color: var(--text-muted);
}

form {
  max-width: 600px;
  margin: auto;
}

input, textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  background: #11141b;
  border: 1px solid #333;
  color: white;
}

button {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.gallery div {
  background: var(--bg-card);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  border-radius: 6px;
}