:root {
    /* font family  */
    --font-family-one: "Poppins", sans-serif;
    --font-family-two: "Outfit", sans-serif;
    --font-family-three: "Raleway", sans-serif;
    --font-family-four: "Hind", sans-serif;

    /* font color  */
    --color-one: #111f5d;
    --color-two: #1268b3;
    --color-three: #222831;
    --color-four: #F7F7F7;
    --color-five: #FF8B00;
}
@media (max-width:997px) {
   .module-hero-left {
    position: static !important;
    /* Disable sticky on mobile for better UX */
    top: auto !important;
  }
  .side-module-c {
    height: auto !important;
    padding-bottom: 20px !important;
  }

  .module-card-list {
    width: 100% !important;
  }

  .module-help {
    width: 100% !important;
    margin-bottom: 30px !important;
  }
.contact-card{
  display: flex;
  flex-direction: column !important;
  gap: 20px;
}
}
.pages-header-section {
  position: relative;
  background-image: url(/assets/images/car-bg-2.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 40px 0;
  z-index: 1;
  overflow: hidden;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pages-header-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(26, 25, 25, 0.797) 100%
  );
  z-index: 0;
}


.pages-heading {
  position: relative;
  z-index: 2; /* keeps text above overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}

.pages-heading h1 {
  font-family: var(--font-family-one);
  color: var(--color-four);
  font-size: 40px;
  font-weight: 700;
  
}
.pages-heading p{
    font-family: var(--font-family-one);
  color: var(--color-four);
  font-weight: 300;
}
.products-hero{
  padding: 50px 0px;
}
.pro-heading-2{
  font-family: var(--font-family-one);
  font-weight: 800;
  font-size: 40px;
    background: linear-gradient(267.43deg, #111f5d 4.95%, #1268b3 97.92%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.products-cards-main{
  padding-top: 50px;
}
.card-product{
  box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
  padding: 10px 20px;
  text-align: center;
}
.card-product p{
  font-family: var(--font-family-two);
}
.product-card {
  border-radius: 16px;
  background: #fff;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.product-card h5 {
  letter-spacing: 0.5px;
  font-family: var(--font-family-one);
}

.product-card p {
  font-size: 0.95rem;
  color: #555;
  font-family: var(--font-family-two);
}

.btn-outline-primary {
  border-radius: 30px;
  font-weight: 600;
  font-family: var(--font-family-one) !important;
}

@media (max-width: 768px) {
  .product-card {
    padding: 1.5rem;
  }
}

.nav-container{
  display: flex;
  justify-content: center;
}
.nav-container li button{
  font-family: var(--font-family-one) !important;
  
}
.nav-pills .nav-link{
  padding: 20px 40px;
}
.nav-pills .nav-link.active{
  background-color: var(--color-one) !important;
  border-radius: 0px !important;
    padding: 20px 40px;
}
.tab-content{
  padding-top: 40px;
}
.nav-section-pro{
  background-color: whitesmoke;
}
.products-btn{
  background-color: var(--color-one);
  color: white;
  padding: 10px 20px;
  text-align: center;
  width: 100%;
    font-family: var(--font-family-one);
}
/* ===== Slide-up animation for Bootstrap tab panes ===== */

/* Make sure tab panes are hidden by default (keep layout clean) */
.tab-content .tab-pane {
  display: none;                /* hide by default */
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
}

/* When Bootstrap adds .show (or .active) we allow display block so animation can run */
.tab-content .tab-pane.show {
  display: block !important;
}

/* Play slide-up animation when tab becomes visible (Bootstrap toggles .show/.active) */
.tab-content .tab-pane.show.active {
  animation: bd-slide-up 1.45s cubic-bezier(.22,.9,.35,1) both;
}

/* Keyframes: from below + transparent → final position + opaque */
@keyframes bd-slide-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional: if you use Bootstrap's .fade class, override its transitions so it doesn't conflict */
.tab-content .tab-pane.fade {
  transition: none !important;
}

/* Accessibility: respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .tab-content .tab-pane.show.active {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.pro-details{
  padding: 40px 0px;
}
.pro-det-c h2{
  font-family: var(--font-family-one);
 
}
.pro-det-c p{
  font-family: var(--font-family-two);
 
}

.module-hero-left {
  position: -webkit-sticky;
  /* For Safari support */
  position: sticky;
  top: 150px;
  /* Adjust according to your navbar height */
  align-self: flex-start;
}


.module-card-list {
  background-color: #FBFBFB;
  padding: 30px;
  border-radius: 20px;
  width: 85%;
}

.module-card-list h4 {
  font-family: var(--font-family-one);
  font-weight: 700;
  font-size: 22px;
}

.module-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-bottom: 1px solid rgba(104, 104, 104, 0.484);
  padding-bottom: 20px;
}

.module-list:hover {
  cursor: pointer;
}

.module-list p {
  margin: 0px;
  font-family: var(--font-family-two);
  color: var(--text-one);
}

.module-list i {
  margin-top: 2px;
  transform: rotate(-40deg);
  transition: 0.4s ease-in-out;
  color: var(--bg-five);
}

.module-list:hover i {
  transform: rotate(0deg);
  transition: 0.4s ease-in-out;

}

.module-help {
  width: 85%;
}

.module-help .card {
  border: none;
  margin-top: 40px;
}

.module-help .card .card-body {
  padding: 30px;
  background-color: #FBFBFB;
}

.module-help .card .card-body .card-title {
  font-family: var(--font-family-one);
}

.module-help .card .card-body .card-text {
  font-family: var(--font-family-two);
}

