:root {
      --primary: #2D60FF;
      --accent: #00D8A6;
      --bg: #F5F8FF;
      --bg-dark: #04121f;
      --text: #04121f; 
    }
/******************/
/* Header */
/****************************/
.logo {
  height: 6.8rem;
}
/******************/
/* Nav Section */
/****************************/
.main-nav-list {
  list-style: none;
  display: flex;
  gap: 4.8rem;
}
.nav-pad{
 padding-top:20px;
}
.main-nav-link{
  text-decoration: none;
  color: #04121f;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 1px;
  bottom: 0;
  left: 0;
  top:19px;
  background-color: #00D8A6; /* Accent color */
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
  padding-top:2px;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 4.4rem;
  border-radius: 4px;
  font-weight: 400;
  color: #fff;
  background-color: #1A4EFF;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  padding: 1.2rem 4.4rem;
  border-radius: 4px;
  font-weight: 400;
  color: #ffffff;
  background-color: #2D60FF;
  text-decoration:none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.nav-link:hover {
  color: #1461a5;
}

/* Dropdown arrow */
.arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* Rotate arrow on hover */
.nav-item:hover .arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 62px;
  left: 20;
  background: #F5F8FF;
  padding: 30px 0;
  min-width: 250px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12),
              0 4px 6px rgba(0, 0, 0, 0.08);
  z-index: 99;
  list-style-type: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #04121f;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  position: relative;
}
.dropdown-menu a:hover {
  color: #1461a5;
}
.dropdown-menu a::after {
  content: "→"; /* Unicode right arrow */
  position: absolute;
  right: 20px;
  opacity: 0;
  transform: translateX(-5px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  color: #00D8A6; /* Accent green */
  font-size: 14px;
}

.dropdown-menu a:hover::after {
  opacity: 1;
  transform: translateX(0);
}
/* Show dropdown on hover */
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

    .nav-item:hover .dropdown-menu {
      display: block;
    }

    
/******************/
/* Mobile Nav Section */
/****************************/
    /* Hamburger button */
    .btn-mobile-nav {
      width: 30px;
      height: 22px;
      position: relative;
      cursor: pointer;
      display: none;
    }

    .btn-mobile-nav span {
      position: absolute;
      height: 3px;
      width: 100%;
      background: #000000;
      border-radius: 2px;
      left: 0;
      transition: all 0.3s ease;
    }

    .btn-mobile-nav span:nth-child(1) { top: 0; }
    .btn-mobile-nav span:nth-child(2) { top: 9px; }
    .btn-mobile-nav span:nth-child(3) { top: 18px; }

    /* When active → turn into X */
    .btn-mobile-nav.active span:nth-child(1) {
      transform: rotate(45deg);
      top: 9px;
    }
    .btn-mobile-nav.active span:nth-child(2) {
      opacity: 0;
    }
    .btn-mobile-nav.active span:nth-child(3) {
      transform: rotate(-45deg);
      top: 9px;
    }
/******************/
/* Sticky Nav Section */
/****************************/

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  z-index: 999;
  background-color: rgb(255, 255, 255, 0.97);
  box-shadow: 0 1rem 3.2rem rgba(95, 98, 103, 0.5);
}
/* Vertical Sticky Button */
.vertical-sticky-contact {
  position: fixed;
  top: 80%;
  right: 0;
  transform: rotate(-90deg) translateY(-50%);
  transform-origin: right center;
  background-color: #2D60FF;
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: normal;
  text-decoration: none;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 9999;
  cursor: pointer;
}

/* Slide-Out Form Container */
.contact-slideout {
  position: fixed;
  top: 0;
  right: -400px;
  width: 350px;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.2);
  transition: right 0.4s ease-in-out;
  z-index: 9998;
}

/* Open State */
.contact-slideout.openform {
  right: 0;
}

/* Form Content */
.contact-content {
  padding: 30px 20px;
}

.contact-content h3 {
  margin-top: 0;
  margin-bottom:4rem;
  color: #2D60FF;
  font-weight:400;
  font-size: 3.6rem;
}

.contact-content label {
  display: block;
  margin: 15px 0 5px;
  text-align:left;
  font-size:1.6rem;
  color: #06131f;
  font-weight:400;
}

