/*
Theme Name: BOP Theme
Theme URI: https://example.com/
Author: JohnR
Author URI: https://example.com/
Description: WordPress theme converted from static HTML for BOP landing pages.
Version: 1.0
Text Domain: bop-theme
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Landing Page Container */
.bop-page {
    position: relative;
    min-height: 100vh;
    background-color: #07122e;
    overflow: hidden;
}

/* Background Image */
.home-background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/home-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(89.88deg, rgba(0, 0, 0, 0.3) 0%, rgba(40, 102, 124, 0.3) 71.09%, rgba(68, 177, 215, 0.3) 100.57%);
}

.overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

/* Dark Overlay for Better Text Readability */
.home-background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(7, 18, 46, 0.85) 0%, rgba(36, 96, 118, 0.75) 50%, rgba(7, 18, 46, 0.85) 100%);
    z-index: 2;
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 10;
    min-height: 100vh;
}

/* Logo */
.logo {
    width: auto;
    height: 50px;
    z-index: 100;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100%;
    width: auto;
}

/* Navigation Bar */
header {
    position: relative;
    z-index: 20;
}

.navbar {
    display: flex;
    align-items: center;
    padding: 15px 60px;
    position: relative;
    gap: 65px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 30px; /* This brings the text closer to the logo */
}

.brand-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    flex: 1;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-item.dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-link:hover {
    color: #98dded;
    transform: translateY(-2px);
}

.nav-link.active {
    background: linear-gradient(to bottom, #98dded 33.333%, white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}

.dropdown-arrow {
    color: white;
    font-size: 12px;
    opacity: 0.8;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    margin-left: auto;
}

/* Button Styles */
.btn-login,
.btn-signup,
.cta-button {
    font-family: 'Poppins', sans-serif;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    padding: 8px 20px;
}

.btn-login {
    background: rgba(36, 96, 118, 0.55);
    border: 3px solid rgba(248, 187, 55, 0.47);
    color: rgba(255, 255, 255, 0.73);
    backdrop-filter: blur(10px);
}

.btn-login:hover {
    background: rgba(36, 96, 118, 0.75);
    border-color: rgba(248, 187, 55, 0.67);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(248, 187, 55, 0.3);
}

.btn-signup {
    background: rgba(253, 176, 8, 0.91);
    border: 2px solid rgba(36, 96, 118, 0.7);
    color: #246076;
    font-weight: 500;
}

.btn-signup:hover {
    background: rgba(253, 176, 8, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(253, 176, 8, 0.4);
}

/* Hero Section */
main {
    position: relative;
    z-index: 10;
}

.home-hero-section {
    padding: 80px 125px;
    max-width: 1600px;
}

.home-hero-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 75px;
    color: white;
    line-height: 1.2;
    margin-bottom: 40px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: -2px;
}

.home-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 25px;
    color: white;
    max-width: 863px;
    margin-bottom: 50px;
    line-height: 1.5;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background: white;
    color: #061025;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 12.5px 15px 12.8px 15px;
    border-radius: 14px;
    box-shadow: 0px 16px 35px 0px rgba(0, 0, 0, 0.35);   
    text-decoration: none; 
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0px 20px 40px 0px rgba(0, 0, 0, 0.45);
    background: #f8f8f8;
}


.content {
  position: relative;
  z-index: 10;
  padding: 60px 120px;
}

.page-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: #327890;
  letter-spacing: 3px;
  margin-bottom: 40px;
}

/* Hero Section */
.hero-section {
  margin-top: 60px;
}

.hero-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 60px;
  color: white;
  line-height: normal;
  margin-bottom: 40px;
  max-width: 1094px;
}

.hero-description {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: white;
  line-height: 1.5;
  max-width: 916px;
  margin-bottom: 60px;
}

.hero-description p {
  margin-bottom: 20px;
}

.hero-description p:last-child {
  margin-bottom: 0;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 54px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(38, 99, 120, 0.4) 99.028%, rgba(22, 58, 70, 0.4) 99.038%), 
              linear-gradient(90deg, rgb(38, 99, 120) 0%, rgb(38, 99, 120) 100%);
  border-radius: 10px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: white;
  text-decoration: none;
  letter-spacing: 1.25px;
  transition: all 0.3s ease;
  min-width: 240px;
  text-align: center;
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0px 6px 8px 0px rgba(0, 0, 0, 0.35);
}

.industries-content {
  padding: 40px 120px 80px;
  max-width: 1920px;
  margin: 0 auto;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 35px;
  margin-top: 80px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.industry-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0px 12px 30px 0px rgba(0, 0, 0, 0.25);
  min-height: 206px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.industry-title {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #f7f9ff;
  letter-spacing: -0.36px;
  margin-bottom: 15px;
  line-height: 1.2;
}

.industry-description {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #c7d3f0;
  line-height: 1.5;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

/* Contact Us Page */
.contact-page {
  overflow-y: auto;
  overflow-x: hidden;
}

.contact-bg {
  object-fit: cover;
  object-position: center;
  filter: brightness(0.95);
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(224.418deg, rgba(34, 28, 28, 0.2) 31.895%, rgba(102, 102, 102, 0.2) 132.68%), 
              linear-gradient(90deg, rgba(38, 99, 120, 0.26) 0%, rgba(38, 99, 120, 0.26) 100%);
  mix-blend-mode: normal;
}

.contact-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #173a5a;
  mix-blend-mode: overlay;
  opacity: 0.55;
}

.contact-content {
  padding: 20px 120px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 133px);
}

