/* =====================================================
   COMMON BASE CSS
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  /* background: #000; */
  /* color: #fff; */
  overflow-x: hidden;
  background-color: #f5f5f5;
}

/* =====================================================
      HEADER CSS START
      ===================================================== */

.lorven-logo img {
  width: 180px;
  height: auto;
  display: block;
}

.lorven-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  height: 90px;
  padding: 0 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.lorven-header {
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.lorven-header a {
  color: #ffffff;
  transition: color 0.3s ease;
}
.lorven-header.scrolled {
  background: rgba(255, 255, 255, 0.75);
}

.lorven-header.scrolled a {
  color: #000000;
}

.lorven-logo {
  font-size: 22px;
  font-weight: 700;
}

.lorven-logo span {
  color: #0a66ff;
}

.lorven-logo small {
  font-size: 10px;
  letter-spacing: 2px;
}

.lorven-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.lorven-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.lorven-nav a:hover {
  text-decoration: underline;
}

.lorven-btn-head {
  background: #0a66ff;
  padding: 10px 18px;
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.lorven-nav-item {
  position: relative;
}

.lorven-arrow {
  margin-left: 6px;
  font-size: 12px;
  opacity: 0.7;
}

.lorven-mega {
  position: absolute;
  top: 140%;
  left: 0;
  background: #fff;
  color: #000;
  padding: 30px;
  min-width: 600px;
  border-radius: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.3s ease;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.lorven-nav-item:hover .lorven-mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lorven-mega h4 {
  color: #0a66ff;
  margin-bottom: 12px;
}

.lorven-mega ul {
  list-style: none;
}

.lorven-mega ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.lorven-mega-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
}

.lorven-spotlight {
  background: #f4f6f8;
  padding: 15px;
  border-radius: 10px;
  font-size: 14px;
}

.lorven-menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

.lorven-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}

.lorven-mobile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lorven-mobile-panel {
  position: absolute;
  right: -100%;
  top: 0;
  width: 80%;
  max-width: 340px;
  height: 100%;
  background: #0b0f17;
  padding: 28px 26px;
  transition: right 0.35s ease;
}

.lorven-mobile-close {
  font-size: 20px;
  cursor: pointer;
}

.lorven-mobile-panel nav {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.lorven-mobile-panel nav a {
  color: #e6e6e6;
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
}

.lorven-mobile-panel nav a i {
  font-size: 14px;
  color: #0a66ff;
}

.mobile-btn {
  margin-top: 30px;
  background: #0a66ff;
  padding: 12px;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
}

.lorven-mobile-menu.active {
  pointer-events: auto;
}

.lorven-mobile-menu.active .lorven-mobile-overlay {
  opacity: 1;
}

.lorven-mobile-menu.active .lorven-mobile-panel {
  right: 0;
}

@media (max-width: 900px) {
  .lorven-nav,
  .lorven-btn-head {
    display: none;
  }

  .lorven-menu-toggle {
    display: block;
  }

  .lorven-header {
    height: 70px;
    padding: 0 22px;
  }
}

.lorven-mega {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 46px;

  width: 1100px;
  max-width: 95vw;

  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(14px);

  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
  border: 1px solid #e5e7eb;

  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mega-intro {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px;
}

.mega-intro h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}

.mega-intro p {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 18px;
}

.mega-btn {
  display: inline-block;
  background: #036edf;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.mega-btn:hover {
  background: #025bc0;
}
.mega-list h4 {
  font-size: 14px;
  font-weight: 600;
  color: #036edf;
  margin-bottom: 14px;
}

.mega-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-list ul li {
  font-size: 14px;
  color: #0f172a;
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.2s ease;
}

.mega-list ul li:hover {
  color: #036edf;
}
.mega-spotlight {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
}

.mega-spotlight img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 14px;
}

.mega-spotlight h5 {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

.mega-spotlight p {
  font-size: 13px;
  color: #475569;
  margin-bottom: 10px;
}

.mega-spotlight a {
  font-size: 13px;
  font-weight: 600;
  color: #036edf;
  text-decoration: none;
}

.mega-spotlight a:hover {
  text-decoration: underline;
}
.mega-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.15fr;
  gap: 34px;
}

.lorven-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.lorven-nav-item {
  position: static; /* IMPORTANT */
}
.lorven-mega {
  position: fixed; /* 🔥 absolute nahi */
  top: 90px; /* header height ke neeche */
  left: 50%;
  transform: translateX(-50%) translateY(14px);

  width: 1100px;
  max-width: 95vw;

  background: #ffffff;
  border-radius: 18px;
  padding: 40px 46px;

  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
  border: 1px solid #e5e7eb;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: all 0.3s ease;
  z-index: 999;
}
.lorven-nav-item:hover .lorven-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.lorven-nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 30px; /* bridge height */
}
.lorven-nav-item:hover .lorven-mega,
.lorven-mega:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.lorven-mega {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);

  width: 1100px;
  max-width: 95vw;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.25s ease;
}
.lorven-nav-item:hover .lorven-mega,
.lorven-mega:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* PRODUCT LINKS */
.mega-list ul li a {
  color: #0f172a;
  text-decoration: none;
  font-weight: 500;
}