.contact-content input,
.contact-content textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1.1rem;
  font-style: italic;
  font-size: 200;
  color: #6C7383;
  margin:0px 0px 6px 0px;
}

.contact-content button {
  background-color: #2D60FF;
  color: white;
  border: none;
  padding: 12px;
  margin-top: 15px;
  width: 100%;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
}

.contact-content button:hover {
  background-color: #1a4eff;
}
.consent-box{
  display: flex;
  flex-direction: row;
  gap:6px;
  justify-content: flex-start; /* align items to the left */
  margin-top:10px;

}
.consent-box input{
  width:30px;
  height:30px;
}
.consent-box  .consent-text{
  text-align:left;
  font-size:1.1rem;
  color: #04121f;
  font-weight:200;
  line-height:100%;
  margin:7px 4px 0px 10px;
}
/* Close Button */
.close-btn {
  font-size: 26px;
  color: #999;
  position: absolute;
  right: 20px;
  top: 15px;
  cursor: pointer;
}
/******************/
/* Carousel */
/****************************/
 .carousel {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }
    .carousel-headline{
      color: #ffffff;
      text-align: left;
    }
    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: left;
      background-size: cover;
      background-position: center;
      opacity: 1;
      transition: opacity 0.8s ease-in-out;
    }
    /*
    .slide.active {
      opacity: 1;
      z-index: 1;
    }
*/
    .gif-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 0.1; /* Control how prominent the gif looks */
      pointer-events: none;
    }
    .slide-content {
      display:flex;
      flex-direction: column;
      justify-content: flex-start; /* align items to the left */
      align-items: flex-start;     /* align them to the top (if heights differ) */
      gap: 12px;         
      padding: 20px 20px 20px 0px;
      text-align: left;
      color: #fff;
      max-width: 60rem;
      margin:0 20rem;
      
    }
    .slide-content h1{
      color: #ffffff;
      font-weight: 600;
    }
    .gradient-text {
    background: linear-gradient(90deg, #1A4EFF, #00D8A6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
  }
    .slide-description {
      font-size: 1.8rem;
      line-height: 1.6;
      margin-bottom: 4.2rem;
      color: #ffffff;
    }
    .typewriter  {
      overflow: hidden;              /* Hide overflowing text */
      border-right: 2px solid #fff; /* The blinking cursor */
      white-space: nowrap;          /* Keep text in one line */
      margin: 0 auto;
      letter-spacing: 0.1em;
      animation:
      typing 3s steps(30, end),
      blink-caret 0.75s step-end infinite;
   }

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: white }
}


.home-btns{
  display:flex;
  flex-direction: row;
  justify-content: flex-start; /* Align items horizontally to the left */
  align-items: flex-start;
  gap: 26px; 
  text-align: left;
}
/******************/
/* Hero Section */
/****************************/
.section-hero {
  background-color: #F5F8FF;
  padding: 10.8rem 0;
  text-align:center;
}
.hero-copy {
  color:#5a5758;
  margin: 0 1.4rem 2.4rem;
}
.hero-headline {
  color: #0b2741;
}
/* Hero-Box*/
.why-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
}

.why-box {
  flex: 1 1 calc(50% - 20px);     /* 2 boxes per row with space */
  background-color: #fafbfc;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.why-box:hover {
  transform: translateY(-4px);
}

.box-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.box-header h3 {
  margin: 0;
  color: #04121f;
}
/* Divider line */
.divider {
  border: none;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1); /* Low opacity line */
  margin: 12px 0;
}

