/* Fluid Design Styles for Biasys */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #FFFFFF;
  color: #1A1A1A;
  overflow-x: hidden;
}

#fluid-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

section[id] {
  scroll-margin-top: 120px;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #004F9E;
}

.navbar-menu {
  list-style: none;
  display: flex;
  gap: 24px;
}

.navbar-menu li a {
  text-decoration: none;
  color: #1A1A1A;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-menu li a:hover {
  color: #00C389;
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  background: transparent;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 600;
  color: #004F9E;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 20px auto;
  color: #333;
}

.cta-btn {
  padding: 14px 32px;
  font-size: 1rem;
  background: #00C389;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  display: inline-block;
  transition: background 0.3s;
}

.cta-btn:hover {
  background: #009c6e;
}

.secondary {
  background: none;
  border: 2px solid #00C389;
  color: #00C389;
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 50px;
}

.secondary:hover {
  background: #00C389;
  color: #fff;
}

/* Diagonal Focus Areas */
.diagonal-section {
  position: relative;
  padding: 120px 20px;
  color: #fff;
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
  z-index: 1;
  overflow: hidden;
}

.diagonal-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom right, rgba(0,0,0,0.5), rgba(0,0,0,0.1));
  z-index: 0;
}

/* Gradient overlay also supports future animation if needed */
.gradient-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
  z-index: 1;
}

/* Glassmorphism content style */
.diagonal-content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.diagonal-content h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: #fff;
}

.diagonal-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #f0f0f0;
  max-width: 700px;
}

.diagonal-section.focus-architecture {
  background-image: url('/assets/img/focus-architecture.png');
}

.diagonal-section.focus-controls {
  background-image: url('/assets/img/focus-controls.png');
}

.diagonal-section.focus-legacy {
  background-image: url('/assets/img/focus-legacy.png');
}

/* Why Biasys */
.ease-use {
  padding: 80px 20px;
  text-align: center;
}

.ease-use h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.ease-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.ease-feature {
  max-width: 220px;
  text-align: center;
}

.ease-feature img {
  height: 60px;
  margin-bottom: 16px;
}

.ease-feature p {
  font-size: 0.95rem;
  line-height: 1.5;
}
/* Modernized Who We Serve section */
.about {
  padding: 100px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #1A1A1A;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Refined brief-card */
.brief-card {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(14px);
  border-radius: 16px;
  padding: 32px;
  font-size: 1rem;
  color: #1A1A1A;
  max-width: 620px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  z-index: 2;
}

.brief-card:hover {
  transform: translateY(-5px);
}


/* Contact - Dark Glass Style */
.contact {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(to bottom right, #0D1B2A, #1B263B);
  color: #f0f0f0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: url('/assets/bg/network-overlay.svg') center/cover no-repeat;
  opacity: 0.05;
  z-index: 0;
}

.contact h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  z-index: 2;
  position: relative;
}

.contact p {
  font-size: 1.1rem;
  margin: 10px 0;
  color: #ddd;
  z-index: 2;
  position: relative;
}

.contact a {
  color: #00C389;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  z-index: 2;
  position: relative;
}

.contact a:hover {
  color: #00ffc2;
  text-decoration: underline;
}

.contact .cta-btn.secondary {
  margin-top: 30px;
  color: #00C389;
  border-color: #00C389;
  background-color: transparent;
  z-index: 2;
  position: relative;
}

.contact .cta-btn.secondary:hover {
  background-color: #00C389;
  color: #000;
}