.contact-form-container {
  max-width: 715px;
  width: 100%;
  margin: 0 auto;
}

.contact-subtitle {
  font-family: 'Radio Canada Big', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #90949b;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 10px;
}

.content-title {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 36px;
  color: white;
  text-align: center;
  margin-bottom: 50px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field.full-width {
  width: 100%;
}

.input-field {
  height: 73px;
  padding: 20px 24px;
  background: linear-gradient(90deg, rgba(63, 70, 78, 0.2) 0%, rgba(63, 70, 78, 0.2) 100%), 
              linear-gradient(90deg, rgba(50, 120, 144, 0.36) 0%, rgba(50, 120, 144, 0.36) 100%);
  border: 1px solid rgba(79, 87, 98, 0.38);
  border-radius: 8px;
  backdrop-filter: blur(2px);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  font-family: 'Mandali', sans-serif;
  font-size: 18px;
  color: white;
  outline: none;
  transition: all 0.3s ease;
}

.input-field::placeholder {
  color: white;
  opacity: 1;
}

.input-field:focus {
  border-color: rgba(79, 87, 98, 0.6);
  background: linear-gradient(90deg, rgba(63, 70, 78, 0.3) 0%, rgba(63, 70, 78, 0.3) 100%), 
              linear-gradient(90deg, rgba(50, 120, 144, 0.46) 0%, rgba(50, 120, 144, 0.46) 100%);
}

.textarea-field {
  min-height: 189px;
  padding: 20px 24px;
  background: linear-gradient(90deg, rgba(63, 70, 78, 0.2) 0%, rgba(63, 70, 78, 0.2) 100%), 
              linear-gradient(90deg, rgba(50, 120, 144, 0.36) 0%, rgba(50, 120, 144, 0.36) 100%);
  border: 1px solid rgba(79, 87, 98, 0.38);
  border-radius: 8px;
  backdrop-filter: blur(2px);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  font-family: 'Mandali', sans-serif;
  font-size: 18px;
  color: white;
  outline: none;
  resize: vertical;
  transition: all 0.3s ease;
}

.textarea-field::placeholder {
  color: white;
  opacity: 1;
}

.textarea-field:focus {
  border-color: rgba(79, 87, 98, 0.6);
  background: linear-gradient(90deg, rgba(63, 70, 78, 0.3) 0%, rgba(63, 70, 78, 0.3) 100%), 
              linear-gradient(90deg, rgba(50, 120, 144, 0.46) 0%, rgba(50, 120, 144, 0.46) 100%);
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-label {
  font-family: 'Mandali', sans-serif;
  font-size: 18px;
  color: white;
}

.checkbox-group {
  display: flex;
  gap: 15px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: 'Mandali', sans-serif;
  font-size: 18px;
  color: white;
}

.checkbox-input {
  width: 22px;
  height: 24px;
  appearance: none;
  background: linear-gradient(90deg, rgba(63, 70, 78, 0.2) 0%, rgba(63, 70, 78, 0.2) 100%), 
              linear-gradient(90deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.02) 100%);
  border: 1px solid rgba(79, 87, 98, 0.38);
  border-radius: 8px;
  backdrop-filter: blur(2px);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.checkbox-input:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 16px;
  font-weight: bold;
}

.checkbox-text {
  user-select: none;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .home-hero-title {
        font-size: 80px;
    }

    .home-hero-subtitle {
        font-size: 22px;
    }
}

@media (max-width: 1200px) {
    .navbar {
        padding: 30px 50px;
    }

    .nav-menu {
        gap: 25px;
    }

    .nav-link {
        font-size: 20px;
    }

    .home-hero-section {
        padding: 60px 80px;
    }

    .home-hero-title {
        font-size: 70px;
    }

    .home-hero-subtitle {
        font-size: 20px;
    }

    .content {
        padding: 60px 60px;
    }

    .industries-content {
        padding: 40px 60px 80px;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 992px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
    }

    .brand-text {
        text-align: center;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav-buttons {
        margin-left: 0;
    }

    .home-hero-title {
        font-size: 60px;
    }

    .home-hero-subtitle {
        font-size: 18px;
    }

    .home-hero-section {
        padding: 40px 40px;
    }
}

@media (max-width: 768px) {
    .home-hero-section {
        padding: 40px 30px;
    }

    .home-hero-title {
        font-size: 48px;
    }

    .home-hero-subtitle {
        font-size: 16px;
    }

    .nav-link {
        font-size: 18px;
    }

    .btn-login,
    .btn-signup {
        font-size: 18px;
        padding: 8px 20px;
    }

    .brand-text {
        font-size: 24px;
    }

    .content {
        padding: 30px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .hero-heading {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 20px;
    }
    
    .action-buttons {
        gap: 20px;
        flex-direction: column;
    }
    
    .btn {
        font-size: 20px;
        min-width: 200px;
    }
    
    .industries-content {
        padding: 30px;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .industry-card {
        min-height: auto;
    }
    
    .industry-title {
        font-size: 18px;
    }
    
    .industry-description {
        font-size: 13px;
    }
    
    .contact-content {
        padding: 30px;
        min-height: auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .concontent-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
    
    .input-field,
    .textarea-field {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .home-hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .home-hero-subtitle {
        font-size: 14px;
    }

    .cta-button {
        font-size: 12px;
        padding: 10px 12px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }

    .nav-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .btn-login,
    .btn-signup {
        width: 100%;
    }

    .logo {
        left: 10px;
        top: 10px;
        width: 60px;
        height: 45px;
    }

    .logo-icon {
        font-size: 14px;
    }
}