/* Paragraph styling */
.icon {
      width: 60px;
      height: 60px;
      color: #00D8A6;
      background: #f3f3f3;
      border-radius: 30%;
      padding:6px 8px;
}
/********************/
/*What makes Lantez DIfferent*/
/**********************/
.section-sec-hero{
  background-color: #04121f;
  padding: 10.8rem 0;
  text-align:center;
}
.section-sec-hero .section {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 60px 10%;
      gap: 40px;
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s ease;
      text-align:center;
    }

    .section-sec-hero .section.show {
      opacity: 1;
      transform: translateY(0);
    }

    .section-sec-hero .section:nth-child(even) {
      flex-direction: row-reverse;
    }

    .section-sec-hero .section img {
      width: 100%;
      max-width: 400px;
      border-radius: 6px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
      transition: transform 0.6s ease;
      
    }

   .section-sec-hero .section img:hover {
      transform: scale(1.05);
    }

    .section-sec-hero .content {
      flex: 1;
    }
    .section-sec-hero .sec-hero-headline{
      color:#ffffff;
    }
    .section-sec-hero .sec-hero-copy{
      color:#ffffff;
    }
    .section-sec-hero .content h2 {
      font-size: 3rem;
      margin-bottom: 15px;
      color: #04121f;
      line-height:1.4;
    }

    .section-sec-hero .content p {
      font-size: 1.6rem;
      line-height: 1.6;
      color: #04121f;
      font-weight:400;
    }
    .lft{
      text-align:left;
    }
    .rght{
      text-align:right;
    }
    .sec1, .sec3{
      background-image: linear-gradient(to right, #F5F8FF, #c8c8cb);
      opacity:0.2;
      border-radius: 5px;
    }
    .sec2, .sec4{
      background-color: #fff;
      opacity:0.2;
      border-radius: 5px;
    }
/******************/
/* industries */
/****************************/
.industries {
  padding: 9.6rem 0;
  text-align: center;

}
.industry {
  border-radius: 11px;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  overflow: hidden;
  transition: all 0.4s;
}
.industry:hover {
  transform: translateY(-1rem);
  box-shadow: 0 3.4rem 6.4rem rgba(0, 0, 0, 0.06);
}
.industry-content {
  padding: 3.2rem 4.8rem 4.8rem;
}
.industries-headline {
  color: #04121f;
}
.industry-img {
  width: 20%;
  margin-top: 40px;
  text-align: left;

}
.industry-title {
  margin-bottom: 2.4rem;
  text-align:center;
}
.industry-attributes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  text-align: left;
}
.industry-attribute-li {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 1.6rem;
}
.li-icon {
      width: 20px;
      height: 20px;
      color: #333;
}


/******************/
/* GET STARTED */
/****************************/

.get-started {
  background-color:#020921;
  width:100%;
  height:600px;
}
.overlay{
  position: relative;
  height:50px;
  width:100%;
}
.get-started-text-box{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: center;
  gap:2rem;
  padding: 6.6rem 0;
  opacity: 1;
}
.get-started-description {
  color:#ffffff;
  opacity: 1;
}
.get-started-headline {
  text-align:center;
  color: #ffffff;
}
.get-started-btn{
  width:240px;
  margin:0 auto;
  color:#ffffff;
  background-color:#2D60FF;
  transition: all 0.3s;
  height: 68px;
}
 
.get-started-gif-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
      opacity: 1; /* Control how prominent the gif looks */
      pointer-events: none;
}
/******************/
/* SERVICES */
/****************************/

.services-healine-bg{
  background:linear-gradient(to right, #04121f, #07216f);
  padding: 14rem 0 9.6rem 0;
  margin-bottom:6.4rem;
}
.services-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px;
  flex-wrap: wrap;
   align-items: start;
}
.services-healine-bg .content {
  display:flex;
  flex-direction:column;
  gap: 0px;
  justify-content: center;
  align-items: center;
}
.services-headline{
  text-align:center;
  color: #d6dbe6;
}
.services-description {
  color:#d6dbe6;
  margin: 0 9.6rem 4.4rem;
}
.service-box {
  border-radius: 11px;
  border:1px solid #ddd;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);
  overflow: hidden;
  transition: all 0.4s;
  position: relative;
  padding: 1.2rem 1.2rem;
  text-align:center;
  margin:40px 0;
  
}
.service-box:hover {
  transform: translateY(-1rem);
  box-shadow: 0 3.4rem 6.4rem rgba(0, 0, 0, 0.06);
}

