:root {
  --navy: #0b2b3c;
  --orange: #f1734a;
  --light: #f7f9fb;
  --text: #1e2a32;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Libre Franklin", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background-color: #f7f8fa;
}

a {
	transition: transform 0.3s ease-in-out;
}

a:hover {
	transform: scale(1.1);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 1em 2em;
}

.container-pbp {
  max-width: 70%;
  margin: auto;
  padding: 200px 400px 200px 2em;
  text-align: center;
}

.headline-pbp {
  font-size:42pt;
  line-height: 1em;
  margin-bottom:0px;
  margin-right:auto;
}

.mobile-dropdown {
	display:none;
}

/* Dropdown Menu */

.nav-item a { color: #fff; }

.nav-item {
            position: relative;
            cursor: pointer;
            font-weight: 700;
            font-size: 16px;
        }

        .nav-item.dropdown-trigger::after {
            content: ' ▼';
            font-size: 10px;
            vertical-align: middle;
        }
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background-color: white;
            min-width: 160px;
            box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
            z-index: 1;
            margin-top: 25px;
            display: none; /* Hidden by default */
            list-style: none;
            padding: 0;
            overflow: hidden;
        }

        .dropdown-menu li a {
            color: black;
            padding: 12px 20px;
            text-decoration: none;
            display: block;
            text-align: center;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        /* Hover Effect for Dropdown Items */
        .dropdown-menu li a:hover {
            background-color: var(--navy);
            color: white;
        }

        /* Show menu on hover */
        .nav-item:hover .dropdown-menu {
            display: block;
        }

@media only screen and (max-width: 600px) {
	.container-pbp {
		padding: 100px 2em 100px 2em;
	}
	
	.container {
		padding: 1em 1em;
	}
	
	.headline-pbp {
		font-size:26pt;
		line-height: 1em;
		margin-bottom:0px;
		margin-right:auto;
	}
}

@media only screen and (max-width: 990px) {
	.container-pbp {
		padding: 100px 10px 100px 10px;
	}
	
	.headline-pbp {
		font-size:28pt;
		line-height: 1em;
	}
	
	.mobile-dropdown {
		display:flex;
	}
}

        /* Logo Area */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 10px;
			max-width: 300px;
			min-width: 100px;
        }

        /* Navigation Area */
        .nav-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nav-links {
            display: flex;
            gap: 5px;
        }

        .nav-link {
            text-decoration: none;
            color: white;
            font-weight: 800;
            font-size: 16px;
        }

        .nav-buttons {
            display: flex;
            gap: 0px;
        }

        /* Responsive Logic */
        @media (max-width: 992px) {
            .site-header {
                flex-direction: column;
                padding: 5px;
                gap: 5px;
            }

            .nav-wrapper {
                flex-direction: column-reverse; /* Puts buttons on top line */
                gap: 10px;
                width: 100%;
				justify-content: flex-end;
				align-items: stretch;
            }

            .btn {
                width: 100%;
				min-width:70px;
				padding:10px 0px;
                justify-content: stretch;
				align-items: stretch;
				font-size: 12px;
				transition: transform 0.3s ease-in-out;
            }
			
			.btn.secondary {
				font-size: 10px;
				line-height:1em;
				padding:10px 10px; 
			}
			
			.btn.primary {
				font-size: 10px;
				line-height:1em;
				padding:10px 10px;
			}

            .nav-links {
                justify-content: right;
            }
			
			.nav-link {
				font-size: 12px;
        	}

            .btn {
                flex: 1;
				font-size:16px;
                text-align: center;
                max-width: 200px;
            }
        }

/* NAV */
.site-header {
  background: var(--navy);
  color: #fff;
  position: fixed;
  z-index: 1000;
  width: 100%;
}

.features .container {
	padding: 60px 20px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
}

.nav a {
  
  text-decoration: none;
}

/* BUTTONS */
.btn {
  padding: 0.6rem 1rem;
  text-decoration: none;
}

.btn a {
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
}

.btn a:hover {
	transform: scale(1.1);
}

.btn.primary {
  background: var(--orange);
  color: #000;
  font-weight:800;
}

.btn.secondary {
  background: #FFF;
  color: #000;
  font-weight: 800;
}

.feature-headline {
	font-size: 36px;
	font-weight: 800;
	line-height: 1.2em;
}