.mega-list ul li a:hover {
  color: #036edf;
  text-decoration: underline;
}

/* MEGA MENU FIX */
.lorven-nav-item {
  position: static;
}

.lorven-mega {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  max-width: 95vw;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 999;
}

.lorven-nav-item:hover .lorven-mega,
.lorven-mega:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* MOBILE PANEL – PREMIUM LOOK */
.lorven-mobile-panel {
  background: linear-gradient(180deg, #0b0f17, #111827);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.6);
}
.mega-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}
.lorven-mega {
  width: 1300px; /* 🔥 enough space for 5 items */
  max-width: 96vw;
  padding: 40px;
}
.mega-spotlight {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.mega-spotlight img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
}

.lorven-mobile-panel nav a {
  background: rgba(255, 255, 255, 0.04);
  padding: 14px 16px;
  border-radius: 10px;
  transition: all 0.25s ease;
}

.lorven-mobile-panel nav a:hover {
  background: rgba(10, 102, 255, 0.15);
  transform: translateX(4px);
}

.mobile-btn {
  background: linear-gradient(135deg, #0a66ff, #0047cc);
  font-weight: 600;
}

/* SMALL DEVICES */
@media (max-width: 900px) {
  .lorven-nav {
    display: none;
  }
}

/* MOBILE ACCORDION */
.mobile-accordion {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  overflow: hidden;
}

.mobile-accordion-header {
  padding: 14px 16px;
  color: #e5e7eb;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.mobile-accordion-header i {
  color: #0a66ff;
}

.accordion-arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.mobile-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: rgba(0, 0, 0, 0.25);
}

.mobile-accordion-body a {
  display: block;
  padding: 12px 20px;
  font-size: 14px;
  color: #cbd5f5;
  text-decoration: none;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-accordion-body a:hover {
  background: rgba(10, 102, 255, 0.15);
  color: #ffffff;
}

/* ACTIVE */
.mobile-accordion.active .mobile-accordion-body {
  max-height: 280px;
}

.mobile-accordion.active .accordion-arrow {
  transform: rotate(180deg);
}

/* =====================================================
        HEADER CSS END
      ===================================================== */

/* =====================================================
      BANNER / SLIDER CSS START
      ===================================================== */
@media (min-width: 1400px) {
  .lorven-hero-content h1 {
    font-size: 50px !important;
  }
}

.lorven-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.lorven-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}

.lorven-slide.active {
  opacity: 1;
  z-index: 5;
}

.lorven-slide img,
.lorven-slide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: lorvenZoom 12s linear infinite;
  z-index: 0;
}

@keyframes lorvenZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}

.lorven-slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.35)
  );
  z-index: 1;
}

.lorven-hero-content {
  position: relative;
  z-index: 2;
  padding: 180px 60px 0 120px;
  max-width: 1050px;
}
.lorven-hero-content h1 {
  font-size: 40px;
  line-height: 1.18;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 36px;
  letter-spacing: -0.3px;
}

.lorven-hero-content span {
  color: #0a66ff;
}

.lorven-card-wrap {
  display: flex;
  gap: 20px;
}

.lorven-card {
  background: #ffffff;
  color: #000;
  padding: 14px;
  height: 210px;
  width: 220px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  margin-bottom: 30px;
}

/* .lorven-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
} */

.lorven-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  padding: 16px 40px;
  background: #0a66ff;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 8px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.lorven-btn:hover {
  background: #084ecb;
  transform: translateY(-2px);
}
.lorven-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.lorven-slider-arrow:hover {
  background: rgba(0, 0, 0, 0.65);
}

.lorven-prev {
  left: 30px;
}

.lorven-next {
  right: 30px;
}

@media (max-width: 900px) {
  .lorven-slider {
    height: 65vh;
    display: flex;
    align-items: center;
  }

  .lorven-hero-content {
    padding: 0 24px;
    max-width: 100%;
  }

  .lorven-hero-content h1 {
    font-size: 26px;
    line-height: 1.35;
    margin-bottom: 20px;
  }

  .lorven-card-wrap {
    display: none;
  }

  .lorven-btn {
    padding: 14px 28px;
    font-size: 14px;
  }

  .lorven-slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 16px;
    top: 30%;
  }

  .lorven-prev {
    left: 12px;
  }

  .lorven-next {
    right: 12px;
  }
}
@media (max-width: 900px) {
  .lorven-slider {
    height: 60vh;
    min-height: 260px;
    position: relative;
  }

  .lorven-hero-content {
    padding: 100px 16px 0 16px;
  }

  .lorven-hero-content h1 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 14px;
  }

  /* 🔥 SLIDER ARROWS PERFECT CENTER */
  .lorven-slider-arrow {
    top: 35%;
    transform: translateY(-50%);
  }

  .lorven-prev {
    left: 10px;
  }

  .lorven-next {
    right: 10px;
  }
}

