/* ===== Global typography ===== */
:root {
  --base-font-family: "Inter, sans-serif";

  --base-font-size: 16px; /* full website base size */
  --base-text-color: #1f2933; /* dark grey instead of pure black */
}

html {
  font-size: var(--base-font-size);
  scroll-behavior: smooth; /* keep your smooth scroll here too */
}

body {
  /* font-family: var(--base-font-family); */
  font-family: "Inter", sans-serif;
  color: var(--base-text-color);
  line-height: 1.6;
}

/* All paragraph text */
p {
  font-size: 0.98rem; /* ~15.5px, adjust if you want bigger/smaller */
  margin-bottom: 0.75rem;
}

/* Optional: make headings a bit consistent */
h1,
.h1 {
  font-size: 2.25rem;
  font-weight: 600;
}
h2,
.h2 {
  font-size: 1.75rem;
  font-weight: 600;
}
h3,
.h3 {
  font-size: 1.4rem;
  font-weight: 600;
}
h4,
h5,
h6 {
  font-weight: 600;
}

/* White background around iframe */
.iframe-wrapper {
  background-color: #ffffff !important; /* outside area */
}

/* White background for iframe itself */
.wp-blog-iframe {
  background-color: #ffffff !important; /* inside iframe area */
  display: block;
}

/* ==== See HR Cosmo in Action ==== */

.action-section {
  background-color: #ffffff;
}

.action-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111827;
}

/* Card container */
.action-card {
  background-color: #f9fafb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.12);
}

/* Image */
.action-image-wrapper {
  background-color: #ffffff;
}

.action-image {
  display: block;
  width: 100%;
  height: auto;
}

/* Caption */
.action-caption {
  text-align: center;
  padding: 14px 18px 18px;
  font-weight: 600;
  font-size: 1rem;
  color: #111827;
}

/* Responsive tweak */
@media (max-width: 767.98px) {
  .action-title {
    font-size: 1.9rem;
  }
}

/* //blogs */
.insights-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 40px;
  text-align: center;
}

.insights-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 60px;
  position: relative;
  display: block; /* ⬅ change from inline-block to block */
  text-align: center;
}

.carousel-container {
  position: relative;
  padding: 0 60px;
  overflow: hidden;
  min-height: 450px;
  max-height: 1000px;
}

.cards-wrapper {
  display: flex;
  gap: 30px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.insight-card {
  flex: 0 0 calc(33.333% - 20px);
  min-width: calc(33.333% - 20px);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  background: white;
  border: #000;
}

.insight-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 100;
}