/* HERO */
.hero {
  background: var(--light);
  padding: 160px 20px 0px 20px;
}

.hero-grid {
  display: grid;
  gap: 2rem;
}

.card-text {
	font-family: "Libre Franklin", sans-serif;
	font-weight:700;
	color: #002940;
	font-size: 28px;
	line-height:1.2em;
	text-decoration: none;
	
}

.hero img {
  width: 100%;
  border-radius: 8px;
}

/* TRUST BAR */
.trust-bar {
  background-image: url("images/power-of-local-background.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  text-align: left;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0.8;
}

.logo {
	width:300px;
}

/* PLATFORMS */
.platforms {
	background-color: #00293f;
	color: #FFF;
}

.platforms-headline {
	text-align: center;
}

.platform-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.platform-buttons button {
  background: var(--orange);
  color: #000;
  font-weight:700;
  font-size: 18px;
  padding: 0.5rem 1rem;
  width: 24.4%;
  border: none;
  cursor: pointer;
}

.platform-buttons .active {
  background: #FFF;
  color: #273f57;
  font-size: 18px;
  font-weight:700;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card-grid a {
  border-style: solid;
  border-color:  var(--orange);
  border-width: 0px;
  background: #fff;
  transition: border-width 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.card-grid a:hover {
	transform: scale(1.1);
	border-width: 6px;
}

.card {
  padding: 3rem;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* NEW CTA STRIP */

        .info-banner {
            background-color: var(--orange);
            padding: 30px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            text-align: center;
        }

        .banner-text {
            color: #000000;
            font-size: 22px;
            font-weight: 800; /* Extra bold matching the image */
            margin: 0;
        }

        .banner-button {
            background-color: #FFF;
            color: #000000;
            text-decoration: none;
            padding: 12px 24px;
            font-size: 16px;
            font-weight: 800;
            white-space: nowrap;
            display: inline-block;
        }

        /* Responsive Logic for Tablet and Mobile */
        @media (max-width: 992px) {
            .info-banner {
                flex-direction: column;
                gap: 15px;
                padding: 40px 20px;
            }

            .banner-text {
                font-size: 20px;
            }
        }

/* CTA STRIP */
.cta-strip {
  background: var(--orange);
  color: #000;
  font-weight:700;
  font-size: 24px;
  text-align: center;
  align-content: center;
  padding: 1rem;
  display: flex;
}

/* FEATURES */
.feature {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature img {
  width: 100%;
  border-radius: 8px;
}

.feature.reverse {
  direction: rtl;
}

.feature.reverse * {
  direction: ltr;
}

/* TESTIMONIALS */
.testimonials {
  background: var(--navy);
}

.testimonial-grid {
  display: grid;
}

.testimonial {
  min-height: 300px;
  padding: 2rem;
}

.testimonial.image {
  background-size:cover;
  background-attachment: fixed;
}

.testimonial.quote {
  color: #FFF;
}

.vid-container {
    display: flex;
    justify-content: center;
}
    
iframe {
    aspect-ratio: 16 / 9;
    width: 100% !important;
}

.row-1 {
	background-image:url('images/business-man-shaking-hands.jpg');
	background-size:cover;
    background-attachment: fixed;
}

/* NEW STEPS */

        .steps-section {
            font-family: "Libre Franklin", sans-serif;
            background-color: #ffffff;
            margin: 0;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .main-title {
            color: #002233;
            font-size: 2.2rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 50px;
        }

        .grid-container {
            display: grid;
            gap: 25px;
            max-width: 1100px;
            width: 100%;
            /* Desktop: 3 columns */
            grid-template-columns: repeat(3, 1fr);
        }

        .step-card {
            background-color: #002233;
            color: #FFFFFF;
            padding: 50px 30px;
            text-align: center;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            min-height: 250px;
        }

        .step-number {
            background-color: #f27451;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
            position: absolute;
            top: -20px;
            left: 50%;
			border: 2px solid #FFFFFF;
            transform: translateX(-50%);
        }

        .step-title {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .step-description {
            font-size: 0.95rem;
            font-weight: 400;
            line-height: 1.5;
            opacity: 0.9;
        }

        /* Tablet View: 2 columns */
        @media (max-width: 900px) {
            .grid-container {
                grid-template-columns: repeat(2, 1fr);
            }
			
			.hero {
  				padding: 100px 10px 20px 10px;
			}
        }

        /* Mobile View: 1 column */
        @media (max-width: 600px) {
            .grid-container {
                grid-template-columns: 1fr;
                gap: 40px; /* More space for the floating numbers */
            }
            .main-title {
                font-size: 1.8rem;
            }
			
			.hero {
  				padding: 100px 10px 20px 10px;
			}
        }

/* STEPS */
.steps-grid {
  display: grid;
  gap: 1rem;
}

.step {
  background: var(--navy);
  color: #fff;
  padding: 1.5rem;
  text-align: center;
  border-radius: 6px;
}

/* FOOTER */
.site-footer {
  background: #002133;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

.footer-links a {
  cursor: pointer;
  color: var(--orange);
  text-decoration: none;
}

.testimonial-image-1 {
	width: 100%;
	display:flex;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .hero-grid,
  .feature {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .card-grid,
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* tabs */
/* CSS – approximate colors & layout from the mock */
:root {
  --tactics-bg: #003348;        /* dark teal/blue background */
  --tactics-card-text: #163447; /* deep navy text */
  --tactics-tab-bg: #ffffff;    /* default tab bg */
  --tactics-tab-text: #163447;  /* default tab text */
  --tactics-tab-active-bg: #f26a2b; /* orange tab bg */
  --tactics-tab-active-text: #ffffff; /* active tab text */
  --navy: #0d2233;
  --white: #ffffff;
  --orange: #e38151;
  --transition: all 0.3s ease;
}

.tactics-section {
  background-color: var(--tactics-bg);
  color: #ffffff;
  padding: 60px 20px 80px;
}

.tactics-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.tactics-heading {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

/* Tabs */
.tactics-tabs {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.tactics-tab {
  background-color: var(--tactics-tab-bg);
  color: var(--tactics-tab-text);
  border: none;
  padding: 12px 32px;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease,
              transform 0.15s ease, box-shadow 0.15s ease;
}

.tactics-tab.is-active {
  background-color: var(--tactics-tab-active-bg);
  color: var(--tactics-tab-active-text);
}

.tactics-tab:hover,
.tactics-tab:focus-visible {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* Cards grid */
.tactics-cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.tactic-card {
  background-color: #ffffff;
  color: var(--tactics-card-text);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tactic-card:hover,
.tactic-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.tactic-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.tactic-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.testimonial-mobile {
	display:none;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .tactics-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
	
	.testimonial-image-1 {
	display:none;
  }
	
  .testimonial-mobile {
	display:flex;
	width: 100%;
  }
}

@media (max-width: 720px) {
  .tactics-section {
    padding: 40px 16px 56px;
  }

  .tactics-heading {
    font-size: 1.4rem;
  }

  .tactics-tabs {
    justify-content: stretch;
  }

  .tactics-tab {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }

  .tactics-cards {
    grid-template-columns: 1fr;
  }
}

.cta-container {
  display: flex;
  gap: 20px;
  padding: 40px 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Individual Box Styling */
.cta-box {
  flex: 1;
  min-height: 180px;
  display: flex;
  align-items: center;
  padding: 30px 40px;
  border-radius: 4px; /* Slight rounding based on image */
  position: relative;
  overflow: hidden;
}

/* Specific Column Styles */
.recruitment {
  background-color: #e38052; /* Orange base */
  background-image: url('images/mark-first.png');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}

.legal {
  background-color: #0c2333; /* Navy base */
  background-image: url('images/mark-second.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
}

/* Typography & Buttons */
.cta-container {
	background-color: #f7f8fa;	
}

.cta-content h2 {
  color: #ffffff;
  font-family: "Libre Franklin", sans-serif;
  font-size: 1.5rem;
  line-height: 1.2em;
  margin: 0 0 20px 0;
  max-width: 80%; /* Keeps text from overlapping the background marks */
}

/* Recruitment text is dark in the reference image */
.recruitment h2 {
  color: #1a1a1a;
}

.cta-button {
  display: inline-block;
  background: #ffffff;
  color: #2c3e50;
  text-decoration: none;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}

.cta-button:hover {
  opacity: 0.9;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .cta-container {
    flex-direction: column; /* Stacks the columns */
  }
  
  .cta-box {
    padding: 30px;
  }

  .cta-content h2 {
    font-size: 1.25rem;
    max-width: 100%;
  }
}