@media (min-width: 1400px) {
  .lorven-hero-content {
    padding: 230px 90px 0 180px;
    max-width: 1300px;
  }
  .lorven-hero-content h1 {
    font-size: 60px;
  }
  .lorven-btn {
    padding: 18px 48px;
    font-size: 16px;
  }
}
@media (min-width: 1800px) {
  .lorven-hero-content {
    padding: 260px 120px 0 200px;
    max-width: 1400px;
  }

  .lorven-hero-content h1 {
    font-size: 68px;
  }
}
@media (max-width: 900px) {
  .lorven-slider {
    height: 60vh;
    min-height: 260px;
    display: flex;
    align-items: center; /* text + button center vertically */
  }

  .lorven-hero-content {
    padding: 0 16px; /* upar se padding hatao */
    max-width: 100%;
    text-align: center; /* text center */
  }

  .lorven-hero-content h1 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .lorven-btn {
    margin-top: 16px;
  }
}
@media (max-width: 900px) {
  .lorven-slider {
    height: 74vh;
    min-height: 260px;
    display: flex;
    align-items: center;
    padding-top: 70px; /* header height ka space */
    box-sizing: border-box;
  }

  .lorven-hero-content {
    padding: 168px 16px;
    max-width: 100%;
    text-align: center;
  }

  .lorven-hero-content h1 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .lorven-btn {
    margin-top: 16px;
  }
}

/* =====================================================
      BANNER / SLIDER CSS END
      ===================================================== */

/* =====================================================
      WHO WE ARE CSS STARTS
      ===================================================== */

.who-we-are-section {
  background-color: #f5f5f5;
  padding: 60px 0 60px;
  /* margin-top: 44px; */
}

.section-container {
  max-width: 1286px;
  margin: 0 auto;
  padding: 0 16px;
}

.section-badge {
  background-color: rgba(255, 255, 255, 0.4);
  color: #000000;
  padding: 6px 20px;
  border-radius: 14px;
  font-size: 12px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  box-shadow: 0px 0px 3px #000000;
  margin-bottom: 10px;
}

.section-title {
  font-size: 28px;
  font-family: "Syne", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  color: #010d4c;
  margin: 10px 0 6px;
}

.section-description {
  font-size: 16px;
  font-family: "Syne", sans-serif;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  color: #646464;
  margin-bottom: 30px;
}

.know-more-btn {
  background-color: #036edf;
  color: #f5f7f5;
  padding: 12px;
  border-radius: 5px;
  font-size: 16px;
  font-family: "Marcellus", serif;
  font-weight: 400;
  line-height: 21px;
  text-transform: uppercase;
  text-decoration: none;
  border: 0 solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
}

.know-more-btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}
.who-we-are-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.who-we-are-center .know-more-btn {
  margin: 0 auto;
}

.experience-section {
  padding: 80px 20px;
  background: #fff;
}

.experience-layout {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 420px 1fr;
  grid-template-rows: auto auto;
  gap: 60px 40px;
  align-items: center;
  margin-top: 50px;
}

.experience-center {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  display: flex;
  justify-content: center;
}

.experience-center img {
  width: 100%;
  max-width: 360px;
}

.experience-item {
  max-width: 320px;
}

.experience-item.left {
  text-align: right;
  justify-self: end;
}

.experience-item.right {
  text-align: left;
  justify-self: start;
}

.experience-icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.icon-main {
  font-size: 32px;
  font-weight: 700;
  color: #005be7;
}

.icon-sub {
  font-size: 14px;
  margin-left: 2px;
  color: #005be7;
  margin-top: 14px;
}

.cx-icon {
  border: 4px solid #ad49e2;
}
.ux-icon {
  border: 4px solid #fba01a;
}
.ex-icon {
  border: 4px solid #fd1cc2;
}
.mx-icon {
  border: 4px solid #005be7;
}
.experience-item h3 {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  color: #010d4c;
  margin-bottom: 10px;
}

.experience-item p {
  font-size: 15px;
  line-height: 24px;
  color: #646464;
}

@media (max-width: 992px) {
  .experience-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    text-align: center;
  }

  .experience-item,
  .experience-item.left,
  .experience-item.right {
    justify-self: center;
    text-align: center;
  }

  .experience-center {
    grid-column: auto;
    grid-row: auto;
  }
}

/* =====================================================
      WHO WE ARE CSS END
      ===================================================== */

/* =====================================================
      ROBOT IMAAGE SECTION CSS STARTS
      ===================================================== */
.lavin-hero-section {
  background: linear-gradient(135deg, #0a66d8, #0b4fb3);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

/* soft glow */
.lavin-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.15),
    transparent 60%
  );
  z-index: 0;
}

