body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

/* Top Bar */
.top-bar {
  background-color: #f36c21;
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.top-bar a {
  color: white;
  text-decoration: none;
  margin-left: 10px;
}

/* Header Navigation */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-left img {
  height: 50px;
}

.header-center ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.header-center ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 15px;
}

.header-center ul li a:hover {
  color: #f36c21;
}

/* Hero Banner */
.hero-banner {
  background: url('assets/images/banner.jpg') no-repeat center center/cover;
  height: 400px;
  position: relative;
  color: white;
}

.hero-banner .overlay {
  background-color: rgba(0,0,0,0.4);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-banner h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero-banner p {
  font-size: 18px;
}

.hero-btn {
  margin-top: 20px;
  padding: 12px 30px;
  background-color: #f36c21;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.hero-btn:hover {
  background-color: #da5915;
}
.services {
  padding: 40px 20px;
  text-align: center;
  background: #f8f9fa;
}

.services h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background: white;
  width: 250px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.card i {
  font-size: 36px;
  color: #f36c21;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 18px;
  margin: 10px 0;
  color: #333;
}

.card p {
  font-size: 14px;
  color: #666;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #ddd;
  padding-top: 40px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 40px;
  margin-bottom: 30px;
}

.footer-column {
  flex: 1 1 300px;
  margin: 10px 20px;
}

.footer-column h3,
.footer-column h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-column p,
.footer-column li {
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ddd;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #f36c21;
}

.footer-bottom {
  text-align: center;
  padding: 15px 10px;
  border-top: 1px solid #333;
  background-color: #111;
}

.about-us {
  padding: 50px 20px;
  background: #fff;
  color: #333;
}

.about-container {
  max-width: 960px;
  margin: auto;
}

.about-container h2 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #f36c21;
}

.about-container p {
  font-size: 16px;
  line-height: 1.8;
}

.bullet-points {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.bullet-points li {
  margin-bottom: 10px;
  font-size: 16px;
}

.bullet-points li i {
  color: #f36c21;
  margin-right: 8px;
}
.services {
  padding: 40px 20px;
  text-align: center;
  background: #f8f9fa;
}

.services h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background: white;
  width: 250px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.card i {
  font-size: 36px;
  color: #f36c21;
  margin-bottom: 10px;
}

.card h3 {
  font-size: 18px;
  margin: 10px 0;
  color: #333;
}

.card p {
  font-size: 14px;
  color: #666;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
/* Contact Page */
.contact-us {
  padding: 50px 20px;
  background: #fff;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  gap: 30px;
}

.contact-form, .contact-info-box {
  flex: 1 1 450px;
}

.contact-form h2, .contact-info-box h2 {
  color: #f36c21;
  margin-bottom: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 10px 15px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 15px;
  width: 100%;
}

.contact-form button {
  background-color: #f36c21;
  color: white;
  padding: 12px;
  border: none;
  font-weight: bold;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #da5915;
}

.contact-info-box {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-top: 20px;
}

.contact-info-box p {
  margin: 10px 0;
  font-size: 15px;
  color: #333;
  display: flex;
  align-items: center;
}

.contact-info-box i {
  margin-right: 12px;
  font-size: 18px;
  color: #f36c21;
}
.group-title {
  font-size: 20px;
  margin: 40px 0 20px;
  border-bottom: 2px solid #f36c21;
  display: inline-block;
  color: #f36c21;
}

.card {
  background: white;
  width: 240px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.card i {
  font-size: 32px;
  color: #f36c21;
  margin-bottom: 12px;
}
