:root {
  --bg: #031b2a;
  --ink: #ffffff;
  --muted: #c8d4e3;
  --brand: #0aa0ff;
  --panel: #08263a;
  --card: #0c2f47;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Baloo 2', sans-serif;
}

/* Add spacing between sections */
section {
  margin-bottom: 64px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--panel);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.nav-brand img {
  width: 28px;
  height: 28px;
}
.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav a {
  color: var(--ink);
  text-decoration: none;
  opacity: 0.9;
}
.nav a:hover {
  opacity: 1;
}

.dropdown {
  position: relative;
}
.dropbtn {
  background: transparent;
  color: var(--ink);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.1);
  display: none;
  flex-direction: column;
  padding: 8px;
}
.dropdown:hover .dropdown-content {
  display: flex;
}
.dropdown-content a {
  padding: 6px 8px;
}
.dropdown-content a:hover {
  background: rgba(255,255,255,0.08);
}

.hero {
  background: linear-gradient(135deg, #052238 0%, #093859 100%);
  padding: 80px 16px;
  text-align: center;
  margin-bottom: 64px;
}
.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 2.2rem;
  margin: 0 0 12px;
}
.hero p {
  color: var(--muted);
  margin: 0 0 24px;
}

.hero-slice {
  position: relative;
  height: 400px; /* only part of the page */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 140vw; /* wider than screen */
  height: 65%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 0 20px;
  max-width: 800px;
}

.hero-overlay h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
}

.hero-overlay p {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-overlay .btn {
  background: var(--brand);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
}

.cta {
  display: inline-block;
  background: var(--brand);
  color: #00111a;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
}

.section {
  padding: 64px 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.section h2 {
  font-size: 1.8rem;
  margin: 0 0 18px;
}
.section-alt {
  background: var(--panel);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 64px 16px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 18px;
}
.card h3 {
  margin-top: 0;
}
.card .link {
  color: var(--brand);
  text-decoration: none;
}

.ceo-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 18px;
  align-items: center;
}
.ceo-photo {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
}

.ceo-centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.ceo-centered h2,
.ceo-centered h3,
.ceo-centered p {
  margin-bottom: 16px;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.socials a {
  color: var(--brand);
  text-decoration: none;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 80px;
  align-items: center;
}
.logo-grid img {
  width: 100%;
  height: auto;
  filter: brightness(0.9) contrast(1.1);
}

.contact-form {
  display: grid;
  gap: 12px;
  max-width: 640px;
}
.contact-form label {
  display: block;
  margin-bottom: 12px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.2);
  background: #0a3552;
  color: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--brand);
}
.status {
  margin-top: 10px;
  font-weight: 600;
}
.contact-form button {
  background: var(--brand);
  color: #00111a;
  border: none;
  padding: 12px 16px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}
.contact-form button:hover {
  background: #008ae6;
}

@media (max-width: 600px) {
  .ceo-grid {
    grid-template-columns: 1fr;
  }
  section {
    margin-bottom: 32px;
  }
  .section,
  .section-alt {
    padding: 32px 12px;
  }
}
/* End of style.css */

/* Hard spacing between consecutive sections */
.section + .section,
.section + .section-alt,
.section-alt + .section,
.section-alt + .section-alt {
  margin-top: 64px;
}

/* Also add spacing after the hero */
.hero {
  margin-bottom: 64px;
}

.hero-message {
  opacity: 0;
  transform: translateY(40px);   /* start slightly lower */
  animation: slideUp 1s ease-out forwards;
  animation-delay: 0.5s;         /* delay for dramatic effect */
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-message h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero-message p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #0077ff;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #005fcc;
}

/* Ensure section blocks aren’t caught in margin-collapsing */
.section,
.section-alt {
  display: block;
  padding: 64px 16px; /* keep breathing room inside too */
}

/* Mobile scale-down */
@media (max-width: 600px) {
  .section + .section,
  .section + .section-alt,
  .section-alt + .section,
  .section-alt + .section-alt {
    margin-top: 32px;
  }
  .section,
  .section-alt {
    padding: 32px 12px;
  }
  .hero {
    margin-bottom: 32px;
  }
}
@media (max-width: 600px) {
  .section,
  .section-alt {
    padding: 32px 12px;
  }
}
body {
  text-align: center;
}
section, .card, .contact-form, .hero-inner {
  margin-left: auto;
  margin-right: auto;
}

