:root {
  --blue: #0B63E5;
  --blue-light: #EAF2FF;
  --yellow: #FFC83D;
  --text: #0F172A;
  --muted: #64748B;
  --border: #E5E7EB;
  --bg: #F8FAFC;
}

* { box-sizing: border-box; }
h1, h2, h3, h4, h5 {
  font-weight: 800;
}

body {
  font-family: 'Nunito Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  margin: 0;
  background: #fff;
}

.navbar {
  height: 72px;
  background: #fff;
  box-shadow: 0 1px 0 var(--border);
}

.hero-section {
  background: #ECF3FE;
  padding: 120px 0;
}

.hero-content h1 {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 16px;
}

/* CTA buttons – no rounded corners */
.hero-cta .btn {
  border-radius: 0;
  padding: 12px 28px;
  font-weight: 700;
}

/* smoother carousel animation */
.carousel-fade .carousel-item {
  transition: opacity 1.1s ease-in-out;
}

.hero-visual img {
  max-width: 100%;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

@media (max-width: 991px) {
  .hero-section {
    padding: 80px 0;
  }
  .hero-content h1 {
    font-size: 34px;
  }
  .hero-visual {
    margin-top: 40px;
  }
}


.hero-slider {
  padding: 120px 0;
  background: #ECF3FE;
}

.hero-slider h1 {
  font-size: 48px;
font-weight: 800;
	line-height: 1.12;
  margin-bottom: 12px;
}

.hero-slider p {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
}

.hero-images img.hero-img {
  border-radius: 20px;
  max-width: 180px;
  object-fit: cover;
}

.platform-section {
  padding: 120px 0;
  background: #ffffff;
  font-family: 'Nunito Sans', sans-serif;
}

.platform-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.platform-header p {
  font-size: 16px;
  color: #475569;
  max-width: 640px;
  margin: 0 auto 64px;
}

/* LEFT IMAGE */
.platform-visual {
  position: sticky;
  top: 120px;
}

.platform-visual img {
  width: 100%;
  display: block;
  /* sharp edges */
  border-radius: 0;
}

/* RIGHT CONTENT */
.platform-content {
  min-height: 100vh;
  padding-left: 48px;
}

.platform-item {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0.3;
  transition: opacity 0.4s ease;
}

.platform-item.active {
  opacity: 1;
}

.platform-accent {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #007AFF;
  margin-bottom: 12px;
}

.platform-item h3 {
  font-size: 26px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.platform-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  max-width: 460px;
  margin-bottom: 28px;
}

/* CTA */
.platform-cta {
  display: inline-block;
  font-weight: 700;
  color: #ffffff;
  background: #007AFF;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 0;
  width: fit-content;
}

/* MOBILE */
@media (max-width: 991px) {
  .platform-content {
    padding-left: 0;
  }

  .platform-item {
    min-height: auto;
    opacity: 1;
    margin-bottom: 48px;
  }

  .platform-visual {
    position: relative;
    top: auto;
    margin-bottom: 40px;
  }
}
.solutions-section {
  background: #007AFF;
  font-family: 'Nunito Sans', sans-serif;
}

/* SCROLLABLE TABS */

/* Tabs container */
.solution-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 16px;
  padding-bottom: 12px;
}

.solution-tabs::-webkit-scrollbar {
  display: none;
}

/* INACTIVE TAB */
.solution-tabs .nav-link {
  background: #FFD54F;        /* YELLOW */
  color: #000000;             /* BLACK TEXT */
  border: none;
  padding: 10px 18px;
  font-weight: 600;
  white-space: nowrap;
  border-radius: 0;
}

/* ACTIVE TAB */
.solution-tabs .nav-link.active {
  background: #ffffff;        /* WHITE */
  color: #000000;             /* BLACK TEXT */
}

/* Remove underline (not needed with bg tabs) */
.solution-tabs .nav-link::after {
  display: none;
}



/* CONTENT */
.solution-content {
  border-radius: 0;
}

.solution-content h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.solution-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* CTA */
.solution-cta {
  display: inline-block;
  background: #007AFF;
  color: #ffffff;
  font-weight: 700;
  padding: 12px 32px;
  text-decoration: none;
  border-radius: 0;
}

.why-choose-section {
  background: #ECF3FE;
  padding: 120px 0;
  font-family: 'Nunito Sans', sans-serif;
}

.why-choose-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
}

.section-subtitle {
  font-size: 16px;
  color: #475569;
  max-width: 680px;
  margin: 16px auto 0;
}


/* =========================================
   WHY CHOOSE US – VERTICAL CENTER (LEFT ALIGNED)
   ========================================= */

.why-card {
  background: #ffffff;
  padding: 32px;
  min-height: 280px;
  height: 100%;

  display: flex;
  flex-direction: column;

  /* ✅ vertical centering */
  justify-content: center;

  /* ✅ keep LEFT alignment */
  align-items: flex-start;
  text-align: left;

  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease,
    background-color 0.3s ease;
}

/* Icon */
.why-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
}

/* Title */
.why-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

/* Description – hidden visually, space reserved */
.why-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
  margin-top: 16px;

  opacity: 0;
  transform: translateY(6px);

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

/* Hover effect */
.why-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

/* Reveal description on hover */
.why-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile: always show description */
@media (max-width: 768px) {
  .why-card p {
    opacity: 1;
    transform: none;
  }
}



/* Optional: subtle title spacing change on hover */
.why-card:hover h4 {
  margin-bottom: 8px;
}


/* Responsive */
@media (max-width: 991px) {
  .why-choose-section {
    padding: 80px 0;
  }
}


/* ============================
   VIDEO SECTION
   ============================ */

