* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  color: #222;
  line-height: 1.6;
}

/* ===== HERO SECTION ===== */

.pcb-hero {
  position: relative;
  width: 100%;
  height: 75vh;
 background: url("../assests/images/hero-bg.jp/istockphoto-1154032001-1024x1024.webp") center / cover no-repeat;
  display: flex;
  align-items: center;
}

.pcb-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.pcb-hero-content {
  position: relative;
  max-width: 1200px;
  padding: 0 20px;
  margin: auto;
  color: #fff;
}

.pcb-hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pcb-hero-content p {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #cfe2ff;
}

.pcb-hero-content span {
  display: block;
  max-width: 650px;
  font-size: 16px;
  line-height: 1.7;
  color: #e6e6e6;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .pcb-hero {
    height: 65vh;
    text-align: center;
  }

  .pcb-hero-content h1 {
    font-size: 36px;
  }

  .pcb-hero-content p {
    font-size: 18px;
  }
}


/* CONTAINER */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

/* INTRO */
.intro h2 {
  margin-bottom: 15px;
  font-size: 28px;
}
.intro p {
  margin-bottom: 15px;
}

/* PCB DOMAINS */
.pcb-domains {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

.pcb-card {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  align-items: center;
}
.pcb-card.reverse {
  flex-direction: row-reverse;
}

.pcb-card img {
  width: 45%;
  border-radius: 12px;
}

.pcb-text h3 {
  color: #0a3d91;
  margin-bottom: 10px;
}
.back-btn {
  display: inline-block;
  margin: 20px 0;
  padding: 10px 18px;
  background-color: #910b1d;   /* Blue */
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}


/* CTA */
.cta {
  background: #0a3d91;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}
/* CONTACT BUTTON STYLING (As per Image) */
.cta .btn-contact, 
.cta a[href*="#contact"],
.cta a.btn {
  display: inline-block;
  margin-top: 20px;
  background-color: #e63946; /* Red color as shown in image */
  color: #ffffff !important;   /* White text */
  padding: 12px 35px;
  border-radius: 50px;       /* Fully rounded corners */
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.cta a.btn:hover, 
.cta .btn-contact:hover {
  background-color: #c92f3c; /* Thoda dark red hover par */
  transform: scale(1.05);    /* Halki si growth hover par */
}