/* =====================================================
   SimLionics – style.css
   Author: SimLionics Design System
   ===================================================== */

/* ---- CSS Variables ---- */
:root {
  --primary: #00c8d4;
  --primary-dark: #008fa0;
  --accent: #4f9fff;
  --dark-bg: #03060f;
  --dark-bg2: #060e1e;
  --dark-card: #0b1a30;
  --text-light: #cde4ff;
  --white: #ffffff;
}

/* ---- Reset & Base ---- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter";
  background: #fff;
  color: #212529;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
.brand-font {
  font-family: "Inter";
  
}

h1 {
  font-weight: 400 !important;
}
p {
  font-family: "Inter";
  font-weight: 400;
  font-variation-settings: "opsz" 18;
 
}

/* ===================== NAVBAR ===================== */
/* ===================== NAVBAR ===================== */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  padding: 15px 0;

  background: transparent; /* Transparent on hero */
  transition: all 0.4s ease;
}
/* .lead {
  font-size: "1rem";
} */
 .leads {
  font-size: 18px !important;
  line-height: 1.7;
}
.lead {
  font-size: 18px !important;
  line-height: 1.7;
      padding: 28px 197px;
}

@media (max-width: 768px) {
  .lead {
    font-size: 11px !important;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 1.6;
    text-align: center;
  }
  p{
    font-size:11px !important;
    padding: 0 10px;
   
  }
  h2{
    font-size: 20px;
  }
  h1{
    font-size: 20px;
  }
  .battery-ecosystem{
    padding: 40px 0 !important;
  }
 
}

/* Navbar after scroll */
.navbar.scrolled {
  background: rgba(8, 15, 59, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 200, 212, 0.15);
}

/* nav links */
.nav-link {
  color: #ffffff !important;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  padding: 6px 14px !important;
}

.nav-link:hover,
.nav-link.active {
  color: #00c8d4 !important;
}

/* LinkedIn button */
.linkedin {
  height: 30px !important;
  width: 30px !important;
}



/* MOBILE NAVBAR FIX */
@media (max-width:786px){
    
    .list-unstyled {
    font-size: 11px;
    padding-left: 10px;
  }

.navbar-collapse{
background:linear-gradient(180deg,#041f4a,#0b2d6b);
margin-top:15px;
padding:20px;
border-radius:10px;
}

.navbar-nav{
flex-direction:column;
align-items:flex-start !important;
width:100%;
}

.navbar-nav .nav-link{
font-size:18px;
padding:10px 0 !important;
}

}

/* ===================== HERO SLIDER ===================== */

/* Added padding-top equal to navbar height so hero is not hidden behind fixed navbar */
.hero-section {
  margin-top: 0;
}

.bold {
  font-size: 44px;
  font-weight: 400 !important;
}
@media(max-width:786px){
  .bold {
    font-size: 20px;
    font-weight: 400 !important;
}
  .cta-text{
    font-size:11px !important;
    margin-bottom:10px !important;
  }
  .cta-btn{
        width: 223px !important;
    height: 71px !important;
    font-size: 12px !important;
  }
  .hero-content{
    max-width: 100px !important;
  }
   .know-btn-img {
     width: 100px !important; 
  height: 30px !important;
  font-size: 11px !important;
  }
}
/* Desktop */
@media (min-width: 992px) {
  #heroCarousel,
  .carousel-inner,
  .carousel-item {
    height: 100vh;
  }
}

/* Tablet */
@media (max-width: 991px) {
  #heroCarousel,
  .carousel-inner,
  .carousel-item {
    height: 75vh;
  }
}

/* Mobile */
@media (max-width: 576px) {
  #heroCarousel,
  .carousel-inner,
  .carousel-item {
    height: 60vh;
  }
}

/* Hero images fill the carousel item */
.hero-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(4, 18, 37, 0.75), rgba(4, 18, 37, 0.75));
  top: 0;
  left: 0;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 168px;
  margin: auto;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(
    rgba(70, 98, 179, 1),
    rgba(82, 116, 210, 1),
    rgba(176, 197, 255, 1)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-content h1 span {
  color: #00c8d4;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ddd;
}

/* Hero Caption positioning */
.hero-caption {
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
  bottom: -13px;
}

/* Buttons */
.hero-buttons .btn {
  margin: 5px;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-primary-custom {
  background: #00c8d4;
  color: #000;
  border: none;
}
.btn-primary-custom:hover {
  background: #4f9fff;
  color: #fff;
}

.btn-outline-custom {
  border: 2px solid #00c8d4;
  color: #00c8d4;
}
.btn-outline-custom:hover {
  background: #00c8d4;
  color: #000;
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 34px;
  }
  .hero-caption{
    bottom: -16px;
  }
  
}
@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 24px;
  }
 
  
}