.card-content-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-image-container {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insight-card:hover .card-image {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: opacity 0.4s ease;
}

.brand-logo {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-logo::before {
  content: "";
  width: 18px;
  height: 18px;
  background: #000;
  border-radius: 50%;
  display: inline-block;
}

.card-title-overlay {
  color: white;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  text-align: start;
}

.card-info-section {
  padding: 25px 30px;
  background: white;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.card-type {
  color: #666;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.card-description {
  color: #1a1a1a;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

/* Hover State - Expanded Content */
.card-expanded-content {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: white;
  padding: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 10;
  box-shadow: 4px 0 12px rgba(0, 0, 0, 0.1);
}

.insight-card:hover .card-expanded-content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.insight-card:hover .card-overlay {
  opacity: 0;
}

.insight-card:hover .card-info-section {
  opacity: 0;
}

.expanded-type {
  color: #666;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.expanded-title {
  color: #1a1a1a;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

.expanded-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more-link {
  color: #1a1a1a;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border-bottom: 2px solid #1a1a1a;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.read-more-link:hover {
  color: #666;
  border-color: #666;
}

/* Navigation Arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 2px solid #e0e0e0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-nav:hover {
  background: #f5f5f5;
  border-color: #333;
}

.carousel-nav.prev {
  left: 0;
}

.carousel-nav.next {
  right: 0;
}

.carousel-nav svg {
  width: 20px;
  height: 20px;
}

/* Indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.indicator-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d0d0d0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.indicator-dot.active {
  background: #000;
  transform: scale(1.2);
}

/* ===========================
   RESPONSIVE TWEAKS
   =========================== */

/* Large tablets & small laptops */
@media (max-width: 1200px) {
  .insights-section {
    padding: 0 24px;
  }

  .carousel-container {
    padding: 0 40px;
    min-height: 600px;
  }

  .insight-card {
    flex: 0 0 calc(50% - 15px);
    min-width: calc(50% - 15px);
  }

  .card-image-container {
    height: 360px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .insights-title {
    margin-bottom: 40px;
  }

  .carousel-container {
    padding: 0 30px;
    min-height: 550px;
  }

  .card-image-container {
    height: 320px;
  }

  .card-expanded-content {
    padding: 30px;
  }

  .carousel-nav {
    width: 44px;
    height: 44px;
  }

  .carousel-nav.prev {
    left: 5px;
  }

  .carousel-nav.next {
    right: 5px;
  }
}

/* Mobiles */
@media (max-width: 768px) {
  .insights-section {
    padding: 0 16px;
  }

  .insights-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .carousel-container {
    padding: 0 20px;
    min-height: 400px;
  }

  .cards-wrapper {
    gap: 20px;
  }

  .insight-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .card-image-container {
    height: 260px;
  }

  .card-info-section {
    padding: 18px 20px;
  }

  .card-expanded-content {
    padding: 24px 20px;
  }

  .expanded-title {
    font-size: 1.25rem;
  }

  .carousel-nav {
    width: 38px;
    height: 38px;
  }

  .carousel-nav svg {
    width: 16px;
    height: 16px;
  }

  .carousel-indicators {
    margin-top: 24px;
  }
}

/* Small mobiles */
@media (max-width: 480px) {
  .insights-section {
    padding: 0 12px;
  }

  .carousel-container {
    padding: 0 12px;
    min-height: 450px;
  }

  .card-image-container {
    height: 220px;
  }

  .brand-logo {
    top: 12px;
    right: 12px;
    padding: 4px 10px;
    font-size: 0.75rem;
  }

  .card-overlay {
    padding: 18px;
  }

  .card-title-overlay {
    font-size: 1.2rem;
  }

  .card-expanded-content {
    padding: 18px 16px;
  }

  .carousel-nav {
    width: 34px;
    height: 34px;
  }

  .carousel-nav.prev {
    left: 2px;
  }

  .carousel-nav.next {
    right: 2px;
  }
}
/* //client? */
.clients-section {
  /* background-color: #f8f9fa; */
  overflow: hidden;
}

.clients-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.5px;
}

.carousel-wrapper {
  /* max-width: 1200px; */
  margin: 0 auto;
  position: relative;
  padding: 0 100px;
}

/* Strip Container */
.clients-strip {
  background: #ffffff;
  border-radius: 24px;
  padding: 60px 80px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Grid layout */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  align-items: center;
  justify-items: center;
}

/* Individual client card */
.client-card {
  background-color: #f8f9fa;
  width: 100%;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
}

.client-logo {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.client-card:hover .client-logo {
  opacity: 1;
  transform: scale(1.05);
}

/* Placeholder card styling */
.placeholder-card {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border: 2px dashed #cbd5e1;
}

.placeholder-text {
  color: #64748b;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

/* ===== Navigation Arrows ===== */
#clientsCarousel .carousel-control-prev,
#clientsCarousel .carousel-control-next {
  width: 56px;
  height: 56px;
  top: 40%;
  transform: translateY(-50%);
  opacity: 1;
  z-index: 10;
}

#clientsCarousel .carousel-control-prev {
  left: 10px;
}

#clientsCarousel .carousel-control-next {
  right: 10px;
}

.carousel-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  color: #333;
}

.carousel-nav-icon:hover {
  background-color: #f8f9fa;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transform: scale(1.05);
}

.carousel-nav-icon svg {
  display: block;
}

/* Hide default Bootstrap icons */
#clientsCarousel .carousel-control-prev-icon,
#clientsCarousel .carousel-control-next-icon {
  display: none;
}

/* ===== Carousel Indicators (Dots) ===== */
#clientsCarousel .carousel-indicators {
  position: static;
  margin-top: 40px;
  margin-bottom: 0;
}

#clientsCarousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #cbd5e1;
  border: none;
  margin: 0 6px;
  opacity: 1;
  transition: all 0.3s ease;
}

#clientsCarousel .carousel-indicators .active {
  background-color: #0d6efd;
  width: 10px;
}

/* ===== Responsive Design ===== */
/* Tablets - 2 columns */
@media (max-width: 991.98px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .clients-strip {
    padding: 50px 40px;
  }

  .carousel-wrapper {
    padding: 0 80px;
  }

  #clientsCarousel .carousel-control-prev {
    left: 5px;
  }

  #clientsCarousel .carousel-control-next {
    right: 5px;
  }
}

/* Small tablets and mobile - 1 column */
@media (max-width: 767.98px) {
  .clients-title {
    font-size: 2rem;
    margin-bottom: 2rem !important;
  }

  .clients-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .clients-strip {
    padding: 40px 30px;
    border-radius: 20px;
  }

  .client-card {
    min-height: 120px;
    padding: 25px;
  }

  .client-logo {
    max-height: 70px;
  }

  .carousel-wrapper {
    padding: 0 10px;
  }

  .carousel-nav-icon {
    width: 48px;
    height: 48px;
  }

  #clientsCarousel .carousel-control-prev,
  #clientsCarousel .carousel-control-next {
    width: 48px;
    height: 48px;
  }

  #clientsCarousel .carousel-control-prev {
    left: 5px;
  }

  #clientsCarousel .carousel-control-next {
    right: 5px;
  }

  .carousel-nav-icon svg {
    width: 20px;
    height: 20px;
  }
}