.lavin-hero-section::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 0;
  width: 65%;
  height: 100%;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.35) 1.5px,
    transparent 1.5px
  );
  background-size: 12px 12px;
  opacity: 0.6;
  z-index: 1;
}

.lavin-hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.lavin-hero-left {
  color: #fff;
}

.lavin-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.lavin-hero-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 22px;
}

.lavin-hero-desc {
  font-size: 15px;
  line-height: 1.9;
  opacity: 0.95;
  margin-bottom: 34px;
}

.lavin-hero-btn {
  padding: 14px 36px;
  border-radius: 30px;
  border: none;
  background: #fff;
  color: #0a66d8;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lavin-hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.35);
}
.lavin-hero-center {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1.3);
  position: relative;
}

.lavin-hero-robot {
  max-width: 520px;
  width: 100%;
  z-index: 3;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.35));
  animation: floatRobot 4s ease-in-out infinite;
}

@keyframes floatRobot {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}
.lavin-hero-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.lavin-hero-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.18);
  transition: all 0.3s ease;
}

.lavin-hero-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.lavin-hero-card img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 992px) {
  .lavin-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lavin-hero-center {
    order: -1;
    transform: scale(1.15);
    margin-bottom: 30px;
  }

  .lavin-hero-right {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 40px;
  }
}
@media (max-width: 576px) {
  .lavin-hero-section {
    padding: 70px 0;
  }

  .lavin-hero-title {
    font-size: 32px;
  }

  .lavin-hero-desc {
    font-size: 14px;
  }

  .lavin-hero-center {
    transform: scale(1);
  }

  .lavin-hero-robot {
    max-width: 320px;
  }

  .lavin-hero-right {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .lavin-hero-btn {
    padding: 12px 30px;
  }
}

@media (min-width: 1200px) {
  .lavin-hero-center {
    transform: scale(1.4);
    margin-top: 40px; /* niche shift */
  }

  .lavin-hero-robot {
    max-width: 600px;
  }
}

/* =====================================================
   ROBOT IMAAGE SECTION CSS ENDS
===================================================== */

/* =====================================================
  FAST FACTS SECTION CSS STARTS
===================================================== */
/* ===== FAST FACTS UPGRADE ===== */

/* ================= FAST FACTS SECTION ================= */

.fast-facts {
  position: relative;
  padding: 90px 40px;
  background:
    linear-gradient(135deg, rgba(6, 55, 130, 0.88), rgba(10, 102, 255, 0.68)),
    url("./assets/img/fast-fact-bg.jpg") center/cover no-repeat;
  overflow: hidden;
  color: #ffffff;
}
.fast-facts::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(10, 102, 255, 0.35),
    rgba(6, 55, 130, 0.75) 60%
  );
  pointer-events: none;
}

.fast-facts-heading {
  text-align: center;
  margin-bottom: 75px;
  position: relative;
}

.fast-facts-heading h2 {
  font-size: 42px;
  font-weight: 500;
  letter-spacing: 0.8px;
  margin: 0;
  color: #0b1c33;
}

.fast-facts-heading h2 span {
  color: #036edf;
  font-weight: 600;
}

.fast-facts-heading::after {
  content: "";
  width: 120px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    #036edf,
    #5fa0ff,
    transparent
  );
  display: block;
  margin: 22px auto 0;
  border-radius: 6px;
}

/* Soft glow under line */
.fast-facts-heading::before {
  content: "";
  width: 80px;
  height: 10px;
  background: radial-gradient(circle, #036edf70, transparent 70%);
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(8px);
}

/* ================= CONTAINER ================= */

.fast-facts-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 35px;
}

/* ================= FACT CARD ================= */

.fact-box {
  position: relative;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  border-radius: 22px;
  padding: 38px 25px;
  text-align: center;
  border: 1px solid rgba(3, 110, 223, 0.25);
  transition: all 0.45s ease;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  cursor: pointer;
}

/* Gradient glow on hover */
.fact-box::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, #036edf, #5fa0ff);
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: -1;
}

.fact-box:hover::after {
  opacity: 0.18;
}

.fact-box:hover {
  transform: translateY(-14px) scale(1.04);
  box-shadow: 0 28px 60px rgba(3, 110, 223, 0.28);
}

/* ================= ICON ================= */

.fact-icon img {
  width: 65px;
  height: 65px;
  margin-bottom: 24px;
  transition: transform 0.4s ease;
}

.fact-box:hover .fact-icon img {
  transform: rotate(-6deg) scale(1.18);
}

/* ================= NUMBER ================= */