.know-btn-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 48px;

  font-size: 16px;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;

  background: url("Icon/buttonicon.png") no-repeat center;
  background-size: 100% 100%;
}

/* ================= PARTICLES ================= */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  color: rgba(0, 200, 212, 0.4);
  animation: floatParticle linear infinite;
  user-select: none;
}

@keyframes floatParticle {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-30px) scale(1.2);
    opacity: 0.9;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.6;
  }
}

/* ================= TRUSTED ================= */
.trusted-section {
  background: #fff;
}

.brand-logo {
   justify-content: center;
   text-align: center;
    
  margin: 0px;
  max-height: 80px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  opacity: 1;
  transition: all 0.3s ease;
}
.img-fluids {
  width: 80%;
  height: auto;
}
@media (max-width: 786px) {
  .img-fluids {
    width: 100%;
    height: auto;
  }
}

.brand-logo:hover {
  filter: grayscale(100%);
  opacity: 0.7;
  transform: scale(1.05);
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

b,
strong {
  font-weight: 700;
}

/* ================= LOGO TICKER ================= */
.logo-ticker-wrapper {
  width: 100%;
  overflow: hidden;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 60px;
  white-space: nowrap;
  will-change: transform;
}

.logo-track .brand-logo {
  flex-shrink: 0;
  max-height: 80px;
}

/* ================= CHALLENGE ================= */
/* ================= CHALLENGE ================= */

.challenge-section {
  background: #fff;
}
.challege-card {
  padding: 6rem;
}
@media (max-width: 786px) {
  .challege-card {
    padding: 2rem;
  }
  .challenge-item p {
    font-size: 11px !important;
  }

}

.challenge-item {
  text-align: center;
  padding: 0px;
}

.challenge-icon {
  height: 70px;
}

.challenge-item p {
  font-size: 18px;
  font-weight: 500;
  color: #222;
  line-height: 1.5;
}

/* ================= SCROLL-TO-TOP BUTTON ================= */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--dark-bg);
  border: none;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s,
    transform 0.2s;
  z-index: 999;
  box-shadow: 0 4px 14px rgba(0, 200, 212, 0.4);
}
.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top-btn:hover {
  transform: scale(1.1);
  background: var(--primary-dark);
}

/* ================= BATTERY ECOSYSTEM ================= */

.battery-ecosystem {
  background: url("image/bannercard.jpg") center/cover no-repeat;
  padding: 80px 0;
}

/* 5 column layout */

@media (min-width: 992px) {
  .col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
  }
}

/* CARD */

.eco-card {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* glowing frame */

.eco-card::before {
  content: "";
  position: absolute;
  height: 400px;
  width: 100%;
  inset: 0;
  background: url("image/iconwebsite.png") center/contain no-repeat;
  z-index: 1;
}

/* CONTENT */

.eco-content {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78%;
  text-align: center;
  color: #fff;
  z-index: 2;
  transition: all 0.4s ease;
}
@media (max-width: 786px) {
  .eco-content {
    width: 64%;
  }
  .eco-title{
    font-size: 16px !important;
  }
}
/* @media(max-width:540px){
  .eco-content{
    width:41%;
  }
} */

/* title */

.eco-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* icon */

.eco-icon img {
  height: 70px;
  transition: all 0.4s ease;
}

/* description */

.eco-desc {
  opacity: 0;
  margin-top: 20px;
  font-size: 13px;
  text-align: left;
  transition: all 0.4s ease;
}

/* hover */

.eco-card:hover .eco-content {
  top: 17%;
  transform: translate(-50%, 0);
  margin: 0px;
}

.eco-card:hover .eco-icon img {
  height: 45px;
}

.eco-card:hover .eco-desc {
  margin-top: 3px;
  text-align: start;
  opacity: 1;
}
/* ================= TEAM SECTION ================= */
.team-section {
  background: url("image/Group 2.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.main-heading {
  font-size: 40px;
  font-weight: 300;
}

.team-card img {
  width: 100%;
  border-radius: 4px;
}

.content-box {
  padding-left: 30px;
}
.content-box p {
  font-size: 18px;
  
}

/* MOBILE FIX */
@media(max-width:786px){
  .content-box p {
  font-size: 13px;
  padding: 0 10px;
  margin:0;
}
h5{
  font-size:15px;
  padding: 0 10px;
}
}

@media (max-width: 991px) {
  .content-box {
    border-left: none;
    padding-left: 0;
    padding-top: 0px;
    margin-top: 0px;
  }

  .main-heading {
    font-size: 20px;
  }
}

/* ===================== ANIMATIONS ===================== */
.animate-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.animate-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s ease;
}

.animate-active {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.delay-1 {
  transition-delay: 0.3s;
}

/* ================= INDUSTRIES ================= */
.industries h2 {
  font-weight: 600;
}

.industry-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.industry-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 15, 60, 0.85),
    rgba(15, 15, 60, 0.2)
  );
  display: flex;
  align-items: flex-end;
  padding: 10px !important;
  transition: all 0.4s ease;
}

