body {
  background-color: lightblue; /* sets page background */
  font-family: Arial, sans-serif; /* sets font */
}

h1 {
  color: orange; /* main heading color */
  text-align: center; /* center the heading */
}
/* Navbar base */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: darkblue;
  padding: 15px 20px;
}

.logo {
  color: white;
  font-size: 20px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover {
  color: orange;
}

/* Hamburger menu hidden on desktop */
.menu-toggle {
  display: none;
  font-size: 25px;
  color: white;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* hide by default */
    flex-direction: column;
    background-color: darkblue;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    text-align: center;
  }

  .nav-links.active {
    display: flex; /* show when active */
  }

  .menu-toggle {
    display: block; /* show hamburger */
  }
}
/* Hero Section */
#hero {
  height: 100vh; /* full screen height */
  background: url('your-image.jpg') no-repeat center center/cover; /* replace with your image */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
}

#hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

#hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

#hero .btn {
  padding: 10px 20px;
  background: orange;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

#hero .btn:hover {
  background: darkorange;
}
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
}

footer a {
  color: orange;
  text-decoration: none;
  margin: 0 5px;
}

footer a:hover {
  text-decoration: underline;
}
header {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background-color: white; /* or your preferred navbar color */
}

.logo {
  height: 90px; /* adjust size */
  margin-right: 15px;
}
.hero {
  height: 100vh; /* full screen height */
  background: url("images/building.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
}

.hero-text {
  position: relative;
  z-index: 1; /* make sure text sits above overlay */
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background: orange;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}
html {
  scroll-behavior: smooth;
}
/* Navbar Styling */
.navbar {
  position: fixed;       /* Makes it stay in place */
  top: 0;                /* Stick to the very top */
  left: 0;
  width: 100%;           /* Full width */
  background-color: white; /* Or whatever color you want */
  padding: 15px 0;
  z-index: 1000;         /* Makes sure it stays above other elements */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Small shadow for style */
}

.navbar ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar li {
  margin: 0 20px;
}

.navbar a {
  text-decoration: none;
  color: black;
  font-weight: bold;
}

.navbar a:hover {
  color: orange; /* highlight on hover */
}
.logo img {
  height: 80px;   /* reduce logo height */
  width: auto;    /* keep proportions */
}
.logo {
  display: flex;
  align-items: center;
}

.logo span {
  margin-left: 10px;
  font-weight: bold;
  font-size: 18px;
  color: black;
}
/* =============== ABOUT SECTION =============== */
#About {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}

#About + .tagline,
#About ~ .tagline {
  font-style: italic;
  margin-top: 10px;
  color: #1a1a1a;
}

.about-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px 0 10px;
}

.about-card {
  flex: 1 1 280px;
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.about-card h3 {
  margin-top: 0;
}

.values {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.values li {
  background: rgba(255,165,0,0.12); /* soft orange to match your brand */
  border: 1px solid rgba(255,165,0,0.25);
  border-radius: 8px;
  padding: 10px 12px;
  font-weight: 600;
}
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
  padding: 0 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-5px);
}

.card h3 {
  color: #ff7f00; /* orange headings */
  margin-bottom: 10px;
}

.card p {
  font-size: 14px;
  color: #333;
}
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 20px;
}

.contact-info {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.contact-form button {
  background: orange;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: darkorange;
}

/* Make it mobile-friendly */
@media (max-width: 768px) {
  .contact {
    grid-template-columns: 1fr;
  }
}
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px 0;
}

footer .social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 24px;
  transition: color 0.3s;
}

footer .social-icons a:hover {
  color: orange; /* matches your theme */
}