/* Extra small mobile */
@media (max-width: 575.98px) {
  .clients-strip {
    padding: 30px 20px;
  }

  .client-card {
    min-height: 110px;
  }

  .carousel-wrapper {
    padding: 0 10px;
  }

  .carousel-nav-icon {
    width: 44px;
    height: 44px;
  }

  #clientsCarousel .carousel-control-prev,
  #clientsCarousel .carousel-control-next {
    width: 44px;
    height: 44px;
  }
}
/* //demo */
/* SECTION BACKGROUND */
.demo-section {
  background-color: #f7f9fc;
}

/* LEFT TEXT */
.demo-title {
  font-size: 2.3rem;
  font-weight: 700;
}

.demo-subtitle {
  max-width: 540px;
  font-size: 1rem;
  color: #6b7280;
}

/* Custom row for contact / demo section */
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem; /* spacing between the two columns */
}

/* CARD STYLE */
.demo-card {
  border-radius: 18px;
}

.demo-card .card-title {
  font-weight: 700;
}

/* FORM CONTROLS */
.demo-card .form-control {
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
}

.demo-card textarea {
  min-height: 160px;
}

/* BIG BLUE BUTTON */
.demo-btn {
  border-radius: 12px;
  font-weight: 600;
  background-color: #1a73ff;
  border-color: #1a73ff;
}

/* RESPONSIVE TEXT ALIGN */
@media (max-width: 991.98px) {
  .demo-title,
  .demo-subtitle {
    text-align: center;
  }

  .demo-subtitle {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
  }
}
/* // digital */
/* ===== Digital Transformation section ===== */

.digital-section {
  background-color: #f7f9fc; /* same light grey as screenshot */
}

.digital-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #111827;
}

.digital-subtitle {
  max-width: 640px;
  margin: 0 auto;
  color: #6b7280;
  font-size: 0.98rem;
}

/* Card look */
.digital-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.digital-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.09);
}

/* Icon */
.digital-icon-wrapper {
  margin-bottom: 18px;
}

.digital-icon {
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

/* Text inside card */
.digital-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111827;
}

.digital-card-text {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 0;
}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .digital-title {
    font-size: 2rem;
  }

  .digital-card {
    padding: 24px 20px;
  }
}
/* //footer? */
/* ===== Footer ===== */

.footer-section.finoit-style {
  background-color: #020b3b; /* dark blue like screenshot */
  border-top: 1px solid #1a2454;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.footer-section.finoit-style .navbar-brand img {
  max-width: 180px;
}

/* Column headings */
.footer-section.finoit-style .footer-heading {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.9rem;
  color: #f9fafb;
}

/* Lists */
.footer-links,
.footer-contact {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.footer-links li + li,
.footer-contact li + li {
  margin-top: 0.35rem;
}

/* Links look like finoit footer */
.footer-section.finoit-style .footer-links a {
  text-decoration: none;
  color: #9ca3af;
  transition: color 0.15s ease;
}

.footer-section.finoit-style .footer-links a:hover {
  color: #ffffff;
}

/* Contact icons & text */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  color: #d1d5db;
}

.footer-section.finoit-style .footer-icon {
  font-size: 1rem;
  color: #38bdf8;
  margin-right: 0.6rem;
  margin-top: 0.18rem;
}

/* Social icons keep your theme but on dark bg */
.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.55);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.social-icon.linkedin {
  background-color: #0a66c2;
}

.social-icon:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.8);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #1f2937;
  background-color: #020b3b;
}

.footer-bottom-text {
  font-size: 0.85rem;
  color: #9ca3af;
}
.footer-section .hr-logo {
  filter: brightness(0) invert(1);
}

/* Responsive */
@media (max-width: 767.98px) {
  .footer-section.finoit-style {
    text-align: left; /* keep like finoit */
  }

  .footer-contact li {
    justify-content: flex-start;
  }
}

.social-wrapper {
  align-items: center;
}

/* Mobile social icon tweaks */
@media (max-width: 576px) {
  .social-wrapper {
    justify-content: flex-start;
  }

  .social-icon.linkedin {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
}
/* //hrapp */
/* ==============================
   HR App Section
============================== */

.hr-app-section {
  background-color: #f9fafb;
}

.hr-app-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
}

