* {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  padding: 0;
}

body {
  background: #f7f9fc;
  color: #1f2937;
  line-height: 1.6;
}


section.reveal {
  opacity: 0 !important;
  transform: translateY(24px);
  transition: opacity 1.5s ease, transform 1.5s ease;
  will-change: opacity, transform;
}

section.reveal.visible {
  opacity: 1 !important;
  transform: translateY(0);
}


.body-container {
  max-width: 1150px;
  margin: auto;
  padding: 60px 20px;
}

/* 
.hero {
  background: radial-gradient(circle at top left, #1e293b, #020617);
  color: #fff;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
*/
.hero {
  position: relative;
  background: 
    linear-gradient(
      rgba(2, 6, 23, 0.6),
      rgba(2, 6, 23, 0.6)
    ),
    url("../images/hero-bg.jpg") center/cover no-repeat;
  color: #ffffff;
  padding: 100px 0 100px 0px;
  transition: background-size 0.8s ease;
  background-size: 100%;
}

.hero:hover {
  background-size: 105%;
}

.hero-text {
  max-width: 1100px; /* much wider */
  text-align: left;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: #93c5fd;
  margin-bottom: 12px;
  display: block;
}

.hero h1 {
  font-size: 34px;      /* smaller */
  line-height: 1.25;
  margin-bottom: 16px;
  font-weight: 600;
  //white-space: nowrap; /* force single line */
}

.hero-sub {
  font-size: 16px;
  color: #e5e7eb;
  margin-bottom: 10px;
  line-height: 1.5;
  max-width:800px;
}

.hero-support {
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 24px;
}






.platform-for {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  color: #2563eb;
  font-weight: 500;
}

.services {
  background: #f8fafc;
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.services-header p {
  margin-top: 10px;
  font-size: 17px;
  color: #475569;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}


.service-card {
  background: white;
  padding: 35px 30px;
  border-radius: 14px;
  border-left: 6px solid #dbe2f0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.06);
}

.service-card .service-for {
  margin-top: auto; /* pushes CTA to bottom */
  padding-top: 12px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #0f172a;
}

.service-desc {
  font-size: 15px;
  color: #475569;
  margin-bottom: 14px;
  line-height: 1.6;
}

.service-for {
  font-size: 13px;
  color: #64748b;
}

.services-cta {
  text-align: center;
  margin-top: 40px;
}
.services-cta a {
  background: transparent;
  border: 1px solid #2563eb;
  color: #2563eb;
}

.services-cta a:hover {
  background: #2563eb;
  color: white;
}


.cta {
  margin-top: 30px;
}

.btn {
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #ff7a3c, #ffb347);
  color: #122135;
  //box-shadow: 0 10px 28px rgba(255, 122, 60, 0.45);
}

.btn-ghost {
  background: white;
  color: #11223b;
  border: 1px solid #dde2ee;
}


.outline {
  border: 1px solid #2563eb;
  color: #2563eb;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.card h2 {
  margin-bottom: 15px;
}

.card ul {
  margin: 20px 0;
  padding-left: 20px;
}

.why {
  background: #eef2ff;
}

.case-studies {
  background: #ffffff;
}

.case-header {
  text-align: center;
  max-width: 750px;
  margin: auto;
}

.case-header p {
  margin-top: 10px;
  font-size: 17px;
  color: #475569;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.case-card {
  background: #f8fafc;
  padding: 35px 30px;
  border-radius: 14px;
  border-left: 6px solid #dbe2f0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.case-card .platform-for {
  margin-top: auto; /* pushes CTA to bottom */
  padding-top: 12px;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.06);
}

.case-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #0f172a;
  line-height: 1.4;
}

.case-desc {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

.case-cta {
  text-align: center;
  margin-top: 40px;
}

.case-cta a {
  background: transparent;
  border: 1px solid #2563eb;
  color: #2563eb;
}

.case-cta a:hover {
  background: #2563eb;
  color: white;
}


.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.why-card, .use-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.04);
}

.final-cta {
  background: #2563eb;
  color: white;
  text-align: center;
}

.why {
  background: #f1f5ff;
}

.why-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.why-header p {
  margin-top: 10px;
  color: #475569;
  font-size: 17px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.why-item {
  background: white;
  padding: 35px 30px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-left: 6px solid #dbe2f0;
}

.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.08);
}

.why-icon {
  font-size: 32px;
  display: inline-block;
  margin-bottom: 15px;
}

.why-item h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #0f172a;
}

.why-item p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}
.platforms {
  background: #ffffff;
}

.platforms-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.platforms-header p {
  margin-top: 10px;
  font-size: 17px;
  color: #475569;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.platform-card {
  background: #f8fafc;
  padding: 35px 30px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.platform-card .platform-for {
  margin-top: auto; 
  padding-top: 12px;
}

.platform-card:hover {
  text-decoration: none;
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.06);
}

