* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  padding-top: 80px; /* header height */
}

/* container */
.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(0, 20, 35, 0.95);
  z-index: 1000;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo left, nav right */
  gap: 24px;
}

/* logo */
.logo img {
  height: 52px;
  width: auto;
  display: block;
}

/* nav */
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.6px;
  opacity: 0.9;
  padding: 6px 0;
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 1;
}

.nav a.active {
  opacity: 1;
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
}

/* ===== FOOTER ===== */
.footer {
  background: #062b44; /* dark blue like screenshot */
  color: #d6e2ea;
  text-align: center;
  padding: 80px 20px 40px;
}

.footer-inner {
  max-width: 700px;
  margin: 0 auto;
}

/* Logo */
.footer-logo {
  width: 90px;
  margin-bottom: 20px;
}

/* Title */
.footer h2 {
  letter-spacing: 6px;
  font-weight: 500;
  margin-bottom: 25px;
}

/* Text */
.footer-text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
  opacity: 0.9;
}

/* Email style */
.footer-email {
  letter-spacing: 4px;
  font-size: 15px;
  margin: 22px 0;
  color: #ffffff;
}

/* Copyright */
.footer-copy {
  margin-top: 40px;
  font-size: 13px;
  opacity: 0.7;
}

/* ===== HERO MESSAGE SECTION ===== */
.hero-message {
  background: #f2f2f2; /* light gray background */
  text-align: center;
  padding: 140px 20px 120px; /* space from header + bottom */
}

.hero-message-inner {
  max-width: 900px;
  margin: 0 auto;
}

/* Logo */
.hero-logo {
  width: 140px;
  margin-bottom: 40px;
}

/* Text */
.hero-text {
  color: #1b4f8a; /* blue tone like screenshot */
  font-weight: 500;
  letter-spacing: 6px;
  line-height: 1.6;
  font-size: clamp(18px, 2.5vw, 28px);
}

.hero-message {
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
  from {
    opacity: 0;
    transform: translateY(30px);
  }
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: #f2f2f2;
}

/* Layout */
.services-container {
  display: grid;
  grid-template-columns: 420px 1fr; /* wider blue panel */
  min-height: 560px;
}

/* ===== LEFT BLUE PANEL ===== */
.services-menu {
  background: #0e4c8a;
  color: #fff;
  padding: 90px 50px;
}

.services-menu h2 {
  font-size: 44px; /* BIG title like screenshot */
  letter-spacing: 10px;
  font-weight: 500;
  margin-bottom: 60px;
  position: relative;
}

/* underline */
.services-menu h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #fff;
  margin-top: 14px;
}

.services-menu ul {
  list-style: none;
  padding: 0;
}

.services-menu li {
  margin-bottom: 26px;
  letter-spacing: 6px;
  opacity: 0.6;
  cursor: pointer;
  font-size: 14px;
}

.services-menu li.active {
  opacity: 1;
}

/* ===== RIGHT CONTENT ===== */
.services-content {
  padding: 90px 80px;
}

/* IMAGE — horizontal banner */
.services-content img {
  width: 100%;
  height: 300px; /* forces horizontal look */
  object-fit: cover; /* keeps proportions nice */
  margin-bottom: 40px;
}

/* Title */
.services-content h3 {
  color: #0e4c8a;
  font-size: 32px;
  margin-bottom: 18px;
}