.contact-card {
  display: flex;
  gap: 20px;
  padding-bottom: 50px;
}

.contact-card i {
  color: var(--bg-footer);
  margin-top: 6px;
}

.contact-card p {
  margin: 0px;
  font-family: var(--font-family-one);
}

.module-content {
  padding-top: 40px;
}

.module-head-5 {
  font-family: var(--font-family-one);
  font-weight: 700;
  color: var(--color-two);
}

.module-para {
  font-family: var(--font-family-one);
  text-align: justify;
  line-height: 30px;
}

.single-line {
  height: 1px;
  width: 20%;
  display: block;
  background-color: var(--color-one);
  margin: 20px 0px;
}

.side-module-c {
  height: 180px;
  padding: 20px;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
  margin-bottom: 30px;
   background: #020024;
background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 35%, rgba(0, 212, 255, 1) 100%);
  
}

.side-module-c h5{
  font-family: var(--font-family-three);
}

.side-module-c ul {
  padding-left: 15px;

}

.side-module-c ul li {
  font-family: var(--font-family-one);
  font-size: 14px;
  line-height: 30px;
  list-style-type: square;
}

 
.module-card-list a{
  text-decoration: none;
}
.card-module{
background-image: url(/assets/images/point-card.png);
  margin: 10px;
  padding: 20px;
}
.card-module h5{
  color: white;
  font-family: var(--font-family-one);
}
.card-module p{
  color: white;
  font-family: var(--font-family-two);
}
.wc-icon{
  width: 50px;
  height: 50px;
  background-color: var(--color-two);
  padding: 10px;
  border-radius: 50%;
}

.wcp-point{
  padding: 30px;
}
.wc-point{
  padding-top: 20px;
}
.wc-point p{
  text-align: left;
}
.application-card{
 margin: 30px 0px;
 
}
.application-content-card{
  padding: 20px 0px;

}
.application-content-card h5{
  font-family: var(--font-family-one);
  font-size: 16px;
  color: var(--color-four);
}
.product-application{
  background-color: var(--color-one);
  padding: 100px 20px;
}
.aaplication-heading{
  padding: 2px 30px;
}
.aaplication-heading h2{
  font-family: var(--font-family-one);
  font-size: 45px;
   background: linear-gradient(267.43deg, #6379d8 4.95%, #afc2d2 97.92%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.aaplication-heading h6{
  font-family: var(--font-family-three);
  font-size: 16px;
  color: var(--color-four);
  font-weight: 800
}
.aaplication-heading p{
  font-family: var(--font-family-two);
  line-height: 30px;
  color: rgb(215, 212, 212);
  text-align: justify;
}

.technical-specs {
  background-color: #f8f9fa;
  padding: 40px 0px;
}

.tech-head-2{
  font-family: var(--font-family-one);
  color: var(--color-two);
  font-weight: 700;
}
.specs-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 12px 18px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.spec-item:hover {
  background-color: #f0f4ff;
  transform: translateY(-3px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.spec-label {
  font-weight: 600;
  color: #333;
  font-size: 15px;
  font-family: var(--font-family-one);
}

.spec-value {
  font-weight: 500;
  color: #0d6efd;
  font-size: 15px;
  font-family: var(--font-family-one);
}

@media (max-width: 576px) {
  .spec-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .spec-value {
    font-size: 14px;
  }
}

.color-o{
  color: var(--color-five);
}
.industries-application{
  padding-bottom: 50px;
}
.industries-content-card{
  padding-top: 20px;
  padding-bottom: 40px;
}
.industries-content-card h5{
  font-family: var(--font-family-one);
  font-size: 15px;
  font-weight: 700;

}
.industries-content-card p{
  font-family: var(--font-family-two);
  font-size: 14px;

}
.contact-section-main{
  padding: 50px 0px;
}
.contact-card{
  display: flex;
  gap: 20px;
}
.contact-icon-main{
  width: 10%;
}
.contact-content{
  width: 90%;
}
.contact-icon{
  width: 60px;
  height: 60px;
  background-color: var(--color-five);
  color: var(--color-four);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-icon i{
  font-size: 20px;
}
.contact-content h6{
  font-family: var(--font-family-one);
  font-weight: 700;
  color: var(--color-one);
}
.contact-content p{
  font-family: var(--font-family-two);
  color: var(--color-one);
}



.enquiry-container {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 40px 50px;
  width: 100%;

  transition: all 0.3s ease;
}

.enquiry-container:hover {
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.form-title {
 font-family: var(--font-family-one);
 font-weight: 700;
}

.form-subtitle {
  font-family: var(--font-family-one);
}

/* ===== Form Layout ===== */
.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;  
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  font-size: 14px;
  color: #0a2342;
  margin-bottom: 6px;
  font-family: var(--font-family-one);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid #dbe1ea;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  color: #0a2342;
  background-color: #fff;
  transition: all 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #7d8ba1;
  font-family: var(--font-family-two);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0a57d5;
  box-shadow: 0 0 0 3px rgba(10, 87, 213, 0.15);
  outline: none;
}

/* ===== Button ===== */
.submit-btn {
  background: linear-gradient(90deg, #0a57d5, #29a9e0);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-family-one);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(41, 169, 224, 0.4);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .enquiry-container {
    padding: 30px 25px;
  }
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  margin-top: 40px;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

/* Optional: adjust margin and shape for mobile */
@media (max-width: 768px) {
  .map-container {
    padding-bottom: 70%; /* slightly taller map on mobile */
    margin-top: 25px;
    border-radius: 10px;
  }
}

.genset-cards{
  padding: 60px 0px;
}