.video-section {
  background: #ffffff;
  padding: 120px 0;
  font-family: 'Nunito Sans', sans-serif;
}
.video-wrapper {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  cursor: pointer;
}

.product-video {
  display: none;
  width: 100%;
  background: #000;
  pointer-events: auto; /* ✅ allow controls */
}

.video-cover {
  width: 100%;
  display: block;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
}

.video-play-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  border-left: 22px solid #ffffff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

.video-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
}

.video-subtitle {
  font-size: 16px;
  color: #475569;
  max-width: 620px;
  margin: 0 auto 48px;
}

.video-wrapper img {
  width: 100%;
  display: block;
}

.video-wrapper:hover .video-play-btn {
  background: rgba(0, 0, 0, 0.75);
}

/* MOBILE */
@media (max-width: 768px) {
  .video-section {
    padding: 80px 0;
  }

  .video-section h2 {
    font-size: 28px;
  }
}

/* PLAY BUTTON */
.play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 72px;
  height: 72px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
}

.play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35%, -50%);
  width: 0;
  height: 0;
  border-left: 18px solid #ffffff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

/* Hover effect */
.video-link:hover .play-button {
  background: rgba(0, 0, 0, 0.7);
}

/* Mobile */
@media (max-width: 768px) {
  .video-section {
    padding: 80px 0;
  }

  .video-section h2 {
    font-size: 28px;
  }
}


.accordion-button {
  font-weight: 600;
}

.help-image img {
  max-width: 420px;
  width: 100%;
  transition: all 0.3s ease;
}

/* responsive */
@media (max-width: 992px) {
  .hero-slider { padding: 80px 0; }
  .hero-images img.hero-img { max-width: 140px; }
  .platform-image { position: relative; top: 0; margin-top: 30px; }
}



/* =====================================================
   WHY BUSINESSES CHOOSE US
===================================================== */
.choose-card {
  height: 100%;
  padding: 30px 20px;
  border-radius: 14px;
  border: 1px solid var(--border-light);
  text-align: center;
  background: #fff;
  transition: all 0.35s ease;
}

.choose-card i {
  color: var(--primary);
  margin-bottom: 12px;
}

.choose-card h6 {
  font-weight: 600;
  margin-top: 10px;
}

.choose-card.active,
.choose-card:hover {
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px);
}

/* =====================================================
   VIDEO SECTION
===================================================== */
.video-box {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.video-box video {
  width: 100%;
  display: block;
}

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.video-play i {
  font-size: 64px;
  color: #fff;
}

/* =====================================================
   ACCORDION – HOW OKAYGENIE HELPS
===================================================== */
.accordion-button {
  font-weight: 600;
  padding: 18px;
}

.accordion-button:not(.collapsed) {
  background: #f0f6ff;
  color: var(--primary);
  box-shadow: none;
}

.accordion-item {
  border: 1px solid var(--border-light);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
}

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

.help-image img {
  max-width: 420px;
  width: 100%;
  transition: all 0.3s ease;
}

.how-okaygenie-helps {
  background: #ffffff;
  padding: 120px 0;
  font-family: 'Nunito Sans', sans-serif;
}

.how-okaygenie-helps h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
}


/* =====================================================
   FOOTER
===================================================== */
footer {
  font-size: 14px;
  color: var(--text-muted);
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 768px) {
  .platform-section {
    min-height: auto;
    padding-top: 40px;
  }

  .platform-image {
    margin-top: 30px;
  }

  .choose-card {
    padding: 24px 16px;
  }

  .video-play i {
    font-size: 48px;
  }
}


/* ============================
   CONTACT SECTION
   ============================ */

.contact-section {
  background: #0B5ED7;
  padding: 120px 0;
  width: 100%px;	
  color: #ffffff;
  font-family: 'Nunito Sans', sans-serif;
}

/* LEFT */
.contact-info h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 40px;
  color: white;

}

.info-block {
  margin-bottom: 36px;
}

.info-block h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.info-block p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  opacity: 0.95;
}

/* FORM */
.contact-form label {
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
  opacity: 0.9;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255,255,255,0.7);
  color: #ffffff;
  padding: 8px 0;
  margin-bottom: 32px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.6);
}

/* SUBMIT BUTTON */
.submit-btn {
  background: #ffffff;
  color: #0B5ED7;
  border: none;
  padding: 14px 48px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  margin-top: 16px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .contact-section {
    padding: 80px 0;
  }

  .contact-info {
    margin-bottom: 48px;
  }

  .contact-info h2 {
    font-size: 34px;
  }
}

/* Footer */
.okaygenie-footer {
  background: #eef4fb;
  padding: 70px 0 0;
  color: #1f2937;
}

.footer-brand {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.brand-blue { color: #3b82f6; }
.brand-yellow { color: #f59e0b; }
.brand-red { color: #ef4444; }

.footer-text {
  font-size: 15px;
  line-height: 1.7;
  max-width: 360px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
  font-size: 15px;
}

.footer-links a {
  text-decoration: none;
  color: #1f2937;
}

.footer-links a:hover {
  color: #3b82f6;
}

.footer-contact {
  font-size: 15px;
  line-height: 1.6;
}

.footer-contact a {
  color: #3b82f6;
  text-decoration: none;
}

/* Bottom bar */
.footer-bottom {
  background: #ffffff;
  margin-top: 60px;
  padding: 18px 0;
  font-size: 14px;
}

.footer-bottom-links a {
  margin-left: 20px;
  color: #1f2937;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: #3b82f6;
}

/* Mobile spacing */
@media (max-width: 768px) {
  .footer-bottom-links a {
    margin-left: 12px;
  }
}

