/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* ================= BODY ================= */
body {
  background-color: #f5f5f5;
  color: #1f1f1f;
}

/* ================= HEADER ================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #0a0a0a;
}

/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 8%;
  background-color: #1f1f1f;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: #f5f5f5;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links .active {
  color: #ef233c;
}

/* ================= BUTTONS ================= */
.btn-primary,
.btn-secondary {
  background-color: #b40421;
  color: #f5f5f5;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-primary:hover,
.btn-secondary:hover {
  background-color: #ef233c;
}

.btn-tri {
  background-color: #b40421;
  color: #f5f5f5;
  padding: 12px 28px;
  border-radius: 30px;

  display: inline-block;     /* IMPORTANT */
  margin-top: 40px;          /* moves down */

  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-tri:hover {
  background-color: #ef233c;
}


/* ================= HERO BACKGROUND ================= */
.hero-bg {
  position: relative;
  min-height: 85vh;
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 8%;
}
.about-bg {
  position: relative;
  min-height: 85vh;
  background-image: url("https://i.ibb.co/KcvCDVFy/Chat-GPT-Image-Jan-10-2026-04-02-45-PM-1.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 8%;
}
.services-bg {
  position: relative;
  min-height: 85vh;
  background-image: url("https://i.ibb.co/9my8s9Dr/Chat-GPT-Image-Jan-10-2026-03-41-39-PM-1.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 8%;
}
.contact-bg {
  position: relative;
  min-height: 85vh;
  background-image: url("https://i.ibb.co/gqBM3fW/Chat-GPT-Image-Jan-9-2026-06-20-15-PM-1.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 0 8%;
}


/* OVERLAY */
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.65);
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  max-width: 650px;
  color: #f5f5f5;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 22px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 32px;
  color: #d3d3d3;
}

/* ================= ABOUT SECTION ================= */
.about {
  padding: 90px 8%;
  text-align: center;
}

.about h2 {
  font-size: 34px;
  margin-bottom: 22px;
}

.about p {
  max-width: 720px;
  margin: auto;
  line-height: 1.8;
}

/* ================= SERVICES / CARDS ================= */
.services {
  padding: 60px 8%;
  text-align: center;
}

.services h2 {
  margin-bottom: 55px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 35px;
}

.service-card {
  background-color: #ffffff;
  padding: 34px 28px;
  border-radius: 18px;
  border-bottom: 4px solid #b40421;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.service-card i {
  font-size: 38px;
  color: #ef233c;
  margin-bottom: 18px;
}

/* ================= PROJECTS PAGE ================= */
.projects {
  padding: 90px 8%;
  text-align: center;
}

.projects h2 {
  font-size: 34px;
  margin-bottom: 55px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.project-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
  text-align: left;
}

.project-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.project-card p {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* STATUS TAG */
.project-tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 20px;
  background-color: #b40421;
  color: #ffffff;
}

.project-tag.ongoing {
  background-color: #ef233c;
}

/* ================= PROJECTS CTA ================= */
.projects-cta {
  padding: 80px 8%;
  text-align: center;
  background-color: #1f1f1f;
  color: #f5f5f5;
}

.projects-cta h2 {
  margin-bottom: 18px;
}

.projects-cta p {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #d3d3d3;
}

/* ================= CONTACT FORM ================= */
.contact-form {
  max-width: 600px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ef233c;
}

.contact-form button {
  align-self: flex-start;
}

/* ================= MAP ================= */
.map-section iframe {
  width: 100%;
  height: 420px;
  border: none;
  margin-top: 40px;
}


/* ================= FOOTER ================= */
.footer {
  background-color: #0a0a0a;
  color: #f5f5f5;
  padding: 30px;
  text-align: center;
  font-size: 13px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero-bg {
    padding: 0 6%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .nav-links {
    display: none;
  }
  /* ================= LOGO ================= */
.logo {
  height: 42px;
}

/* ================= NAV ACTIONS ================= */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* ================= HAMBURGER ================= */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  background: #ffffff;
  margin: 4px 0;
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 900px) {

  /* Hide desktop button */
  .desktop-only {
    display: none;
  }

  /* Show hamburger */
  .menu-toggle {
    display: flex;
  }

  /* Mobile menu */
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: #1f1f1f;
    flex-direction: column;
    display: none;
    z-index: 999;
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links a {
    padding: 16px;
    display: block;
    text-align: center;
    font-size: 16px;
  }

  .nav-links.show {
    display: flex;
  }

  /* Hero text spacing on mobile */
  .hero-content {
    padding-top: 40px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 14px;
  }
}


}