.service-box-description{
  font-size: 1.6rem;
  line-height: 1.6;
  color: #04121f;
  font-weight:300;
  vertical-align: middle;
  justify-content: center;
}
.section-how {
  text-align: center;
  background-color: #F5F8FF;
}
.services-pad{
  padding: 9.6rem 0;
}
.step-img-box-1 img{
  width:100%;
  height: auto;
  align-self: start;
  border-radius:4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.step-img-box-2 img{
  width:100%;
  height: auto;
  align-self: start;
  border-radius:4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.step-img-box-3 img{
  width:100%;
  height: auto;
  align-self: start;
  border-radius:4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.step-img {
  width: 100%;
}
.slide-img {
  
  opacity: 0;
  transform: translateX(100px); /* or -100px for left */
  transition: all 0.9s ease-out;
}
/* Active state when visible */
.slide-img.show {
  opacity: 1;
  transform: translateX(0);
}
.step-number {
  font-size: 8.6rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  background: linear-gradient(90deg, #2D60FF, #7D23FE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-top:0;
}
.step-description {
  margin-bottom: 4.2rem;
  padding-right:20px;
}
.step-headline{
  color: #04121f;
  position: relative;
  display: inline-block;
}
/* underline (hidden initially) */
.step-headline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 6px;
   background-image: linear-gradient(to right, #2D60FF, #7D23FE, #00D8A6);
  transition: width 0.6s ease;
}

/* active state when in view */
.step-headline.underline::after {
  width: 100%;
}
.step-attributes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  text-align: left;
}
.step-attribute-li {
  display: flex;
  align-items: left;
  flex-direction: row;
  gap: 1.6rem;
  text-align:left;
  color: #04121f;
}
table{
  border: 1px solid #ddd;
}
th,td{
  padding:20px 10px;
}
.check-list {
  list-style: none; /* Remove default bullets */
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  line-height:1.6;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight:300;
}

.check-list li::before {
  content: '✔'; /* Check mark */
  position: absolute;
  left: 0;
  color: #2D60FF; /* Accent color */
  font-weight: bold;
}
.ready-copy{
  margin-bottom: 4.2rem;
  color: #04121f; 
}
/**********************/
/*****RESOURCES*******/
/*********************/

.resource-box {
  flex: 1 1 calc(50% - 20px);     /* 2 boxes per row with space */
  background-color: #f7fbfc;
  color: #2A2A2A;
  padding: 70px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  margin-bottom:6rem;
}

.resource-box:hover {
  transform: translateY(-4px);
}
.resource-box{
  display:flex;
  flex-direction: row;
  gap:40px;
  border:4px solid #e8def5;
;
}

.check-list-cross li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  line-height:1.6;
  font-size: 1.4rem;
  line-height: 1.6;
  font-weight:300;
}

.check-list-cross li::before {
  content: 'x'; /* cross mark */
  position: absolute;
  left: 0;
  color: #a20714; /* Accent color */
  font-weight: bold;
}
.left-algn{
  text-align:left;
  padding:1.6rem 0;
}
/******************/
/* COMPANY */
/****************************/
.comp-sub{
  text-align:center;
}
.comp-description{
  text-align:center;
  color:#fff;
}
.mission{
  background: #fff;
  padding: 60px 20px;
}
.mission-r{
  width:80%;
  height: auto;
}
.mission-r img{
  width:100%;
  height: auto;
}
.origin{
   background:linear-gradient(to left, #2D60FF, #000925);
  color: #fff;
  padding: 60px 20px;
}
.sub-origin{
  background: #f0f2f3;
  border-radius: 4px;
  padding: 6.4rem 2rem 0rem;
  text-align:center;
}
.origin-l img{
  width: 80%;
  height: auto;
  text-align:center;
}
.origin-r{
  text-align:center;
  padding:0 4.2rem 2.2rem;
}
.team{
  padding:9.6rem 0 4.8rem;;
}
.team-head h2{
  margin:0 auto;
  text-align:center;
}
.team-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
}

.team-box {
  flex: 1 1 calc(50% - 20px);     /* 2 boxes per row with space */
  background-color: #fafbfc;
  color: #2A2A2A;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  border:1px solid #eee;
}

.team-box:hover {
  transform: translateY(-4px);
}
.team-box img{
  width:86%;
  height:auto;

}
.team-p{
  color: #04121f;
}
.box-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

/* Divider line */
.divider {
  border: none;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1); /* Low opacity line */
  margin: 12px 0;
}

/* Paragraph styling */
.team-box p {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight:300;
  color: #04121f;
  text-align:left;
}
/******************/
/* CTA */
/****************************/
.section-cta {
  padding: 9.6rem 0 9.6rem;
  background:linear-gradient(to left, #2D60FF, #000925);
}
.cta {
  display: grid;
  grid-template-columns: 2fr 1fr;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.12);
  border-radius: 11px;
  background-image: linear-gradient(to right bottom, #fafbfc, #F5F8FF);
  overflow: hidden;
}
.cta-img-box {
  background-image: linear-gradient(
      to right bottom,
      rgba(232, 239, 255, 0.3),
      rgba(135, 135, 138, 0.4)
    ),
    url("../img/digital-transformation.png");
  background-size: cover;
  background-position: center;
}
.cta-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  color: #04121f;
}
.cta .heading-secondary {
  color: #04121f;
  margin-bottom: 3.2rem;
  line-height: 1.2;
}
.cta-text {
  color: #04121f;
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 4.8rem;
  font-weight:300;
}
/*Form*/
.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 2.4rem;
  column-gap: 3.2rem;
}
.cta-form label {
  display: block;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 500;
  font-family: inherit;
}
.cta-form input,
.cta-form select {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  border-radius: 7px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  font-family: inherit;
  border: 1px solid #eee;
  background-color: #fff;
  color: inherit;
}
.cta-form input::placeholder {
  color: #aaa;
}
.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(229, 237, 245, 0.5);
}
.cta-form-btn{
  width:300px;
  margin:20px auto 0px auto;
  color:#ffffff;
  background-color:#2D60FF;
  transition: all 0.3s;
  height: 60px;
}
.thank-you{
  display:none; 
  margin-top: 10px; 
  color: #50c032;
  font-size: 2.4rem;
  font-weight: 500;
}

