:root {
  --navy: #0a192f;
  /* Deep Navy - Used for Text/Accents now */
  --bg-main: #ffffff;
  /* White Background */
  --accent-blue: #0056b3;
  /* Stark Navy Blue Accent */
  --soft-blue: #007bff;
  /* Slightly lighter blue for secondary accents */
  --white: #ffffff;
  --text-main: #0a192f;
  /* Dark Navy for main text */
  --text-secondary: #4a5568;
  /* Slate grey for secondary text */
  --glass-bg: rgba(255, 255, 255, 0.65);
  /* More opaque white for light mode */
  --glass-border: rgba(255, 255, 255, 0.5);
  --shadow: 0 10px 30px -10px rgba(0, 86, 179, 0.15);
  /* Soft blue shadow */
  --font-main: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: url('assets/background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.80);
  /* White overlay */
  z-index: -1;
  backdrop-filter: blur(5px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Glassmorphism Generic Class */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  /* Softer, lighter shadow */
}

/* Typography Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--navy), var(--accent-blue));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--accent-blue);
  color: var(--white);
  border: 2px solid var(--accent-blue);
  box-shadow: 0 4px 14px rgba(0, 86, 179, 0.3);
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent-blue);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-blue);
  border: 2px solid var(--accent-blue);
}

.btn-secondary:hover {
  background: rgba(0, 86, 179, 0.05);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  border: 2px solid #25D366;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: transparent;
  color: #25D366;
}

.btn-email {
  background: #FFD700;
  /* Gold/Yellow */
  color: var(--navy);
  border: 2px solid #FFD700;
  box-shadow: 0 4px 14px rgba(255, 215, 0, 0.3);
}

.btn-email:hover {
  background: transparent;
}

/* Header */
header.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

header.main-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--accent-blue);
}

.logo img {
  height: 80px;
  width: auto;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

.floating-whatsapp svg {
  width: 35px;
  height: 35px;
  fill: white;
}

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

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Problem Section */
.problem {
  padding: 80px 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  text-align: center;
}

.problem .copy {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.problem-item {
  padding: 1.5rem;
}

.problem-item svg {
  width: 48px;
  height: 48px;
  stroke: var(--accent-blue);
  margin-bottom: 1rem;
}

/* Solution Section */
.solution {
  padding: 80px 0;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  transition: transform 0.3s ease;
}

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

.feature-card h3 {
  margin-bottom: 0.5rem;
  color: var(--accent-blue);
}

/* How It Works */
.how-it-works {
  padding: 80px 0;
}

.steps-container {
  max-width: 800px;
  margin: 3rem auto 0;
}

.step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0, 86, 179, 0.15);
  /* Faint blue number */
  line-height: 1;
}

.step-content h3 {
  margin-bottom: 0.5rem;
}

/* Who It's For */
.who-for {
  padding: 80px 0;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

.for-col h3 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.for-list li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
}

.for-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-blue);
  font-weight: bold;
}

.not-for-list li::before {
  content: '✕';
  color: #ff6b6b;
}

/* Core Value */
.core-value {
  padding: 80px 0;
  text-align: center;
}

.value-bullets {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem 0;
  font-weight: 600;
  color: var(--text-main);
}

.value-bullets span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.value-bullets span::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-blue);
  border-radius: 50%;
}

.bold-line {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 2rem;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  text-align: center;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.micro-text {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Footer */
footer {
  padding: 2rem 0;
  border-top: 1px solid var(--glass-border);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}


/* Partners Page Styles */

.partners-hero {
  background-image: url('assets/partners_bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--navy);
  /* Changed to dark navy for light theme */
  position: relative;
}

.partners-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  /* Very high opacity for readability */
  backdrop-filter: blur(5px);
  /* Blur the underlying image */
  z-index: 0;
}

.partners-hero .container {
  position: relative;
  z-index: 1;
}

.partners-models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.model-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: left;
  transition: transform 0.3s ease;
}

.model-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 86, 179, 0.15);
}

.model-card h3 {
  color: var(--accent-blue);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

/* Form Styles */
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

/* Success Message Box */
.success-box {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
  display: none;
}