:root {
  --primary-color: #042B66; /* Brand blue */
  --secondary-color: #f8f9fa;
  --text-color: #333;
  --light-text-color: #ffffff;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--secondary-color);
  color: var(--text-color);
  line-height: 1.6;
}

/* Navbar */
nav {
  background: var(--primary-color);
  padding: 10px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

nav .brand img {
  height: 65px; /* balanced with text */
}

nav .brand span {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--light-text-color);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: var(--light-text-color);
  text-decoration: none;
  font-weight: 500;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 10%;
  background: var(--primary-color);
  color: var(--light-text-color);
}

.hero-text {
  max-width: 70%;
}

.hero-text h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1em;
  margin-bottom: 20px;
}

.hero-video {
  flex: 0 0 10%;
}

.hero-video video,
.hero-video img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

/* Sections */
section {
  padding: 60px 0;
  text-align: center;
}

h2 {
  font-size: 2.2em;
  color: var(--primary-color);
  margin-bottom: 40px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.feature-item {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  border: 2px solid var(--primary-color);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  max-width: 320px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.feature-item i {
  font-size: 2.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature-item h3 {
  margin-top: 0;
  font-size: 1.4em;
}

/* Privacy Section */
.privacy-section {
  background: #fff;
  padding: 60px 20px;
  color: var(--text-color);
}

.privacy-section p {
  max-width: 700px;
  margin: 0 auto;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #042B66, #0a4a9e);
  color: var(--light-text-color);
  text-align: center;
  padding: 30px 10%;
  font-size: 0.9em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer a {
  color: #ffffff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.footer-badges img {
  height: 45px;
  margin-left: 15px;
  object-fit: contain;
}

/* ---------- Video Section ---------- */
.video-section {
  background: var(--primary-color);
  padding: 60px 20px;
  text-align: center;
}

.video-section .video-title {
  font-size: 2.2rem;
  color: #ffffff; /* white for contrast */
  margin-bottom: 10px;
  font-weight: 700;
}

.video-section .video-subtitle {
  max-width: 700px;
  margin: 0 auto 30px auto;
  font-size: 1.1rem;
  color: #e0f0ff; /* light bluish text for readability */
  line-height: 1.6;
}

.video-wrapper {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  padding-top: 36%;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  border-radius: 16px;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 16px;
}

.video-wrapper:hover {
  transform: scale(1.02);
  transition: transform 0.25s ease;
}

/* Social Icons in Footer */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 25px 0 0;
}

.social-icons a {
  position: relative;
  font-size: 1.4rem;
  color: #fff;                   /* white icon by default */
  background: rgba(255, 255, 255, 0.15); /* subtle translucent circle */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

/* Hover states: show authentic brand color as background with white icon */
.social-icons a.facebook:hover   { background: #1877F2; color: #fff; box-shadow: 0 0 8px #1877F2; }
.social-icons a.instagram:hover  { background: #E4405F; color: #fff; box-shadow: 0 0 8px #E4405F; }
.social-icons a.twitter:hover    { background: #1DA1F2; color: #fff; box-shadow: 0 0 8px #1DA1F2; }
.social-icons a.linkedin:hover   { background: #0A66C2; color: #fff; box-shadow: 0 0 8px #0A66C2; }




/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-text {
    max-width: 100%;
    margin-bottom: 40px;
  }
  .hero-video {
    flex: 0 0 auto;
    width: 80%;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  footer {
    flex-direction: column;
    gap: 20px;
  }
}