/* Hide text initially */
.overlay h4 {
  color: #fff;
  font-weight: 600;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

/* Show text on hover */
.overlay:hover h4 {
  transform: translateY(0);
  opacity: 1;
}

.industry-card:hover img {
  transform: scale(1.1);
}

.industry-card:hover .overlay {
  background: linear-gradient(to top, #151050, #1a304537);
}

.industry-card:hover .overlay h4 {
  transform: translateY(0);
  opacity: 1;
}

.know-more-btn {
  display: inline-block;
  padding: 7px 25px;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #050c38, #213268);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.know-more-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-25deg);
  transition: 0.6s;
}

.know-more-btn:hover::after {
  left: 130%;
}

.know-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

@media(max-width:768px){
  .industry-card img{
    height:350px !important;
    width:500px;
  }
   .overlay h4{
    transform: translateY(0);
    font-size: 11px;
    align-items: center;
    opacity: 1;
  }
  
}
/* ================= FOOTER ================= */
.custom-footer {
  position: relative;
  background: #fff;
}

/* Bottom Line */
.footer-line {
  position: absolute;
  bottom: 0px;
  left: 40%;
  width: 60%;
  height: 8px;
  background: linear-gradient(90deg, #0b1b46, #4a5bdc);
  /* border-radius: 10px; */
}
/* .custom-footer {
    background: #fff;
    color: #000;
} */
.footer-list {
  margin-top: 5rem;
}
@media (max-width: 786px) {
  .footer-list {
    margin-top: 0px;
  }
}
.footer-logo {
  max-width: 300px;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-menu a:hover {
  color: #1f3c88;
  padding-left: 5px;
}

/* ================= CTA SECTION ================= */
.cta-section {
  position: relative;
  background: url("image/batteryintelligence.jpg") center center / cover
    no-repeat;
  padding: 120px 0;
  color: #fff;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("image/Rectangle 40.png") center center / cover no-repeat;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: auto;
}

.cta-text {
  padding: 0 43px;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 18px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 90px;

  font-size: 17px;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;

  background: url("image/image 21.png") no-repeat center;
  background-size: 100% 100%;
}

/* .cta-btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
}

.cta-btn:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px);
} */

.cta-sections {
  position: relative;
  background: url("image/batterylife.jpg") center center / cover no-repeat;
  padding: 120px 0;
  color: #fff;
  min-height: 500px;
}
@media (max-width: 767px) {
  .cta-sections {
    background: url("image/batterymobilelife.png") center center / cover no-repeat;
    padding: 80px 0; /* optional: reduce spacing for mobile */
  }
}

.cta-sections::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("image/Rectangle 40.png") center center / cover no-repeat;
  z-index: 0;
}

/* vision start */
/* ===== SECTION BACKGROUND ===== */

.mission-vision-section {
  background:
    linear-gradient(rgba(5, 15, 45, 0.85), rgba(5, 15, 45, 0.9)),
    url("image/background-lines.png");
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
}


/* ===== CARD STYLE ===== */

.mv-card {
  border: 1px solid rgba(0, 255, 255, 0.5);
  border-radius: 20px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  transition: 0.4s;
  height: 100%;
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.25);
}

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

.mv-card .icon {
  font-size: 40px;
  color: #00eaff;
  margin-bottom: 15px;
}

.mv-card h2 {
  font-weight: 600;
  margin-bottom: 15px;
}

.mv-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #d0dbff;
}
/* vision end */

/* about start */
.text {
  font-size: 47px;
}

@media(max-width:786px){
  
  .text {
  font-size: 20px;
}
}
.mission-bg {
  background-image: url("image/Group 117.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 0; /* section height */
  min-height: 500px;
}
.mission-bgs {
  background-image: url("image/aboutbanner.jpg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 445px;
}

.stats-section {
  background: #fff;
}

.stats-section h2 {
  font-size: 70px;
  font-weight: 700;
  color: #31a9af;
}

.stats-section p {
  font-size: 22px;
  letter-spacing: 2px;
  color: #000000;
  font-weight: 500;
}

.line {
  width: 80px;
  height: 4px;
  background: #5e80c0;
  margin: 10px auto 0;
}

/* animation */
.stat-box {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.stat-box.show {
  opacity: 1;
  transform: translateY(0);
}

.footprint-section {
  background: url("image/globalfootprint.png") center center no-repeat;
  background-size: 80%;
  min-height: 600px;
}
@media(max-width:786px){
  .footprint-section {
  min-height: 142px !important;
}
.footprint-title {
    font-size: 20px !important;
}
.footprint-desc {
    font-size: 13px !important;
}
}

.global-footprint-text {
  background: #fff;
}

/* .footprint-title{
  font-size:48px;
  font-weight:500;
  margin-bottom:20px;
} */
.footprint-title {
  font-size: 50px;
  font-weight: 500;
  color: #000;
  margin-bottom: 20px;
}

.footprint-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
}

/* HERO SECTION */
.career-hero {
  position: relative;
  padding: 120px 0;
  background: url("image/solutionbanner.jpg") center/cover no-repeat;
}

/* Card */
.career-card {
  max-width: 850px;
  margin: auto;
  padding: 70px 40px;

  border-radius: 30px;
  border: 2px solid #2ec7c9;

  background: rgba(10, 20, 50, 0.6);
  backdrop-filter: blur(8px);
}

/* Title */
.career-card h2 {
  font-size: 38px;
  margin-bottom: 10px;

  background: linear-gradient(90deg, #4662b3, #5274d2, #b0c5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Job title */
.career-card h3 {
  font-size: 36px;
  margin-bottom: 30px;

  background: linear-gradient(90deg, #4662b3, #5274d2, #b0c5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Apply Button */
.apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 48px;
  font-size: 16px;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  background: url("Icon/buttonicon.png") no-repeat center;
  background-size: 100% 100%;
}

/* Arrow Buttons */
.custom-arrow {
  width: auto;
  opacity: 1;
}

.arrow-circle {
  width: 45px;
  height: 45px;
  background: #2ec7c9;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-circle i {
  font-size: 18px;
  color: #06204a;
}

.rotate-left {
  transform: rotate(180deg);
}

.hero-section {
  position: relative;
  z-index: 1;
}

/* Desktop overlap */
.cards-overlap {
  margin-top: -120px;
  position: relative;
  z-index: 10;
}

.update-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.update-card img {
  width: 100%;
  height: 396px;
  object-fit: fill;
}

.card-content {
  padding: 20px;
  flex-grow: 1;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .cards-overlap {
    margin-top: -120px;
  }

  .update-card img {
    height: 250px;
    object-fit: fill;
  }
  .career-card h3{
    font-size: 23px;
  }
  .career-card h2 {
    font-size: 27px;
  }
  .career-card {
    padding: 33px 30px;
  }
  .cta-sections {
     min-height:300px;
  }
  .leads{
    font-size:11px !important;
    padding: 0 10px;
  }
  .team-card img {
    padding: 0 10px;
  }
}

.cta-sectionss {
  position: relative;
  background: url("image/updatebanner.png") center center / cover no-repeat;
  padding: 120px 0;
  color: #fff;
}
.cta-sectionss::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("image/Rectangle 40.png") center center / cover no-repeat;
  z-index: 0;
}