.fact-number {
  font-size: 46px;
  font-weight: 800;
  color: #036edf;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}

/* ================= LABEL ================= */

.fact-label {
  font-size: 14px;
  font-weight: 600;
  color: #3b4d6b;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ================= SCROLL ANIMATION ================= */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================= MOBILE ================= */

@media (max-width: 600px) {
  .fast-facts {
    padding: 65px 20px;
  }

  .fast-facts-heading h2 {
    font-size: 34px;
  }

  .fact-number {
    font-size: 36px;
  }
}

/* =====================================================
      FAST FACTS SECTION CSS ENDS
      ===================================================== */

/* =====================================================
      PARTNER'S SECTION CSS STARTS
      ===================================================== */

.client-logo-section {
  padding: 80px 0;
  background: #ffffff;
}

.client-logo-header {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.client-logo-text span.client-line {
  width: 60px;
  height: 4px;
  background: #1a73e8;
  display: block;
  margin-bottom: 12px;
}

.client-logo-text h2 {
  font-size: 34px;
  font-weight: 400;
  color: #111;
  line-height: 1.3;
}

.client-logo-text h2 strong {
  font-weight: 700;
}

.client-logo-controls {
  display: flex;
  gap: 12px;
}

.client-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #1a73e8;
  background: transparent;
  color: #1a73e8;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.client-btn:hover {
  background: #1a73e8;
  color: #fff;
}

.client-logo-slider {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
}

.client-logo-track {
  display: flex;
  gap: 40px;
  transition: transform 0.6s ease;
}

.client-logo-item {
  min-width: 220px;
  height: 110px;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.client-logo-item img {
  max-width: 200px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.client-logo-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@media (max-width: 1024px) {
  .client-logo-header {
    padding: 0 20px;
  }

  .client-logo-slider {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .client-logo-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .client-logo-text h2 {
    font-size: 28px;
  }

  .client-logo-controls {
    align-self: flex-end;
  }

  .client-logo-item {
    min-width: 180px;
    height: 90px;
  }

  .client-logo-item img {
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .client-logo-section {
    padding: 50px 0;
  }

  .client-logo-text h2 {
    font-size: 24px;
  }

  .client-logo-header {
    gap: 15px;
  }

  .client-logo-item {
    min-width: 150px;
    height: 80px;
  }

  .client-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

.client-btn.next {
  background: #1a73e8;
  color: #ffffff;
}

.client-btn.next:hover {
  background: #1558b0;
  border-color: #1558b0;
}
.client-btn i {
  font-size: 16px;
}

/* =====================================================
      PARTNER'S SECTION CSS ENDS
      ===================================================== */

/* =====================================================
      BLOG SECTION CSS STARTS
      ===================================================== */

.blogs-section {
  padding: 60px 50px;
  background: #f9f9f9;
}

.blogs-header {
  /* max-width: 1000px; */
  margin: 0 auto 40px;
  text-align: left;
}

.blogs-line {
  display: inline-block;
  width: 50px;
  height: 3px;
  background: #007bff;
  margin-bottom: 10px;
}

.blogs-header h2 {
  font-size: 2rem;
  color: #000;
  margin-bottom: 10px;
}

.blogs-header p {
  color: #555;
  font-size: 1rem;
}

.blogs-slider {
  overflow: hidden;
}

.blogs-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  /* box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05); */
  flex: 0 0 calc((100% - 40px) / 3);
  text-align: left;
  display: flex;
  flex-direction: column;
  border: 1px solid lightgray;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.blog-card:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); */
}

.blog-card img {
  width: 100%;
  display: block;
  height: 200px;
  object-fit: cover;
  margin: 0;
}

.blog-card h3 {
  font-size: 1.3rem;
  margin: 15px 20px 10px 20px;
  color: #000000;
}

.blog-card p {
  font-size: 0.95rem;
  color: #666;
  margin: 0 20px 15px 20px;
}

.blog-btn {
  align-self: center;
  margin-bottom: 20px;
  /* background: linear-gradient(45deg, #007bff, #00bfff); */
  background: #036edf;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.blog-btn:hover {
  background: linear-gradient(45deg, #0056b3, #0099cc);
  transform: scale(1.05);
}
.blogs-know-more {
  margin-top: 30px;
  text-align: center;
}

.know-more-btn {
  background: #036edf;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.3s ease;
}

.know-more-btn:hover {
  background: #0056b3;
}
@media (max-width: 1024px) {
  .blog-card {
    flex: 0 0 calc((100% - 30px) / 2);
  }
}

@media (max-width: 768px) {
  .blogs-header {
    text-align: center;
  }
  .blog-card {
    flex: 0 0 100%;
  }
}
.blogs-dots {
  text-align: center;
  margin-top: 20px;
}

.blogs-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.3s;
}

.blogs-dots span.active {
  background: #007bff;
  transform: scale(1.2);
}

.blogs-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =====================================================
      BLOG SECTION CSS ENDS
      ===================================================== */

/* ===============================
      LATEST NEWS (EXACT STYLE) CSS STARTS
      ================================ */

.ln2-news-section {
  padding: 90px 110px;
  background: #eff7f2;
}

.ln2-title {
  text-align: center;
  margin-bottom: 70px;
}

.ln2-title h2 {
  font-size: 32px;
  font-weight: 600;
}

.ln2-title-line {
  display: block;
  width: 50px;
  height: 2px;
  background: #0a66ff;
  margin: 10px auto 0;
}

.ln2-wrapper {
  display: flex;
  gap: 70px;
  align-items: flex-start;
}

.ln2-left {
  flex: 0 0 38%;
}

.ln2-top-news {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.ln2-line {
  width: 40px;
  height: 1px;
  background: #1c1c1c;
}

.ln2-top-text {
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 500;
  color: #1c1c1c;
}

.ln2-left h3 {
  font-size: 34px;
  line-height: 1.35;
  margin-bottom: 20px;
}

.ln2-left p {
  color: #555;
  margin-bottom: 30px;
}

.ln2-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #0a66ff;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

.ln2-right {
  flex: 1;
}

.ln2-slider {
  position: relative;
  overflow: hidden;
}

.ln2-slide {
  display: flex;
  gap: 30px;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.6s ease;
}

.ln2-slide.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
}

.ln2-card {
  border: 1px solid lightgray;
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  width: 50%;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.08); */
}

.ln2-card img {
  height: 190px;
  object-fit: cover;
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.ln2-date {
  font-size: 13px;
  color: #0a66ff;
}

.ln2-card h4 {
  font-size: 18px;
  margin: 10px 0;
}

.ln2-card p {
  font-size: 14px;
  color: #555;
}

.ln2-card a {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #0a66ff;
  text-decoration: none;
}
.ln2-controls {
  justify-content: center;
  align-items: center;
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.ln2-controls button {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  border: 1px solid #0a66ff;
  background: transparent;
  color: #0a66ff;
  cursor: pointer;
  transition: 0.3s ease;
}

.ln2-controls button:hover {
  background: #0a66ff;
  color: #fff;
}

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  .ln2-news-section {
    padding: 70px 50px;
  }

  .ln2-wrapper {
    gap: 40px;
  }

  .ln2-left h3 {
    font-size: 28px;
  }
}

/* Mobile & Small Devices (max-width: 768px) */
@media (max-width: 768px) {
  .ln2-news-section {
    padding: 60px 25px;
  }

  .ln2-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .ln2-left,
  .ln2-right {
    flex: 100%;
  }

  .ln2-left h3 {
    font-size: 26px;
  }

  .ln2-left p {
    font-size: 15px;
  }

  .ln2-slide {
    flex-direction: column;
    gap: 20px;
  }

  .ln2-card {
    width: 100%;
  }

  .ln2-controls {
    margin-top: 35px;
  }
}

/* Very Small Phones (max-width: 480px) */
@media (max-width: 480px) {
  .ln2-title h2 {
    font-size: 26px;
  }

  .ln2-left h3 {
    font-size: 22px;
  }

  .ln2-card h4 {
    font-size: 16px;
  }

  .ln2-card p {
    font-size: 13px;
  }

  .ln2-btn {
    padding: 12px 26px;
    font-size: 14px;
  }
}

.ln2-card {
  position: relative;
}
.ln2-card::after {
  content: "";
  position: absolute;
  top: 0%;
  right: -15px;
  height: 100%;
  border-right: 3px dashed #cfcfcf;
}
.ln2-card:last-child::after {
  display: none;
}
/* ===============================
   LN2 CONTAINER FIX (BIG SCREENS)
   =============================== */

.ln2-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Ultra wide screens safety */
@media (min-width: 1440px) {
  .ln2-wrapper {
    gap: 60px;
  }

  .ln2-left {
    flex: 0 0 36%;
  }

  .ln2-card {
    max-width: 420px;
  }
}

/* =====================================================
   LATEST NEWS SECTION CSS ENDS
===================================================== */

/* =====================================================
   FOOTER SECTION CSS STARTS
===================================================== */

.mmf-footer {
  background: #ffffff;
  font-family: "Segoe UI", sans-serif;
  position: relative;
  padding-top: 120px;
}
.mmf-subscribe-section {
  position: relative;
  z-index: 5;
  margin-bottom: -140px;
}
.mmf-subscribe-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.mmf-subscribe-card {
  /* background: linear-gradient(135deg, #0a66ff, #0047cc); */
  background-color: #036edf;
  border-radius: 24px;
  padding: 60px 60px 60px 260px;
  position: relative;
  /* box-shadow: 0 40px 80px rgba(10, 102, 255, 0.4); */
}

.mmf-subscribe-image {
  position: absolute;
  left: 0;
  top: -60px;
}

.mmf-subscribe-image img {
  width: 260px;
  height: auto;
}
.mmf-subscribe-content h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 18px;
}

.mmf-subscribe-form {
  margin-bottom: 14px;
}

.mmf-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 6px 6px 6px 16px;
}

.mmf-input-wrap span {
  color: #fff;
  margin-right: 8px;
  font-size: 18px;
}

.mmf-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  padding: 14px 10px;
  font-size: 14px;
}

.mmf-input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.85);
}

