/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Variables for consistent colors */
:root {
  --primary: #19aad1;    /* Deep blue */
  --secondary: #00C2FF;  /* Cyan accent */
  --background: #FFFFFF;
  --text: #333333;
  --light-gray: #f5f5f5;
  --header-height: 80px;
  --logo-path: url('../images/logo/logo-dark.png');
  --hero-bg: url('../images/hero/hero-bg.jpg');
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
}

/* Video Background Styles */
main {
  position: relative; /* Needed for absolute positioning of the video */
  max-width: 1200px;
  margin: 2rem auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
  overflow: hidden; /* Ensures video doesn't spill outside main */
}

.bg-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  object-fit: cover;
  pointer-events: none;
}

/* Header & Navigation */
header.header,
.header {
  background-color: #19aad1 !important;
  padding: 0.5rem 1rem;
  position: sticky;
  top: 0;
  height: var(--header-height);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 2rem;
}

/* Logo Styles */
.logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  object-position: left;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Main Content */
.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Hero Section */
.hero {
  padding: 1rem 0;
  text-align: center;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: white;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: 3rem;
}

/* Typography */
h1 {
  color: #19aad1;
  font-size: 2.2rem;
  text-align: center;
}


/* Cards */
.cards-wrapper {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  flex: 1;
  min-width: 300px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

.card h2 {
  color: #19aad1;
  margin-top: 0;
}

/* Contact Section */
.contact-section {
  text-align: center;
  margin-top: 5rem;
  font-size: 1.5rem;
  color: #333;
}

.contact-section a {
  color: #19aad1;
  font-weight: 600;
  text-decoration: none;
}

.contact-section a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  padding: 1rem;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 1rem 0;
}

.feature-card {
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-align: center;
}

.feature-card h3 {
  margin-bottom: 1rem;
}

/* Buttons */
.cta-primary, .cta-secondary {
  padding: 1rem 2rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}

.cta-primary {
  background: #19aad1;
  color: white;
}

.cta-secondary {
  background: white;
  color: #19aad1;
  border: 2px solid #19aad1;
}

/* Mobile menu icon */
.menu-icon {
  display: none;
  background-image: url('../images/icons/menu-hamburger.svg');
  width: 24px;
  height: 24px;
  background-size: contain;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .menu-icon {
    display: block;
  }
  
  .cards-wrapper {
    flex-direction: column;
  }
  
  .card {
    min-width: 100%;
  }
}

/* Feature icons */
.feature-card::before {
  content: '';
  display: block;
  width: 100%;
  height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.feature-card.white-label::before {
  background-image: url('../images/features/white-label.png');
}

.feature-card.integration::before {
  background-image: url('../images/features/integration.png');
}

.feature-card.compliance::before {
  background-image: url('../images/features/compliance.png');
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  background: var(--background);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  height: var(--header-height);
  z-index: 1000;
}

/* Main Content */
.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Hero Section */
.hero {
  padding: 2rem 0;
  text-align: center;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: white;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: 3rem;
}



@media (max-width: 768px) {
  
  .hero h1 {
    font-size: 2rem;
  }
  
} 

/* Feature icons */
.feature-card::before {
  content: '';
  display: block;
  width: 100%;
  height: 200px;
  margin-bottom: 1.5rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


.card-types-section {
  padding: 2rem 2rem;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 3rem;
}

.card-types-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.card-type {
  background: var(--background);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 1.5rem;
  max-width: 500px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-type-icon {
  width: 100%;
  margin-bottom: 1.5rem;
}

.card-type h3 {
  font-size: 1.5rem;
  margin-bottom: .8rem;
  color: var(--primary);
}

.card-type h4 {
  font-size: .9rem;
  margin-bottom: .8rem;
  color: #9B9B9B;
  font-style: italic;
}

.card-type p {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.solution-section {
  padding: 1rem 2rem;
  text-align: center;
}

.section-intro {
  font-size: 1.2rem;
  color: var(--text);
  margin: 1rem auto 3rem;
  max-width: 800px;
}

.solution-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.process-section {
  padding: 1rem 2rem;
  text-align: center;
}

.section-intro {
  font-size: 1.2rem;
  color: var(--text);
  margin: 1rem auto 3rem;
  max-width: 800px;
}

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

.process-step {
  background: var(--background);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.process-step h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
}

hr {
  border: 0;
  height: 2px;
  width: 60px;
  background-color: var(--primary);
  margin: 3rem auto;
  border-radius: 999px;
  
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