/* Force CEO section centered */
#ceo {
  text-align: center !important;
}

/* Kill the two‑column grid and center the content block */
#ceo .ceo-grid {
  display: block !important;
  grid-template-columns: none !important;
  justify-items: center !important;
}

/* Center the inner block and cap width for readable lines */
#ceo .ceo-grid > div,
#ceo .ceo-centered {
  max-width: 760px;
  margin: 0 auto !important;
  text-align: center !important;
}

/* Tidy spacing */
#ceo h2, #ceo h3, #ceo p {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Make CEO section text larger */
#ceo h2 {
  font-size: 2.4rem; /* bigger heading */
}

#ceo h3 {
  font-size: 1.8rem; /* bigger subheading */
}

#ceo p {
  font-size: 1.3rem; /* bigger paragraph text */
  line-height: 1.7;  /* more breathing room */
  max-width: 800px;  /* keeps lines readable */
  margin: 0 auto;    /* centers the block */
  text-align: center;
}

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

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.logo {
  height: 12000px;     /* Try 120px if you want it even bigger */
  width: auto;       /* Keeps proportions */
  display: block;
}

.nav-brand {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.bubble {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 1s ease-out forwards;
  animation-delay: 0.5s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-box {
  background: var(--panel);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}

.service-img {
  max-width: 100%;
  height: auto;
  margin-bottom: 16px; /* space between image and text */
  border-radius: 8px;  /* optional rounded corners */
}

/* Service Boxes */
.service-box {
  background: var(--panel);
  border-radius: 12px;
  padding: 30px;
  margin: 40px auto;
  max-width: 900px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-box h2 {
  margin-top: 20px;
  font-size: 1.8rem;
}

.service-box p {
  margin: 20px 0;
  line-height: 1.6;
}

.service-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Learn More Button */
.learn-more {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #0077ff;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.learn-more:hover {
  background: #005fcc;
}

/* Details Grid Section */
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 60px auto;
  max-width: 1000px;
  padding: 0 20px;
}

.detail-box {
  background: var(--panel);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.detail-box img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 16px;
}

.detail-box h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.detail-box p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.detail-link {
  display: inline-block;
  padding: 8px 16px;
  background: #0077ff;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.detail-link:hover {
  background: #005fcc;
}

/* Intro Section Animation */
.intro {
  opacity: 0;
  transform: translateY(40px);   /* start slightly lower */
  animation: slideUp 1s ease-out forwards;
  animation-delay: 0.3s;         /* delay for dramatic effect */
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.intro p {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin: 60px auto;
  max-width: 1000px;
  padding: 20px;
  background: var(--panel);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-img {
  flex: 1 1 300px;
}

.service-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.service-content {
  flex: 2 1 400px;
}

.service-content h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.service-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.learn-more {
  display: inline-block;
  padding: 10px 20px;
  background: #0077ff;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.learn-more:hover {
  background: #005fcc;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin: 60px auto;
  max-width: 1000px;
  padding: 20px;
  background: var(--panel);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-img {
  flex: 1 1 300px;
}

.service-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.service-content {
  flex: 2 1 400px;
}

.service-content h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.service-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.learn-more {
  display: inline-block;
  padding: 10px 20px;
  background: #0077ff;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.learn-more:hover {
  background: #005fcc;
}

video {
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.tool-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px; /* ensures equal height */
}

.tool-card h3 {
  margin-top: 0;
  font-size: 1.4rem;
}

.tool-card p {
  flex-grow: 1;
  margin-bottom: 20px;
  color: var(--muted);
}

.tool-card .btn {
  align-self: flex-start;
}

:root {
  --bg: #0f172a;
  --text: #e5e7eb;
  --muted: #cbd5e1;
  --brand: #1d4ed8;
  --brand-2: #0ea5e9;
  --panel: #0b1222;
  --panel-2: #101826;
  --border: rgba(255,255,255,0.08);
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
  --radius: 14px;
  --radius-lg: 18px;
  --spacing: 24px;
  --max: 1100px;
}

body {
  margin: 0;
  font-family: 'Baloo 2', system-ui, sans-serif;
  background: radial-gradient(1200px 600px at 20% -10%, #0b1935 0%, #0f172a 55%, #0f172a 100%);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.center {
  text-align: center;
}

h1, h2, h3 {
  margin: 0 0 12px;
}

p {
  margin: 0 0 18px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: var(--brand);
  color: #fff;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(29,78,216,0.28);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  background: #2453de;
  box-shadow: 0 10px 26px rgba(29,78,216,0.36);
}

.qna-grid {
  display: grid;
  gap: var(--spacing);
}

.qna-card {
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.qna-card:hover {
  transform: translateY(-4px);
}

.qna-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.qna-card p {
  color: var(--muted);
}

.qna-card .answer {
  margin-top: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: var(--radius);
  color: #e6f7ff;
}

.intro {
  opacity: 0;
  transform: translateY(28px);
  animation: slideUp 900ms cubic-bezier(.2,.8,.2,1) forwards;
  animation-delay: 150ms;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Remove bottom padding from intro */
.intro {
  padding-bottom: 0;
  margin-bottom: 0px;
}

/* Remove top padding from the Q&A section */
.qna-grid {
  margin-top: 0%;
}

/* Optional: tighten spacing between all sections */
.section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.logo {
  height: 64px;       /* Make it bigger */
  width: auto;
  border-radius: 12px;
  margin-right: 12px;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: scale(1.05);
}
.qna-card .answer {
  margin-top: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: var(--radius);
  color: #75a7be;
}ß
.qna-card .answer:hover {
  background: rgba(255,255,255,0.1);
}.hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* full viewport height */
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 1000px; /* full width */
  height: 100vh;
  object-fit: cover;
  z-index: 0;
}

.hero-message {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 60vh; /* shorter height */
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 1000px; /* full width */
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;       /* full viewport width */
  height: auto;       /* let height adjust naturally */
  min-height: 100%;   /* ensures it fills vertically if needed */
  object-fit: cover;  /* keeps aspect ratio while filling */
  z-index: 0;
}


.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.thumb img {
  width: 100%;       /* makes the image fill the container */
  height: auto;      /* keeps the aspect ratio */
  display: block;    /* removes extra spacing below the image */
  object-fit: contain; /* ensures the whole image shows, not cropped */
}

.accordion .item {
  border-bottom: 1px solid #ddd;
}

.accordion-toggle {
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.accordion-toggle:hover,
.accordion-toggle:focus {
  background: #f0f0f0;
  outline: none;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1rem;
}

.accordion-content.open {
  max-height: 200px; /* adjust as needed */
  padding: 1rem;
}

.accordion-toggle {
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s, transform 0.2s;
}

.accordion-toggle:hover {
  background: #444;
  transform: translateX(4px);
}

.accordion-toggle .icon {
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.accordion-toggle[aria-expanded="true"] .icon {
  transform: rotate(45deg); /* turns + into × */
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1rem;
  background: #f9f9f9;
  border-left: 4px solid #ff6600;
  border-radius: 0 0 6px 6px;
}

.accordion-content.open {
  max-height: 200px;
  padding: 1rem;
}

body {
  margin: 0;
  background:
    radial-gradient(1200px 800px at 10% 0%, #0e141b, var(--bg)),
    radial-gradient(1000px 600px at 90% 110%, #0e141b, var(--bg));
  color: var(--text);
  font-family: 'Inter', sans-serif; /* 👈 keep Inter consistent */
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh; /* full screen height */
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* makes video fill the box */
  z-index: 0; /* behind text */
}

.hero-message {
  position: relative;
  z-index: 1; /* text stays above video */
  max-width: 600px;
  margin: 0 auto;
  padding: 80px 20px;
  color: var(--text);
}

.grid-auto {
  display: grid;
  gap: var(--gap);
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 700px) {
  .grid-auto {
    grid-template-columns: 1fr;
  }
}

/* Remove blanket hover that shows overlay */
.qna-card:hover .overlay { opacity: 0; }

/* Show overlay only when hovering the cover area */
.qna-card .cover:hover ~ .overlay {
  opacity: 1;
  pointer-events: auto; /* allow clicking the "Open" button */
}

/* Default overlay state */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  transition: opacity .25s ease;
  opacity: 0;
  pointer-events: none; /* prevent blocking content when not intentionally hovered */
  z-index: 1;
}

/* Ensure content sits above any accidental overlay */
.qna-card .pad { position: relative; z-index: 2; }

/* Hide overlay entirely when a card is "open" (answer expanded) */
.qna-card.open .overlay { display: none; }

/* End of style.css */