/******************/
/* PRODUCT */
/****************************/
  .products{
  background:#d4e3f3;
  
  text-align:center;
}
.products-healine-bg{
  background:linear-gradient(to right, #04121f, #07216f);
  padding: 14rem 0 9.6rem 0;
  margin-bottom:6.4rem;
}
.product-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px;
  flex-wrap: wrap;
}
.products-healine-bg .content {
  display:flex;
  flex-direction:column;
  gap: 0px;
  justify-content: center;
  align-items: center;
}
.product-headline{
  text-align:center;
  color: #d6dbe6;
}
.product-description {
  color:#d6dbe6;
  margin: 0 9.6rem 4.4rem;
}
.product-box {
  flex: 1 1 calc(50% - 20px);     /* 2 boxes per row with space */
  background-color: #f7fbfc;
  color: #2A2A2A;
  padding: 70px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  margin-bottom:6rem;
}

.product-box:hover {
  transform: translateY(-4px);
}
.product-box{
  display:flex;
  flex-direction: row;
  gap:40px;
  border:10px solid #b6c7fa;
}
.prod-learn{
  color: #07216f;
  text-decoration:underline;
}
.prod-learn:hover{
   color: #19358c;
  transition: width 0.6s ease;
  font-weight:500;
}
.slide-up {
  opacity: 0;
  transform: translateY(50px); /* start slightly below */
  transition: all 0.8s ease-in-out;
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0); /* slides upward into place */
}
.product-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.prod-header h3 {
  color: #04121f;
  padding:2.2rem 0 0;
  text-align:left;
  margin-bottom:0;
}
/* Divider line */
.divider {
  border: none;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1); /* Low opacity line */
  margin: 12px 0;
}
.prod-img4{
  background-image:url('../img/products/soar-platform-img.png');
  height:500px;
  width:95%;
  background-size:cover;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}
.prod-img2{
  background-image:url('../img/products/siem-platform-img.png');
  height:500px;
  width:95%;
  background-size:cover;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}
.prod-img1{
  width:60%;
  margin:0 auto;
}
.prod-img1 img{
  height:auto;
  width:100%;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}
.prod-img2{
  width:60%;
  margin:0 auto;
}
.prod-img2 img{
  height:auto;
  width:100%;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}
.prod-img3{
  width:60%;
  margin:0 auto;
}
.prod-img3 img{
  height:auto;
  width:100%;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}