.platform-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #0f172a;
}

.platforms-cta {
  text-align: center;
  margin-top: 40px;
}
.platforms-cta a {
  background: transparent;
  border: 1px solid #2563eb;
  color: #2563eb;
}

.platforms-cta a:hover {
  background: #2563eb;
  color: white;
}

.platforms {
  background: linear-gradient(180deg, #f1f5ff, #ffffff);
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.platform-card {
  position: relative;
  border-left: 6px solid #dbe2f0;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.platform-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 4px;
  //background: #2563eb;
  border-radius: 4px 0 0 4px;
}

.platform-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 8px;
}




.platform-tagline {
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 10px;
}

.platform-desc {
  font-size: 15px;
  color: #475569;
  margin-bottom: 14px;
  line-height: 1.6;
}

.platform-for {
  font-size: 13px;
  color: #64748b;
}

.how-we-help {
  background: #f1f5ff;
}

.help-header {
  text-align: center;
  max-width: 750px;
  margin: auto;
}

.help-header p {
  margin-top: 10px;
  font-size: 17px;
  color: #475569;
}

.help-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.help-card {
  background: #ffffff;
  padding: 32px 36px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.help-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

.help-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0f172a;
}

.help-card p {
  font-size: 15px;
  color: #475569;
  margin-bottom: 12px;
  line-height: 1.6;
}

.help-outcome {
  font-size: 14px;
  font-weight: 500;
  color: #16a34a;
}

.blogs {
  background: #f8fafc;
}

.blogs-header {
  text-align: center;
  max-width: 750px;
  margin: auto;
}

.blogs-header p {
  margin-top: 10px;
  font-size: 17px;
  color: #475569;
}

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 50px;
}

.blog-card {
  background: #ffffff;
  padding: 26px 24px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  color: inherit;
  display: block;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card .platform-for {
  margin-top: auto; /* pushes CTA to bottom */
  padding-top: 12px;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.06);
}
.blogs-cta {
  text-align: center;
  margin-top: 40px;
}
.blogs-cta a {
  background: transparent;
  border: 1px solid #2563eb;
  color: #2563eb;
}

.blogs-cta a:hover {
  background: #2563eb;
  color: white;
}

.blog-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #0f172a;
}

.blog-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

.trust {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
  gap: 20px;
  padding: 40px 20px;
}

.trust-grid strong {
  font-size: 24px;
  color: #0f172a;
  display: block;
}

.trust-grid span {
  font-size: 14px;
  color: #64748b;
}

.contact-cta {  
  background: linear-gradient(to right, #ffdd00, #f36f22);
  color: white;
  padding: 20px 20px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  align-items: center;    /* center horizontally */
  text-align: center;     /* center text */
  gap: 28px;
}

.contact-actions {
  display: flex;
  gap: 20px;
  justify-content: center; /* center buttons */
}


.contact-text h2 {
  font-size: 36px;
  margin-bottom: 12px;
  font-weight: 600;
}

.contact-text p {
  font-size: 17px;
  color: #fff;
  max-width: 615px;
}

.contact-actions .btn.primary {
  background: #2563eb;
  color: white;
  padding : 8px 40px;
}

.contact-actions .btn.secondary {
  border: 1px solid #2563eb;
  color: #2563eb;
  padding : 8px 40px;
}

.btn.primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
}

.btn.secondary:hover {
  background: #2563eb;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.25);
}

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f172a;
  color: #fff;
  padding: 24px 32px;
  font-size: 16px;
  z-index: 9999;
  box-shadow: 0 -6px 18px rgba(0,0,0,0.08);
  border-top: 1px solid #e5e7eb;

  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.4s ease;
}

.cookie-bar.show {
  transform: translateY(0);
  opacity: 1;
}


.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-text{
    max-width:700px;
	font-size: 12px;
    line-height: 1.8;
}

.cookie-text a {
  color: #93c5fd;
}

.cookie-buttons button {
  padding: 8px 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  background: #2563eb;
  color: #fff;
}

.cookie-buttons .secondary {
  background: #475569;
}

.cookie-preferences {
  display: none;
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 12px;
}

.cookie-preferences label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
}

.cookie-preferences button {
  margin-top: 8px;
  background: #22c55e;
  color: #022c22;
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}



/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-actions {
    justify-content: center;
  }
}


/* Tablet */
@media (max-width: 1024px) {
  .case-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .case-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blogs-grid {
    grid-template-columns: 1fr;
  }
}


/* Responsive */
@media (max-width: 900px) {
  .help-cards {
    grid-template-columns: 1fr;
  }
  
  .hero{
	  background:linear-gradient(135deg, #1e293b, #020617);
	  
  }
  .btn {
	margin: 5px 5px;
  }
}
@media (max-width: 1200px) {
  .hero h1 {
    white-space: normal; /* allow wrap when needed */
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero-sub {
    font-size: 15px;
  }
}

