/* RESET/BASE STYLES IF NEEDED */
/* box-sizing, etc. */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* HERO SECTION */
.hero-section {
  background: url("../img/hero.png") no-repeat center center/cover;
  height: 100vh;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
  position: relative;
}
.hero-section .container {
  z-index: 2;
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

/* NAVBAR OVERRIDE */
.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
}

/* SECTION TITLE */
.section-title h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: #555;
}

/* SERVICES */
.service-box {
  background: #fff;
  border-radius: 8px;
  text-align: center;
  transition: box-shadow 0.3s ease;
}
.service-box:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.service-box .icon {
  color: #007bff;
}

/* WHY US */
.why-us-section {
  background-color: #f9f9f9;
}
.why-us-text h4 {
  margin-top: 1rem;
  font-size: 1.2rem;
}

/* PORTFOLIO */
.card {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}
.card-img-top {
  height: 200px;
  object-fit: cover;
}

/* COMPANY INFO */
.company-info-section h4 {
  margin-bottom: 1rem;
}

/* CONTACT SECTION */
.contact-section {
  background-color: #fafafa;
}
.contact-section form .form-group label {
  font-weight: 600;
}
.contact-section form .btn {
  margin-top: 1rem;
}

/* POPUP THANK YOU */
.thankyou-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: none; /* hidden by default */
  align-items: center;
  justify-content: center;
}
.thankyou-content {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  position: relative;
  text-align: center;
}
.thankyou-content h2 {
  margin-bottom: 1rem;
}
.thankyou-content p {
  margin-bottom: 1rem;
}
.close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 1.2rem;
}

/* FOOTER */
.footer-section {
  text-align: center;
}
.footer-section p {
  margin: 0;
  font-size: 0.9rem;
}