.prod-img4{
  width:60%;
  margin:0 auto;
}
.prod-img4 img{
  height:auto;
  width:100%;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}
.prod-img5{
  width:60%;
  margin:0 auto;
}
.prod-img5 img{
  height:auto;
  width:100%;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}
/* Paragraph styling */
.product-box p {
  margin: 2.2rem 0;
  line-height: 1.6;
  color: #04121f;
  text-align:left;
  font-weight:300;
}
.icon {
      width: 60px;
      height: 60px;
      color: #00D8A6;
      background: #f3f3f3;
      border-radius: 30%;
      padding:6px 8px;
}

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

    .card {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
      padding: 24px;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
    }

    .card:hover {
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
      transform: translateY(-5px);
    }

    .card h2 {
      font-size: 1.6rem;
      color: var(--primary);
      margin-bottom: 10px;
    }

    .card p {
      font-size: 0.95rem;
      margin-bottom: 12px;
      color: #555;
    }

    .features {
      list-style: disc;
      padding-left: 20px;
      font-size: 0.92rem;
      margin-bottom: 10px;
    }

    .benefit {
      color: var(--accent);
      font-weight: 600;
      font-size: 0.95rem;
    }

    @media (max-width: 768px) {
      .section h1 {
        font-size: 2rem;
      }
    }
  .sub-products-healine-bg{
  background:linear-gradient(to right, #04121f, #07216f);
  padding: 5.6rem 0 5.6rem 0;
  text-align:center;
} 
.sub-products-healine-bg .content{
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
} 
.sub-products-healine-bg .content .product-img{
  margin-top:4.2rem;
  width:70%;
  height:90%;
  border-radius:4px;
} 
.product-img img, .image-box img{
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.product-healine-bg{
  background:#F5F8FF;
  padding: 9.6rem 0;
}
.product-content{
  background:#F5F8FF;
  padding: 2.6rem 0;
  display:flex;
  flex-direction: column;
}
.product-img img{
  width:100%;
  height:auto;
  border-radius:4px;
  box-shadow: 0 6px 20px rgba(45, 96, 255, 0.3);
}

.product-feature{
  padding:6.4rem 0;
  background:#F5F8FF;
  color: #04121f;
}
.left, .right {
      flex: 1;
      padding: 40px 20px;
      box-sizing: border-box;
    }

    h2 {
      margin-bottom: 24px;
      color: #fff;
    }

    .accordion-item {
      width: 100%;
      border-radius: 4px;
      margin-bottom: 12px;
      overflow: hidden;
      border-bottom:1px solid #bbb;
      transition: all 0.3s ease;
    }

    .accordion-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 20px;
      font-weight: 400;
      cursor: pointer;
      font-size: 1.6rem;
      line-height:1.6;
    }
    .serv-accordion-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 20px;
      font-weight: 400;
      cursor: pointer;
      font-size: 1.6rem;
      line-height:1.6;
    }

    .accordion-symbol {
      font-size: 20px;
      transition: transform 0.3s ease;
    }

    .accordion-body {
      padding: 20px 20px;
      display: none;
      font-size: 1.6rem;
      line-height:1.6;
      font-weight:200;
      transition: max-height 0.4s ease, padding 0.3s ease;
    }

    .accordion-item.ac-active .accordion-body {
      display: block;
      padding: 16px 20px 30px 20px;
      max-height: 600px;

    }

    .accordion-item.ac-active .accordion-symbol {
      transform: rotate(45deg); /* "+" becomes "×" visually */
    }

    .right {
      display: grid;
      grid-template-columns: 1fr;
    }

    .image-box {
      background-color: #F5F8FF;
      width:100%;
    }
    .image-box img{
      width:100%;
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }
    @media (max-width: 900px) {
      body {
        flex-direction: column;
      }

      .right {
        grid-template-columns: 1fr;
      }
    }
    .product-lets-talk{
      background:linear-gradient(to right, #04121f, #07216f);
      color: #fff;
      padding: 60px 20px;
    }
    .prod-lets-talk{
      background: #F5F8FF;
      padding: 6.4rem 2rem;
      border-radius:20px;
      text-align:center;
      box-shadow: inset 0 2px 4px rgba(0,0,0,0.4);
    }
/******************/
/* FOOTER */
/****************************/
.footer {
  padding: 12.8rem 0;
  border-top: 1px solid #eee;
  background-color: #f0f3f2;
  box-shadow: 0 1rem 3.2rem rgba(95, 98, 103, 0.5);
}
.grid--footer {
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
}
.logo-col {
  display: flex;
  flex-direction: column;
}
.footer-heading{
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 4rem;
  
}
.footer-heading a{
  font-size: 1.8rem;
  font-weight: 600;
  text-decoration: none;
  color: #04121f;
  transition: all 0.3s;
}
.footer-heading a:hover, .footer-heading a:active{
   color: #1461a5;
}
.footer-logo {
  display: block;
  margin-bottom: 2.4rem;
}
.social-links {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 2.4rem;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
  color: #04121f;
}
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.copyright {
  text-align: bottom;
  color: #04121f;
  margin-top: auto;
}
.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  color: #04121f;
  transition: all 0.3s;
}
.footer-link:hover,
.footer-link:active {
  color: #1461a5;
  font-weight:500;
}
.contacts {
  font-size: 1.4rem;
  color: #04121f;
  line-height: 1.6;
  font-style: normal;
}
.address {
  margin-bottom: 2.4rem;
}
/*******CAREERS*******/
.career{

  position: relative;
  width: 100%;
  background: linear-gradient(
      rgba(255, 255, 255, 0.8), 
      rgba(255, 255, 255, 0.5)
    ),
url('../img/team.png');
  background-size:cover;
  width:100%;
  height:500px;
}
.career-text-box{
  padding:12.6rem 4.4rem;
}
.career-header {
      background: #F5F8FF;
      padding: 9.6rem 4.4rem;
      text-align: center;
    }

    .career-header h1 {
      font-size: 3rem;
      color:#04121f;
      margin-bottom: 10px;
    }

    .career-header p {
      font-size: 1.2rem;
      color:#04121f;
    }

    .career{
      margin: 0;
      background-color:#F5F8FF;
      text-align:center;
    }
  .career-sub-headline{
    text-align:center;
  }
  .career-description {
    font-size: 2.4rem;
    line-height: 1.6;
    font-weight:300;
    color:var(--text);
    margin: 0 2.2rem 4.2rem;
  }
 .career-headline {
    text-align:center;
    margin-bottom: 2.2rem;
    color:#04121f;
 }
    .benefits {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .benefit {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
    }

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

    .benefit h3 {
      color:#04121f;
      margin: 2rem 2rem 2.2rem;
      font-size: 2.4rem;
      font-weight:300;
      line-height:1.4;
    }
    .benefit p {
      color:#04121f;
      margin-bottom: 8px;
      font-size: 1.4rem;
      font-weight:300;
      line-height:1.6;
    } 
    .jobs {
      margin-top: 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .job {
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    }

    .job h4 {
      margin: 10px 0 8px;
      font-size: 3.2rem;
       color:#04121f;;
      font-weight:300;
    }

    .job p {
      font-size: 1.6rem;
      color:#04121f;
      font-weight:300;
      margin:3.4rem 1rem 2rem;
    }

    .job button {
      margin: 0px 2.2rem 2.4rem;
      padding: 8px 20px;
      background: #2D60FF;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }
    .job button:hover {
      background: #1A4EFF;
    }

    .apply-section {
      text-align: center;
      margin: 9.4rem 0;
    }
    .careerForm {
      background: #fff;
      max-width: 600px;
      margin: 0 auto;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    }
    form input, form textarea {
      width: 100%;
      padding: 10px;
      margin: 10px 0;
      font-size: 1.6rem;
      font-weight: 1.6;
      border: 1px solid #ccc;
      border-radius: 6px;
    }
    form button {
      padding: 10px 20px;
      background:  #04121f;;
      color: white;
      font-size: 1.6rem;
      font-weight: 1.6;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }

    form button:hover {
      background: #00b48a;
    }

    .thank-you {
      display: none;
      text-align: center;
      color: green;
      font-weight: bold;
      margin-top: 20px;
    }

  