/* Phone Preview */
.phone-preview {
  background-color: transparent !important;
  /* padding: 20px; */

  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.phone-image {
  max-width: 260px;
  height: auto;
  display: block;
}

/* Feature boxes */
.feature-box {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 16px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  transition: 0.2s ease;
}

.feature-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.1);
}

.feature-box h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0f172a;
}

.feature-box p {
  margin: 0;
  font-size: 0.9rem;
  color: #6b7280;
}

/* Responsive */
@media (max-width: 767.98px) {
  .hr-app-title {
    font-size: 1.8rem;
  }

  .phone-image {
    max-width: 200px;
  }
}
/* //industries */
/* ===== Industries we Empower ===== */

.industries-section {
  background-color: rgb(251, 249, 249);
}

.industries-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #111827;
}

.industries-subtitle {
  max-width: 460px;
  font-size: 0.98rem;
  color: #6b7280;
}
/* Big combined images inside the panels */
.industries-combined-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

.industries-btn {
  padding: 0.7rem 1.9rem;
  font-weight: 600;
  border-radius: 999px;
}

/* Panels on the right */
.industries-panel {
  background-color: #ffffff;
  border-radius: 22px;
  padding: 22px 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

/* Each small image card */
.industry-card {
  flex: 1 1 21%; /* 4 per row on large screens */
  min-width: 140px;
}

.industry-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

/* Image itself */
.industry-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* Dark gradient at bottom + white label text */
.industry-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.05));
  opacity: 0.85;
}

.industry-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  z-index: 2;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
}

/* Make sure text sits above overlay */
.industry-image-wrapper img,
.industry-label {
  position: relative;
  z-index: 1;
}

/* Hover effect */
.industry-image-wrapper:hover img {
  transform: scale(1.03);
  transition: transform 0.25s ease;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
  .industries-section {
    text-align: center;
  }

  .industries-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .industries-panel {
    margin-top: 12px;
  }

  .industry-card {
    flex: 1 1 45%; /* 2 per row on tablet */
  }
}

@media (max-width: 575.98px) {
  .industry-card {
    flex: 1 1 100%; /* 1 per row on mobile */
  }

  .industry-image {
    height: 190px;
  }
}
/* ??navbar? */
.navbar {
  font-size: 0.95rem;
}

.navbar-brand img {
  width: 180px;
}

.navbar .nav-link {
  font-weight: 500;
}

.dropdown-menu {
  border-radius: 0 0 8px 8px;
}
/* Navbar fixed spacing so content doesn't hide behind it */
body {
  padding-top: 60px; /* adjust if your navbar is taller/shorter */
}

/* Base navbar styles */
.navbar {
  font-size: 0.95rem;
}

/* Base text color */
.navbar-light .navbar-nav .nav-link {
  font-weight: 500;
  color: #111827; /* dark */
  transition: color 0.2s ease;
}

/* Hover / focus / active -> blue */
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link.active {
  color: #0d6efd; /* blue */
}

/* Dropdown items */
.dropdown-item {
  transition: color 0.2s ease, background-color 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #0d6efd;
  background-color: #f3f4ff;
}

@media (max-width: 576px) {
  .navbar-brand img {
    width: 140px !important; /* decrease for mobile */
  }
}
@media (max-width: 768px) {
  .navbar-brand img {
    width: 150px;
  }
}
/* ??platform */
/* ===== Platform / Ecosystem section ===== */

.platform-section {
  background-color: #eef5ff; /* very light blue like screenshot */
}

.platform-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
}

/* Card style */
.platform-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
}

/* Card heading */
.platform-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111827;
}

/* Bullet list */
.platform-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  font-size: 0.95rem;
  color: #4b5563;
}

.platform-list li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 4px;
}

/* Blue dot bullets */
.platform-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #2563eb; /* blue dot */
}

/* Responsive tweak */
@media (max-width: 767.98px) {
  .platform-title {
    font-size: 1.8rem;
  }

  .platform-card {
    padding: 20px 22px;
  }
}
/* //video */
/* ===== Hero video section ===== */

.hero-video-section {
  min-height: 100vh; /* full screen */

  overflow: hidden;
}

/* Full-screen video background */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

/* Dark overlay to make text readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Bring text above video + overlay */
.hero-content {
  position: relative;
  z-index: 2;
}

/* Title and subtitle sizes (like in screenshot) */
.hero-title {
  font-weight: 700;
  font-size: 2.4rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Big rounded blue button */
.hero-btn {
  padding: 0.9rem 2.8rem;
  font-weight: 600;
  border-radius: 999px;
}

/* Bigger title on large screens */
@media (min-width: 992px) {
  .hero-title {
    font-size: 3.2rem;
  }
}