/* Text */
.services-content p {
  color: #6b7c8f;
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Button */
.btn-primary {
  display: inline-block;
  background: #0e4c8a;
  color: #fff;
  padding: 14px 30px;
  text-decoration: none;
}

/* ===== FEATURED SERVICES SECTION ===== */
.featured-services {
  background: #f2f2f2;
  padding: 80px 0 120px;
}

/* Grid layout */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Card */
.service-card {
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
}

/* Image */
.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* Card body */
.service-card-body {
  padding: 40px;
}

.service-card-body h3 {
  color: #0e4c8a;
  font-size: 28px;
  margin-bottom: 16px;
}

.service-card-body p {
  color: #6b7c8f;
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 520px;
}

/* Button already exists (.btn-primary) */
@media (max-width: 900px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ABOUT HERO ===== */
.about-hero {
  height: 420px;

  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("../img/about-us.jpeg") center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* Wrapper to stack logo + title vertically */
.about-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Logo */
.about-hero-logo {
  width: 160px;
}

/* Title */
.about-hero h1 {
  font-size: 42px;
  letter-spacing: 6px;
  margin: 24px; /* remove default spacing */
}

.about-content p {
  max-width: 1200px;
  margin: 0 0 24px 0; /* ← removes centering */
  line-height: 3;
  color: #4a5a6a;
  font-size: 16px;
  text-align: left;
}

.about-content {
  padding-top: 140px; /* ← controls space from hero */
  padding-bottom: 80px;
  background: #ffffff;
}

/* ===== CONTACT HERO ===== */
.contact-hero {
  height: 420px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("../img/contact.jpeg") center/cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.contact-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-hero-logo {
  width: 160px; /* change size if needed */
  margin-bottom: 18px; /* space to title */
}

.contact-hero h1 {
  margin: 0;
  font-size: 42px;
  letter-spacing: 6px;
}

/* ===== CONTACT CONTENT ===== */
.contact-content {
  background: #ffffff;
  padding: 100px 0 120px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info h2,
.contact-form h2 {
  color: #0e4c8a;
  margin: 0 0 18px;
  letter-spacing: 2px;
}

.contact-info p {
  margin: 0 0 18px;
  line-height: 1.9;
  color: #4a5a6a;
}

.contact-info a {
  color: #0e4c8a;
  text-decoration: none;
}

.contact-form label {
  display: block;
  margin-bottom: 16px;
  color: #4a5a6a;
  font-size: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid #dbe3ea;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

/* Mobile */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-hero {
    height: 380px;
  }
}

.form-success {
  display: none; /* hidden by default */
  margin-top: 16px;
  color: #2e7d32; /* green */
  font-weight: 500;
}

/* ===== REUSABLE PAGE HERO ===== */
.page-hero {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.page-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 18px;
}

.page-hero-logo {
  width: 160px;
  margin-bottom: 22px;
}

.page-hero h1 {
  margin: 0;
  font-size: 34px;
  letter-spacing: 3px;
  line-height: 1.3;
}

/* Background for Broadcasting hero */
.page-hero--broadcasting {
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("../img/broadcast.jpeg") center/cover no-repeat;
}

/* Page content spacing */
.page-content {
  background: #ffffff;
  padding: 110px 0 120px;
}

/* Mobile */
@media (max-width: 900px) {
  .page-hero {
    height: 380px;
  }
  .page-hero-logo {
    width: 120px;
  }
  .page-hero h1 {
    font-size: 26px;
  }
}

/* ===== REUSABLE PAGE HERO ===== */
.page-hero {
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.page-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 18px;
}

.page-hero-logo {
  width: 160px;
  margin-bottom: 22px;
}

.page-hero h1 {
  margin: 0;
  font-size: 34px;
  letter-spacing: 3px;
  line-height: 1.3;
}

/* Hero background for Broadcasting */
.page-hero--broadcasting {
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("../img/broadcast.jpeg") center/cover no-repeat;
}

/* ===== BROADCASTING CONTENT SECTION ===== */
.broadcasting-section {
  background: #f7f9fb;
  padding: 100px 0 120px;
}

.broadcasting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.broadcasting-col h2 {
  color: #0e4c8a;
  margin: 0 0 18px;
  letter-spacing: 1px;
}

.broadcasting-col h3 {
  margin: 26px 0 10px;
  color: #0e4c8a;
  font-size: 18px;
}

.broadcasting-col p {
  color: #5a6a7a;
  line-height: 1.9;
  margin: 0 0 16px;
}

.broadcasting-col ul {
  padding-left: 18px;
  margin: 0 0 18px;
}

.broadcasting-col li {
  margin-bottom: 8px;
  color: #5a6a7a;
}

.broadcasting-col .strong {
  font-weight: 600;
  color: #2c3e50;
}

.broadcasting-col .mt {
  margin-top: 40px;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .page-hero {
    height: 380px;
  }
  .page-hero-logo {
    width: 160px;
  }
  .page-hero h1 {
    font-size: 26px;
  }

  .broadcasting-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Hero background for Production */
.page-hero--production {
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("../img/production.jpeg") center/cover no-repeat;
}

/* ===== PRODUCTION SECTION ===== */
.production-section {
  background: #ffffff;
  padding: 110px 0 130px;
}

.production-grid {
  display: grid;
  grid-template-columns: 1fr; /* full width */
  gap: 40px;
  max-width: 900px; /* keeps text nicely centered */
  margin: 0 auto;
}

.production-left h2 {
  color: #0e4c8a;
  margin: 0 0 14px;
  font-size: 34px;
  font-weight: 500;
}

.prod-block {
  margin-bottom: 80px;
}

.production-left p {
  color: #6a7a8a;
  line-height: 1.9;
  margin: 0 0 10px;
  font-size: 14px;
  max-width: 560px;
}

.production-right {
  padding-top: 30px;
}

.prod-link {
  display: block;
  font-size: 34px;
  color: #0e4c8a;
  text-decoration: none;
  margin-bottom: 38px;
  font-weight: 500;
  position: relative;
  padding-left: 20px;
}

.prod-link::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: #9aa9b7;
}

/* Mobile */
@media (max-width: 900px) {
  .production-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .production-right {
    padding-top: 0;
  }

  .prod-link {
    font-size: 28px;
  }

  .production-left h2 {
    font-size: 28px;
  }
}

.prod-cta {
  margin-top: 14px;
  font-weight: 500;
  color: #2c3e50;
}

.prod-cta a {
  color: #0e4c8a;
  text-decoration: none;
  font-weight: 600;
}

/* ===== HERO BACKGROUND FOR SERVICES ===== */
.page-hero--services {
  background:
    linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url("../img/our-services.jpeg") center/cover no-repeat;
}

/* ===== SERVICES OVERVIEW SECTION ===== */
.services-overview {
  background: #ffffff;
  padding: 110px 0 130px;
}

/* ===== SERVICES INTRO ===== */
.services-intro {
  background: #ffffff;
  padding: 0 0 60px; /* ← no space above, keep space below */
  text-align: center;
}

.services-intro h2 {
  color: #0e4c8a;
  font-size: 32px;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.services-intro p {
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.9;
  color: #5a6a7a;
  font-size: 16px;
}

/* ===== SERVICES DETAILS (2 COLUMNS) ===== */
.services-details {
  background: #ffffff;
  padding: 60px 0 120px;
}

.services-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.services-col h3 {
  color: #0e4c8a;
  margin: 0 0 10px;
  font-size: 20px;
}

.services-col p {
  color: #5a6a7a;
  line-height: 1.9;
  margin: 0 0 14px;
  font-size: 15px;
}

.services-col ul {
  padding-left: 18px;
  margin: 0 0 22px;
}

.services-col li {
  margin-bottom: 8px;
  color: #5a6a7a;
  line-height: 1.7;
}

/* Center image under columns */
.services-details-image-wrap {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.services-details-image {
  width: 100%;
  max-width: 900px;
  height: 380px;
  object-fit: cover;
}

/* Mobile */
@media (max-width: 900px) {
  .services-details-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-details-image {
    height: 260px;
  }
}


/* Hero background for Equipment */
.page-hero--equipment{
  background:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url("../img/equipment.jpeg") center/cover no-repeat;
}


/* ===== EQUIPMENT SECTION ===== */
.equipment-section{
  background: #ffffff;
  padding: 110px 0 130px;
}

.equipment-inner{
  max-width: 900px;
  margin: 0 auto;
}

.equipment-inner h2{
  color: #0e4c8a;
  font-size: 32px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.equipment-inner h3{
  color: #0e4c8a;
  margin-top: 30px;
  margin-bottom: 14px;
  font-size: 20px;
}

.equipment-inner p{
  color: #5a6a7a;
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 15px;
}

.equipment-inner ul{
  padding-left: 18px;
  margin-bottom: 22px;
}

.equipment-inner li{
  margin-bottom: 8px;
  color: #5a6a7a;
  line-height: 1.7;
}

.equipment-cta{
  margin-top: 24px;
  font-weight: 500;
  color: #2c3e50;
}

.equipment-cta a{
  color: #0e4c8a;
  text-decoration: none;
  font-weight: 600;
}