.mmf-input-wrap button {
  background: #ffffff;
  color: #0a66ff;
  border: none;
  padding: 12px 22px;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mmf-input-wrap button:hover {
  background: #f2f6ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.mmf-subscribe-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}
.mmf-footer-main {
  max-width: 1200px;
  margin: 100px auto 40px;
  display: flex;
  gap: 190px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.mmf-footer-about {
  flex: 1;
}

.mmf-footer-about p {
  color: #555;
  font-size: 14px;
  margin-bottom: 14px;
}

.mmf-socials a {
  margin-right: 14px;
  color: #0a66ff;
  font-weight: 600;
  text-decoration: none;
}

.mmf-footer-links {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.mmf-footer-links h4 {
  font-size: 15px;
  margin-bottom: 10px;
}

.mmf-footer-links a {
  display: block;
  color: #555;
  font-size: 14px;
  margin-bottom: 8px;
  text-decoration: none;
}

.mmf-footer-links a:hover {
  color: #0a66ff;
}

.mmf-footer-bottom {
  border-top: 1px solid #e5e8f0;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #666;
}

.mmf-footer-bottom a {
  margin-left: 14px;
  color: #666;
  text-decoration: none;
}

.mmf-footer-bottom a:hover {
  color: #0a66ff;
}

@media (max-width: 768px) {
  .mmf-subscribe-card {
    padding: 140px 24px 40px;
    text-align: center;
  }

  .mmf-subscribe-image {
    left: 50%;
    transform: translateX(-50%);
    top: -90px;
  }

  .mmf-footer-links {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }

  .mmf-footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .mmf-input-wrap {
    flex-direction: column;
    padding: 12px;
  }

  .mmf-input-wrap button {
    width: 100%;
    margin-top: 10px;
  }

  .mmf-footer-links {
    grid-template-columns: 1fr;
  }
}
.mmf-footer-logo {
  width: 190px;
  margin-bottom: 15px;
}

.mmf-socials {
  display: flex;
  /* gap: 12px; */
  margin-top: 15px;
}

.mmf-socials a {
  width: 40px;
  height: 40px;
  background: #222;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s ease;
  font-size: 16px;
}

.mmf-socials a:hover {
  background: #4f46e5; /* brand color */
  transform: translateY(-3px);
}

@media (max-width: 480px) {
  .mmf-input-wrap {
    flex-direction: row; /* keep row layout */
    align-items: center; /* vertically center input & button */
    justify-content: center; /* center horizontally */
    padding: 8px 12px; /* smaller padding for mobile */
    gap: 8px; /* space between icon, input & button */
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
  }

  .mmf-input-wrap span {
    font-size: 16px;
  }

  .mmf-input-wrap input {
    flex: 1;
    font-size: 14px;
    padding: 12px 10px;
    min-width: 0; /* important to avoid overflow on small screens */
  }

  .mmf-input-wrap button {
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 40px;
    width: auto !important;
    margin-bottom: 10px;
  }
}
/* some change */
@media (max-width: 768px) {
  .mmf-footer-main {
    flex-direction: column;
    align-items: center;
    margin: 60px auto 20px; /* smaller margin for mobile */
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .mmf-footer-links {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .mmf-footer-links {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .mmf-footer-links a {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .mmf-footer-about p {
    font-size: 13px;
    text-align: center;
  }

  .mmf-socials {
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .mmf-footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .mmf-footer-bottom div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}
.mmf-footer-main {
  margin-top: 60px; /* smaller than original 100px */
}

@media (max-width: 480px) {
  .mmf-footer-main {
    margin-top: 40px;
  }
}
/* some change */
/* =====================================================
   FOOTER SECTION CSS ENDS
===================================================== */

.lavin-hero-container {
  min-height: 100%;
}
.lavin-hero-center {
  align-self: end; /* 👈 KEY LINE */
  justify-self: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transform: scale(1.3);
  position: relative;
}
.lavin-hero-robot {
  margin-bottom: -30px; /* very subtle */
}

@media (min-width: 1440px) {
  .lorven-header {
    gap: 80px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    height: 90px;
    padding: 0 70px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .lorven-nav {
    gap: 45px;
  }
}

@media (min-width: 1680px) {
  .lorven-header {
    gap: 80px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    height: 90px;
    padding: 0 70px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .lorven-nav {
    gap: 45px;
  }
}

@media (min-width: 1920px) {
  .lorven-header {
    gap: 80px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    height: 90px;
    padding: 0 70px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .lorven-nav {
    gap: 45px;
  }
}

/* CAREER CSS STARTS */
.lorven-career-hero {
  background:
    linear-gradient(135deg, rgba(10, 31, 68, 0.85), rgba(17, 45, 111, 0.85)),
    url("/assets/img/career-page-bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  padding: 120px 0;
  color: #fff;
}

.lorven-career-hero-content {
  max-width: 700px;
}

.career-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.lorven-career-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.lorven-career-hero p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
}

.career-cta-btn {
  display: inline-block;
  margin-top: 30px;
  background: #0d6efd;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.lorven-career-section {
  padding: 80px 0;
  background: #f8f9fc;
}

.career-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.career-section-header h2 {
  font-size: 36px;
  font-weight: 700;
}

.career-section-header p {
  color: #666;
  margin-top: 10px;
}

.lorven-job-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.job-card-header h3 {
  font-size: 24px;
  font-weight: 700;
}

.job-location {
  color: #666;
  font-size: 14px;
}

.job-toggle-btn {
  background: transparent;
  border: 2px solid #0d6efd;
  padding: 8px 18px;
  border-radius: 6px;
  color: #0d6efd;
  font-weight: 600;
  cursor: pointer;
}

.job-card-body {
  display: none;
  margin-top: 30px;
}

.lorven-job-card.active .job-card-body {
  display: block;
}

.job-card-body h4 {
  margin-top: 25px;
  font-weight: 700;
  font-size: 18px;
}

.job-card-body ul {
  margin-top: 10px;
  padding-left: 20px;
}

.job-card-body ul li {
  margin-bottom: 8px;
  color: #444;
}

.apply-btn {
  display: inline-block;
  margin-top: 30px;
  background: linear-gradient(135deg, #0d6efd, #4c8dff);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.lorven-career-section {
  background:
    radial-gradient(
      circle at top right,
      rgba(13, 110, 253, 0.08),
      transparent 40%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(76, 141, 255, 0.08),
      transparent 40%
    ),
    #f9fbff;
}

.lorven-job-card {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(13, 110, 253, 0.15);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.08),
    inset 0 0 0 rgba(13, 110, 253, 0);
  transition: all 0.45s ease;
  overflow: hidden;
}

.lorven-job-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    transparent,
    rgba(13, 110, 253, 0.6),
    rgba(140, 82, 255, 0.6),
    transparent
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lorven-job-card:hover::before {
  opacity: 1;
}

.lorven-job-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 40px 80px rgba(13, 110, 253, 0.15),
    inset 0 0 40px rgba(13, 110, 253, 0.05);
}

.job-card-header {
  gap: 20px;
}

.job-card-header h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.3px;
  background: linear-gradient(90deg, #0a1f44, #0d6efd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.job-location {
  display: inline-block;
  margin-top: 6px;
  background: rgba(13, 110, 253, 0.08);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  color: #0a1f44;
  font-weight: 500;
}

.job-toggle-btn {
  position: relative;
  background: linear-gradient(135deg, #0d6efd, #4c8dff);
  border: none;
  color: #fff;
  padding: 12px 26px;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.35);
  transition: all 0.35s ease;
}

.job-toggle-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(13, 110, 253, 0.45);
}

.job-card-body {
  animation: aiExpand 0.6s ease forwards;
}

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

.job-card-body h4 {
  position: relative;
  padding-left: 14px;
  margin-top: 28px;
}

.job-card-body h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 16px;
  background: linear-gradient(180deg, #0d6efd, #8c52ff);
  border-radius: 4px;
}

.job-card-body ul li {
  position: relative;
  padding-left: 18px;
}

.job-card-body ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #0d6efd;
  font-weight: bold;
}
.apply-btn {
  position: relative;
  overflow: hidden;
}

.apply-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
}

.apply-btn:hover::after {
  left: 100%;
}

.job-card-body ul {
  list-style: none;
  padding-left: 0;
}

.job-card-body ul li {
  position: relative;
  padding-left: 20px;
}

.job-card-body ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #0d6efd;
  font-weight: bold;
}

@media (max-width: 576px) {
  .lorven-career-hero {
    padding: 80px 20px;
    text-align: center;
  }

  .lorven-career-hero h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .lorven-career-hero p {
    font-size: 16px;
  }

  .career-tag {
    font-size: 12px;
    padding: 5px 12px;
  }

  .career-cta-btn {
    padding: 12px 26px;
    font-size: 15px;
  }

  /* JOB CARD */
  .lorven-job-card {
    padding: 22px;
    border-radius: 16px;
  }

  .job-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .job-card-header h3 {
    font-size: 20px;
  }

  .job-location {
    font-size: 12px;
    padding: 5px 12px;
  }

  .job-toggle-btn {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  .job-card-body h4 {
    font-size: 16px;
  }

  .job-card-body ul li {
    font-size: 14px;
  }

  .apply-btn {
    width: 100%;
    text-align: center;
    padding: 14px;
  }
}
@media (max-width: 768px) {
  .lorven-career-hero {
    padding: 100px 40px;
  }

  .lorven-career-hero h1 {
    font-size: 38px;
  }

  .career-section-header h2 {
    font-size: 30px;
  }

  .job-card-header h3 {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .lorven-job-card {
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.12);
  }
}
/* CAREER CSS ENDS */
