/* =====================================================
   SECTORS PAGE – FULL STYLESHEET
===================================================== */

/* =====================================================
   BASE
===================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Open Sans", system-ui, sans-serif;
  color: #0f172a;
  background: #eaf4fb;
  line-height: 1.75;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =====================================================
   NAVBAR
===================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;

  background: #eaf4fb;
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}

.header-inner {
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* LOGO */
.logo a {
  display: flex;
  align-items: center;
  gap: 16px;

  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #0f172a;
}

.logo img {
  height: 140px;
}

.logo-text-small {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #475569;
}

/* NAV LINKS */
.main-nav {
  display: flex;
  gap: 24px;
}

.main-nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569;
}

.main-nav a:hover,
.main-nav a.active {
  color: #44a8c6;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: #44a8c6;
  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

/* =====================================================
   HERO
===================================================== */
.page-hero.hero-scope {
  margin-top: 80px;
  padding: 100px 0 90px;
  background: linear-gradient(135deg, #6bb7cf, #9fd6e6);
}

.hero-header {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hero-header h1 {
  font-family: "Poppins", sans-serif;
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.hero-accent {
  display: block;
  width: 70px;
  height: 4px;
  background: #44a8c6;
  border-radius: 999px;
  margin: 16px auto 24px;
}

.hero-header p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
  color: rgba(15, 23, 42, 0.75);
}

/* =====================================================
   SECTORS
===================================================== */
.sectors-section {
  padding: 100px 0;
}

.sectors-inner {
  display: flex;
  flex-direction: column;
  gap: 110px;
}

/* SECTOR BLOCK */
.sector-block {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 50px;
  align-items: center;
}

/* ALTERNATING LAYOUT */
.sector-block:nth-of-type(even) {
  grid-template-columns: 1fr 420px;
}

.sector-block:nth-of-type(even) .sector-media {
  order: 2;
}

.sector-block:nth-of-type(even) .sector-content {
  order: 1;
}

/* MEDIA */
.sector-media {
  background: #0b172a;
  padding: 14px;
  border-radius: 26px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.35);
}

.sector-media video {
  border-radius: 20px;
}

/* CONTENT */
.sector-content h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.sector-content p {
  font-size: 1.02rem;
  margin-bottom: 18px;
  color: rgba(15, 23, 42, 0.75);
}

.sector-content h4 {
  margin: 22px 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
}

.sector-content ul {
  padding-left: 18px;
  margin-bottom: 14px;
}

.sector-content li {
  margin-bottom: 8px;
  font-size: 0.98rem;
  color: rgba(15, 23, 42, 0.8);
}

/* =====================================================
   CTA
===================================================== */
.cta-section.cta-scope {
  padding: 110px 0;
  background: linear-gradient(135deg, #020b5c, #02043a);
  text-align: center;
}

.cta-header {
  max-width: 760px;
  margin: 0 auto 34px;
}

.cta-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
}

.cta-accent {
  display: block;
  width: 64px;
  height: 3px;
  background: #6fd3f5;
  border-radius: 999px;
  margin: 16px auto 24px;
}

.cta-header p {
  font-size: 1.05rem;
  color: #d1d5db;
}

.cta-actions .btn {
  padding: 14px 40px;
  background: #44a8c6;
  color: #ffffff;
  border-radius: 999px;
  font-weight: 700;
  transition: background 0.25s ease, transform 0.25s ease;
}

.cta-actions .btn:hover {
  background: #2d90ae;
  transform: translateY(-2px);
}

/* =====================================================
   FOOTER
===================================================== */
.site-footer {
  background: #374151;
  color: #e5e7eb;
  padding: 40px 0;
  text-align: center;
}

.footer-credit {
  margin-top: 6px;
  opacity: 0.85;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 960px) {
  .main-nav {
    display: none;
  }

  .sector-block,
  .sector-block:nth-of-type(even) {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sector-media {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .hero-header h1 {
    font-size: 2.1rem;
  }

  .cta-header h2 {
    font-size: 2rem;
  }
}
/* ================= GLOBAL LOGO OVERRIDE (FIXED) ================= */

.site-header .logo a {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;              /* REAL close spacing */
  font-size: 30px !important;       /* bigger brand name */
  line-height: 1 !important;        /* stops vertical push */
}

/* Text wrapper */
.site-header .logo a > span {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  line-height: 1.05 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Logo image — THIS is the missing fix */
.site-header .logo img {
  height: 170px !important;
  width: auto !important;
  display: block !important;
  margin: 0 !important;             /* remove image default spacing */
}

/* Subtitle */
.site-header .logo-text-small {
  margin-top: 2px !important;
  font-size: 0.85rem !important;
  line-height: 1.1 !important;
  letter-spacing: 0.16em !important;
}
/* ================= EMERGENCY MOBILE FIX ================= */
@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  /* HEADER */
  .site-header {
    position: relative !important;
    padding: 12px 16px !important;
  }

  .header-inner {
    flex-wrap: wrap !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .logo img {
    max-width: 120px !important;
    height: auto !important;
    margin: 0 auto !important;
  }

  .logo span {
    display: block !important;
    font-size: 0.9rem !important;
    line-height: 1.2 !important;
    margin-top: 6px !important;
  }

  /* HERO */
  .hero,
  .page-hero {
    min-height: auto !important;
    padding: 100px 16px 60px !important;
    text-align: center !important;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 1.6rem !important;
  }

  .hero p,
  .page-hero p {
    font-size: 0.95rem !important;
  }

  /* SECTIONS */
  section {
    padding: 48px 16px !important;
  }

  /* GRIDS */
  .grid,
  .cards,
  .sectors {
    grid-template-columns: 1fr !important;
  }

  /* IMAGES */
  img {
    max-width: 100% !important;
    height: auto !important;
  }

}
/* FORCE LOGO ALIGNMENT */
.site-header .logo a {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.site-header .logo img {
  height: 75px !important;
  width: auto !important;
  max-height: 100% !important;
}

.site-header .logo a > span {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1.1 !important;
  font-size: 22px !important;
  font-weight: 700 !important;
}

.site-header .logo-text-small {
  margin-top: 2px !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #64748b !important;
}
