
/*--------------------------------------------------------------
# General style.css
--------------------------------------------------------------*/
body {
  font-family: "Montserrat", sans-serif;
  color:black;
}

a {
  color:#f16325;
  text-decoration: none;
}

a:hover {
  color: #ffd584;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #f16325;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #151515;
  line-height: 0;
}

.back-to-top:hover {
  background: #2aabdf;
}

.back-to-top:hover i {
  color:#151515;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
.bgBlue{
  background-color: #2f2e5c;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #f16325;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
   position: sticky;
    background: black;
     top: 22px;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: black;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo a span {
  color: #f16325;
}

#header .logo img {
  max-height: 85px;
  width: 140px;
  /* background-color: white; */
}

/* header1 */

#header1 {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header1 {
  background: black;
}

#header1 .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header1 .logo a {
  color: #fff;
}

#header1 .logo a span {
  color: #f16325;
}

#header1 .logo img {
  max-height: 90px;
  width: 140px;
  /* background-color: white; */
}

#topbar {
  background: #1e293b;
  color:  #fff;
  font-size: 14px;
  padding: 5px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

#topbar .contact-info i {
  color: #f16325;
  margin-right: 5px;
}

#topbar .social-links a {
  color:  #f16325;;
  margin-left: 15px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #f16325;
}

@media (max-width: 768px) {
  #topbar {
    font-size: 12px;
    text-align: center;
  }

  #header {
    top: 35px;
    bottom:0px;
  }
}
/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/
.get-started-btn {
  color: #fff;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #f16325;
  background-color: #f16325 ;
  margin-right: 100PX;
}

.get-started-btn:hover {
  background: transparent;
  color: #fff;
}

@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color:#2aabdf;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #151515;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  background-color:#2aabdf;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #151515;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #151515;
  background-color: #2aabdf;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #151515;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  background-color: #2aabdf;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
  padding-top: 110px;   /* adjust 80px – 180px as needed */
  padding-bottom: 60px;
}

/* Background Image */
.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;   /* IMPORTANT */
}

/* Dark Overlay */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;   /* Above image */
}

/* Content */
#hero .container {
  position: relative;
  z-index: 3;   /* Above overlay */
}

.img-box {
  height: 350px;              /* Set same height for both boxes */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.product-name {
  margin-top: 10px;
  font-weight: 600;
  font-size: 18px;
  color: #ffffff; /* change if needed */
}

#hero h1 span {
  color:#2aabdf;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 37px;
}

.container {
    position: relative;  
    z-index: 1;          
  }

  @media (min-width: 768px) {
  .img-box img {
    height: 250px;
  }
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (min-width: 1024px) {
  #hero h2 {
   font-size: 3.78rem;
  }
}

@media (min-width: 1400px) {

  #hero {
    min-height: 80vh;
    padding: 100px 80px;
    align-items: center;
  }

  /* #hero img{
    max-height: 80vh;
  } */

  #hero h1 {
    font-size: 50px;
    line-height: 1.2;
  }

  .cta-btn {
    font-size: 20px;
    padding: 14px 35px;
  }

  .hero-wide {
    max-width: 1500px;
    margin: 0 auto;
  }

  .img-box img {
    max-height: 400px;
  }

  .product-name {
    font-size: 22px;
    margin-top: 15px;
  }
}


@media (max-width: 768px) {
  #hero {
    height: auto;
  }

  #hero h1 {
    font-size: 24px;
    line-height: 30px;
    padding-bottom: 0;
    padding-top: 20px;
  }

  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
}


.carousel-img {
  object-fit: cover;
  width: 100%;
  height: 100vh; 
}

@media (max-width: 768px) {
  .carousel-img {
    height: 100vh; 
    object-fit: cover;
  }

  .carousel-caption h2 {
    font-size: 1.4rem;
  }
   
}
#heroCarousel h2{
  font-size:40px;
  line-height: 46px;
}


  #hero1 {
    position: relative;
  width: 100%;
  min-height: 75vh;
  display: flex;
  align-items: center;       
  }
  
  .hero1-img {
    object-fit: cover;   
    width: 100%;          
    height: 100%;         
    position: absolute;   
    top: 0;               
    left: 0;              
    z-index: -1;          
  }
  .container1 {
    position: relative;  
    z-index: 1;          
  }
  
#hero1:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  /* background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%); */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero1 .container {
  position: relative;
  padding-top: 14px;
  /* text-align: center; */
}

#hero1 h1 {
  margin: 0;
  font-size: 40px;
  font-weight: 400;
  line-height: 50px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#hero1 h1{
     font-size: 2.2rem;
     color: white;
     margin-top: 20px;
  }
  #hero1 h3{
    font-size: 2.2rem;
    color: white;
 }

 #hero1.no-overlay::before {
  background: none !important;
}

 @media (max-width: 768px) {

  #hero1 {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding: 60px 0;
  }

  .hero1-img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
  }

  #hero1 .container {
    width: 100%;
    padding-top: 20px !important;
  }

  #hero1 h1 {
    font-size: 28px !important;
    line-height: 35px;
  }
  #heroCarousel h2 {
    font-size: 28px;
    line-height: 34px;
}
}

/* Priority secion*/
.ai-highlight-section {
  background-color: #f16325; /* Orange background */
  padding: 30px 20px;
  color: #fff;
}

.ai-highlight-section .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.ai-highlight-section .text {
  flex: 1;
  min-width: 300px;
  font-size: 18px;
  line-height: 1.6;
}

.ai-highlight-section .video {
  flex: 1;
  min-width: 300px;
}

.ai-link {
  color: #ffffff;
  font-weight: bold;
  text-decoration: underline;
}

.ai-link:hover {
  color: #ffe0b2;
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 20px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #f16325;
  /* margin: 4px 10px; */
}
.section-title h1 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h1::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #f16325;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #151515;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 40px 0 0 0;
}

.about .icon-boxes h3 {
  font-size: 28px;
  font-weight: 700;
  color:Black;
  margin-bottom: 15px;
}

.about .icon-box {
  margin-top: 20px;
  margin-left: 50px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #2f2e5c;
  border-radius: 50px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color:#2f2e5c;
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background:#f16325;
  border-color:#2aabdf;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.about .icon-box .title a {
  color: #343a40;
  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #1d3f57;
}

.about .icon-box .description {
  margin-left: 85px;
  line-height: 24px;
  font-size: 14px;
}

.about .video-box {
 
  background-size: contain;
  min-height: 200px;
  margin-left: 3%;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#3f43fd 50%, rgba(63, 67, 253, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(63, 67, 253, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #3f43fd;
  transform: scale(20);
}

.about .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}
.about .image-container{
  text-align: center; 
  background-color: whitesmoke;
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.about .about_us_btn{
  color: black;
  border: 2px solid #2aabdf;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding-top: 20px;
}

.clients .swiper-slide img {
  /* opacity: 0.5; */
  transition: 0.3s;
  /* filter: grayscale(100); */
  width: 400px;
  height: auto;
  margin-bottom: 10px;
  max-width: 170px;
  justify-content: space-between;
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2aabdf;
}
.clients-static {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
}

.client-item {
  max-width: 150px; /* Adjust this to fit your layout */
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 0;
   margin-top: 0;
}


.features .icon-box {
  padding-left: 15px;
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color:#f16325;
}

.features .icon-box p {
  font-size: 15px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100px;
}


/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5));
  background-size: cover;
  padding: 60px 0;
}

#cta .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%); /* Adjust value (100% = normal) */
}
.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #f16325;
  border-color: #f16325;
  color: #151515;
}
#cta {
  position: relative;  
  padding: 50px 0;  
  color: white;  
}

#cta .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;  
}

#cta .cta-bg-img {
  width: 100%;  
  height: 100%;  
  object-fit: cover;  
}

#cta .container {
  position: relative;  
  z-index: 1;  
}
/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
 .portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: black; /* Set the font color to black */
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 3px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
   background: black; /* Retain the hover background color */
  color: #2aabdf;
}
#portfolio-flters li a{
  color:#2aabdf;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgb(194, 190, 190);
  border-radius: 10px;
 
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(21, 21, 21, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-info h3 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #2aabdf;
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color:black;
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}
.portfolio-wrap img {
  width: 100%; 
  height: 200px;
  object-fit: cover; 
}
.portfolio-wrap {
  cursor: pointer;
}

.d-none {
  display: none !important;}

/* =========================
   MOBILE VIEW (0px–767px)
========================= */

/* FORCE MOBILE FIX */

@media (max-width: 768px) {
  .portfolio-item {
    width: 70%;
    margin-bottom: 20px;
   
 
  }
  .portfolio-wrap {
    padding: 10px;
  }

  .portfolio-flters {
    width: 50%;
    margin-bottom: 20px;
    padding: 0 !important;
  }
}
@media (max-width: 767px) {

  .portfolio .portfolio-item {
    width: 100%;
    padding: 0 15px;
    margin-bottom: 20px;
  }

  .portfolio-wrap img {
    height: 220px;   /* slightly bigger for mobile */
  }

  #portfolio-flters {
    text-align: center;
  }

  #portfolio-flters li {
    display: inline-block;
    margin: 5px;
    font-size: 12px;
    padding: 6px 12px;
  }
  

  .portfolio .row {
    justify-content: center;
  }

}
/* =========================
   TABLET VIEW (768px–991px)
========================= */
@media (min-width: 768px) and (max-width: 1024px) {

    .portfolio .row {
    display: flex;
    flex-wrap: wrap;
  }

  .portfolio .portfolio-item {
    width: 50%;
    padding: 15px;
    box-sizing: border-box;
  }

  .portfolio-wrap img {
    height: 220px;
  }

  #portfolio-flters li {
    font-size: 13px;
    padding: 7px 14px;
  }

}


.portfolio-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
  color: #333;
  text-align: center;
}
/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #f16325;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #f16325;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(21, 21, 21, 0.08);
}

.portfolio-details .portfolio-info h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  background: #2aabdf;
  color: #151515;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
  /* margin-left: 25%; */
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #ffc451;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #2aabdf;
  border: 0;
  padding: 10px 24px;
  color: #151515;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #f16325;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumb-item:not(.active) a {
  color: #2aabdf; 
}
.breadcrumb-item + .breadcrumb-item::before {
  color: white;
  
}
.breadcrumb {
  background-color: transparent !important; 
  padding: 0;
  
}
.breadcrumb-item{
  font-weight: bold;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background:#2f2e5c;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

#footer .footer-top .footer-info h3 span {
  color: #f16325;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #292929;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #f16325;
  color: #151515;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color:#f16325;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #f16325;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
  font-size: 12px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
.footer-info .img {
  height: 30px;
  width:40px;
}
.footer-info .footlogo {
  width: 220px;
  height: 100px;
}
.footer-info .social-links{
  margin-left: 80px;
}
footer ul {
  list-style-type: none;
  padding-left: 0;
}

/* footer end*/

/* industries section */
.row-space-1 {
  margin-right: -1px;
  margin-left: -1px;
}

.row-space-1 > [class*="col-"] {
  padding-left: 1px;
  padding-right: 1px;
}
@-webkit-keyframes intro {
0% {
  opacity: 0;
  -webkit-transform: translateY(40px);
  transform: translateY(40px); }
100% {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0); } }

@keyframes intro {
0% {
  opacity: 0;
  -webkit-transform: translateY(40px);
  transform: translateY(40px); }
100% {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0); } }

@-webkit-keyframes finger {
0% {
  opacity: 1; }
100% {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px); } }

@keyframes finger {
0% {
  opacity: 1; }
100% {
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px); } }

.hero-slider-wrap {
position: relative; }

.grid-item {
position: relative; }

.grid-item:before {
content: '';
display: inline-block;
padding-top: 20rem; }

.grid-item img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: block;
-o-object-fit: cover;
object-fit: cover; }

.blog-item {
position: relative; }
.blog-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover; }


  /* porfolio for hover effects */
.portfolio-item {
overflow: hidden; }


.portfolio-item img {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  position: relative;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.portfolio-item:hover img {
  -webkit-transform: scale(1.09);
  -ms-transform: scale(1.09);
  transform: scale(1.09); }

.portfolio-item, .blog-item {
display: block;
overflow: hidden;
position: relative; }

.portfolio-item .overlay, .blog-item .overlay {
  position: relative;
  z-index: 8;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease; }
  .portfolio-item .overlay, .portfolio-item .overlay:before, .blog-item .overlay, .blog-item .overlay:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }

  .portfolio-item .overlay:before, .blog-item .overlay:before {
    background: rgba(0, 0, 0, 0.5);
    content: ""; }

.portfolio-item .wrap-icon, .blog-item .wrap-icon {
  position: absolute;
  right: 20px;
  color: #fff;
  top: 20px; }

.portfolio-item .portfolio-item-content, .blog-item .portfolio-item-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px; }

  .portfolio-item .portfolio-item-content h3, .portfolio-item .portfolio-item-content p, .blog-item .portfolio-item-content h3, .blog-item .portfolio-item-content p {
    color: #fff;
    margin: 0;
    padding: 0; }

  .portfolio-item .portfolio-item-content h3, .blog-item .portfolio-item-content h3 {
    font-size: 18px; }

  .portfolio-item .portfolio-item-content p, .blog-item .portfolio-item-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-family: "Arimo", sans-serif; }

.portfolio-item:hover .overlay, .blog-item:hover .overlay {
  opacity: 1;
  visibility: visible; }

.blog-item {
margin-left: 0 !important; }
.blog-item .overlay {
  opacity: 1;
  visibility: visible; }
  
.blog-item:hover .overlay {
  opacity: 0;
  visibility: hidden; }

  .row.gutter-v4.align-items-stretch {
    row-gap: 20px; 
  }

  .custom-divider {
    width: 50%;
    height: 2px;
    background-color: #333; 
    margin: 20px auto; 
    border-radius: 5px; 
}

.services .img {
  border-radius: 8px;
  overflow: hidden;
}

.services .img img {
  transition: 0.6s;
}

.services .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  position: relative;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}

.services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--contrast-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
}

.services .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover .details h3 {
  color: var(--accent-color);
}

.services .service-item:hover .details .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}

.services .service-item:hover .details .icon i {
  color: var(--accent-color);
}

.services .service-item:hover .img img {
  transform: scale(1.2);
}

.zoom-image:hover {
  transform: scale(1.1); /* Zoom in by 10% when hovered */
}
/* Container for the image */
.zoom-image {
  transition: transform 0.3s ease; /* Smooth transition for the zoom effect */
  will-change: transform; /* Optimize for better performance */
}
.Business .info{
    background: #fff;
    margin-left: 20%;
  }
  
 .Business .info i {
    font-size: 20px;
    color: #5fcf80;
    float: left;
    width: 44px;
    height: 44px;
    background: #ecf9f0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
  }
  
  .Business .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #37423b;
  }
  
  .Business .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #657a6d;
  }
  .features .cta-btn{
    border-color: white;
    color:white;
    width: 70%;
  }

.dataimg {
  max-width: 400%;
  height: auto;
  margin-right: 3s0px;;
}
.portfolio-container .card{
  width: 30rem;
  margin-bottom: 20px;
}
.card-img-top1 {
  height: 5%;
  width: 80%;
  margin-left: 40px;
}
.card-img-top:nth-child(2) {
  margin-top: 10%;
}
.btn-primary{
background-color: #2f2e5c;
}
.copyright {
  flex-grow: 1;
}

.cookie-policy{
  margin-left: 45%;
  margin-top: 5px;
}
/* General form styles */

/* Styling input fields */


.book-a-demo-form  .form-control:focus {
  border-color: #f16325;
  outline: none;
}

/* Styling for the row and columns */
@media (max-width: 768px) {
  .book-a-demo-form .col-md-6 {
    width: 100%;
  }
}

/* Button styles */


/* Loading, error, and success message styles */
.book-a-demo-form  .my-3 {
  text-align: center;
 
}

.book-a-demo-form  .loading {
  display: none;
  font-size: 16px;
  color:#f16325;
}

.book-a-demo-form  .error-message {
  display: none;
  font-size: 16px;
  color: #ff0000;
}

.book-a-demo-form  .sent-message {
  display: none;
  font-size: 16px;
  color: #00cc00;
}

/* Responsive design */
@media (max-width: 600px) {
  .book-a-demo-form {
    padding: 20px;
  }
}

.book-a-demo-form-hr {
  border: 1px solid black;
  width: 100%;
  margin: 20px 0;
}

select {
  appearance: none; 
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 30px; 
}

select:after {
  content: '\2193'; 
  font-size: 20px;
  color: #000; /* Choose a color */
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.portfolio-item.hidden {
  display: none; /* Hide extra items */
}
/* Custom dropdown styling */
.custom-select-wrapper {
  position: relative;
}

.custom-select-wrapper select {
  padding-right: 35px; /* Make room for the dropdown icon */
}

.custom-select-wrapper::after {
  content: '\f0d7'; /* Unicode for FontAwesome down arrow */
  font-family: 'Font Awesome 5 Free'; /* Ensure FontAwesome is used */
  font-weight: 900; /* Make the icon bold */
  position: absolute;
  top: 40%;
  right: 20px;
  transform: translateY(-50%);
  pointer-events: none; /* Ensure the icon doesn't interfere with the dropdown functionality */
}
/* Add padding to the select box */
select.form-control {
  padding-right: 40px;
}

.description-about{
 
  padding: 20px; /* Add padding to the container */
  text-align: justify; /* Justify text alignment for a neat appearance */
}

.description-about p {
  margin-bottom: 15px; /* Add space between paragraphs */
  line-height: 1.6; /* Set line height for readability */
}
.description-about {
  margin-bottom: 0px; /* or any value that suits your layout */
}
.description-about + .description-about {
  margin-top: 0;
}

.btn-primary {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

/* leak testing page */
.leak-test-methods-section{

  background: #2f2e5c;
  color: white;
}
.benchtop-leak-test-section{
   background: #2f2e5c;
   color:white;
}

.quick-connects-highlight img {
  height: 100%;
  object-fit: cover;
}

#hero3 {
      position: relative;
  height: 40vh !important; 
  width: 100%;
  overflow: hidden; /* Important: hides extra content */
  display: flex;
  align-items: center; /* Vertically center content */       
  }
  
  .hero3-img {
   object-fit: cover;
  width: 100%;
  height: 20% !important; 
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;   
  }
  
  #hero3:before {
  content: "";
  /* background: rgba(66, 64, 64, 0.6); */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero3 .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#hero3 h1 {
  margin: 0;
  font-size: 43px;
  font-weight: 600;
  line-height: 64px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.hero-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero1-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.highlight-yellow {
  color: #dfb53a; /* Bootstrap warning color */
  font-weight: bold;
}
#hero .highlight-yellow {
  color: #dfb53a !important;
}
.carousel-caption .highlight-yellow {
  color: #dfb53a !important;
}
@media (min-width: 992px) {
  .hero h1 {
    font-size: 2.75rem;
  }
   .carousel-item img{
height:100vh;
}
}

@media (min-width: 1200px) {
  .hero h1 {
    font-size: 3.40rem;
  }
}
@media (min-width: 1200px) {
  .hero p {
    font-size: 3.40rem;
  }
}

@media (min-width: 769px) and (max-width: 1000px) {
  #hero3 h1 {
    font-size: 1.1rem;
  }
}
@media (min-width: 769px) and (max-width: 1000px) {
  #hero3 h1 {
    font-size: 1.1rem;
  }
}

.FirstSlider1 {
    display: block;
  }

  .FirstSlider2 {
    display: none;
  }

@media (max-width: 768px) {
  #hero3 {
    height: 180vh; /* Adjust based on how much of the image you want visible */
  }
.FirstSlider1 {
    display: none;
  }
  .FirstSlider2 {
    display: block;
  }
  #hero3 .container {
    padding-top: 30px; /* Adjust for mobile spacing */
  }

  #hero3 nav[aria-label="breadcrumb"] {
    margin-top: 6% !important; /* Fix breadcrumb spacing */
    display: flex;
            /* Prevent wrapping */
           /* Optional: scroll if too long */
        /* Prevent breaking lines */
}

@media (max-width: 768px) {
  #hero3 h1{
  font-size: 1.1rem;/* Adjust based on how much of the image you want visible */
  line-height: 25px;
  }
  #hero3 p{
font-size: 0.75rem;
  }
}

#hero3 .breadcrumb {
    font-size: 0.50rem;
    display: inline-flex;
    flex-wrap: nowrap;         /* Prevent child wrapping */
    white-space: nowrap;
}


  /* Hide desktop CTA, show mobile CTA */
  #hero3 .cta-btn {
    display: none !important;
  }

  #hero3 .mobile-cta-wrapper {
    display: block;
    text-align: center;
    padding: 20px;
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size:2rem; /* Adjust this value as needed */
  }

  .hero-description {
    font-size: 1rem; /* Adjust this value as needed */
  }

  .breadcrumb .breadcrumb-item {
    font-size: 0.85rem; /* Optional: reduce breadcrumb font size */
  }

  .cta-btn.hero3 {
    font-size: 1rem; /* Optional: reduce CTA button text size */
  }
}

@media (max-width: 768px) {
  .sciemetric-ipt-section .cta-btn {
    display: none !important; /* Hide desktop CTA on mobile */
  }

  .sciemetric-ipt-section .btn {
    font-size: 0.95rem;
    padding: 10px 15px;
    
  }
}
.product-list.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem; /* spacing between rows and columns */
  list-style-type: disc;
  padding-left: 1rem;
}

.list-unstyled a {
  color: #fcbb24;
  text-decoration: none; /* optional: removes underline */
}

.list-unstyled a:hover {
  color: white; /* optional: golden yellow on hover */
  text-decoration: underline; /* optional hover effect */
}

/* ============================= */
/* Media Queries for Mobile View */
/* ============================= */
@media (max-width: 767.98px) {
  .leak-free-section {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 3rem;
    height: 100vh;
  }

  .leak-free-section .position-relative {
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1rem;
    text-align: center;
  }

  .leak-free-section h2 {
    font-size: 1.5rem;
  }

  .leak-free-section .cta-btn {
    width: 100%;
  }
}

.hero-section {
  height: 100vh;
  overflow: hidden;
}

.hero3-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.content-wrapper {
  z-index: 2;
  padding-top: 8%;
}

.hero-title {
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 1.3;
  
}

.highlight-yellow {
  color: #fdbd20;
}

.hero-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #d3d6e4;
}

.breadcrumb-wrapper {
  margin-top: 3rem;
  margin-right: 70%;
  
}
@media (max-width: 576px) {
  .breadcrumb-wrapper {
    text-align: center;
    font-size: 0.875rem; /* smaller text for mobile */
    padding: 0.5rem 1rem;
  }
}
.cta-btn.hero3{
  bottom: 100px; 
  right: 140px; 
  z-index: 3;
   color: white;
    border-color:
     white; width: 22%;
}
/* .cta-btn.hero3:hover{
color:white;
} */
 .quickconnectbg{
  background-color: #2f2e5c;
 }

 .text-margin {
  margin-left: 50px;
  margin-right: 50px; /* You can adjust top/bottom or use all sides (e.g., margin: 20px;) */
}
.list-footer li{
            list-style: none;
        }
.list-footer li::before{
  content: "&#092;&#048;0BB";
}

.list-footer {
  list-style: none; /* Remove default bullets */
  padding-left: 0;
  margin-left: 10px;
}

.list-footer li::before {
  content: "»"; /* Double arrow */
  margin-right: 8px;
  color: #f16325; /* Optional: set arrow color */
}

 form {
      max-width: 900px;
      margin: 50px auto;
      padding: 30px;

      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
   
    }

    form label {
      display: block;
      margin-top: 5px;
      font-weight: 500;
      color: #333;
    }

    form input[type="text"],
    form input[type="email"],
    form input[type="tel"],
    form input[type="number"],
    form input[type="url"],
    form input[type="password"],
    form input[type="submit"],
    form select,
    form textarea {
      width: 100%;
      padding: 7px;
      margin-top: 5px;
      border-radius: 6px;
      border: 1px solid #ccc;
      font-size: 15px;

      transition: border-color 0.3s, box-shadow 0.3s;
    }

    form input:focus,
    form select:focus,
    form textarea:focus {
      border-color: #007BFF;
      outline: none;
      box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
    }

    form textarea {
      resize: vertical;
      min-height: 80px;
    }

    form input[type="submit"] {
      background-color:  #2aabdf;
      color: #fff;
      border: none;
      margin-top: 20px;
      cursor: pointer;
      font-weight: bold;
      transition: background-color 0.3s;
    }

    form input[type="submit"]:hover {
      background-color: #f16325;
    }

    .g-recaptcha {
      margin-top: 20px;
    }

    @media (max-width: 600px) {
      form {
        padding: 20px;
      }
    }
    /* === Book a Demo Layout === */
.demo-text h6 {
  line-height: 1.7;
  color: #333;
}

.demo-text p {
  font-size: 1.05rem;
  color: #444;
}

.form-wrapper .form-control {
  border-radius: 6px;
  padding: 10px 12px;
}

.form-wrapper select {
  height: 46px;
}

.form-wrapper .btn {
  background-color: #2aabdf;
  border: none;
  /* border-radius: 6px; */
  font-weight: 600;
  transition: 0.3s;
}

.form-wrapper .btn:hover {
  background-color: #f16325;
}

/* === Responsive === */
@media (max-width: 992px) {
  .demo-text {
    text-align: center;
    padding-right: 0;
  }
  .demo-text .section-title p {
    text-align: center;
  }
  .form-wrapper {
    margin-top: 30px;
  }
}
/* ---- Career Card Section Styles ---- */
  .career-section {
    background: #f9fafc;
    padding: 50px 0;
  }

  .career-title {
    text-align: center;
    font-weight: 700;
    color:  #2f2e5c;
    margin-bottom: 40px;
  }

  .job-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
  }
  .job-card h4 {
    color: #2f2e5c;
    font-weight: 600;
  }

  .job-card p {
    color: #333;
  }

  .job-card .location {
    color: #555;
    font-weight: 500;
  }

  .job-card .btn-custom {
    background: linear-gradient(135deg,  #2f2e5c,  #2f2e5c);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 6px 16px;
    font-size: 14px;
    transition: 0.3s ease;
  }

  .job-card .btn-custom:hover {
    background: linear-gradient(135deg,  #f16325, #f16325);
  }

  .job-card .btn-outline-custom {
    border: 1px solid  #2f2e5c;
    color:  #2f2e5c;
    border-radius: 25px;
    padding: 6px 16px;
    font-size: 14px;
    transition: 0.3s ease;
  }

  .job-card .btn-outline-custom:hover {
    background:  #f16325;
    color: #fff;
  }

  .job-card img {
    border-radius: 12px;
    height: 100%;
    object-fit: cover;
  }

 /* Wrapper to isolate badge */
.brand-new-ribbon-wrapper {
  position: relative; /* required for absolute ribbon */
  display: inline-block;
}

/* Diagonal brand-new ribbon on top-left */
.brand-new-ribbon {
    position: absolute;
  top: 10px;
  left: -35px; /* position on left */
  background-color:  #f16325;
  color: white;
  font-weight: bold;
  padding: 5px 50px; /* width of the ribbon */
  transform: rotate(-45deg) translateX(-10px); /* shift text left */
  font-size: 0.75rem;
  z-index: 9999;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  pointer-events: none; /* does not block clicks */
}

/* Small “New” badge for filter tabs */
.filter-new-badge {
  display: inline-block;
  background-color: #f16325;
  color: white;
  font-size: 0.65rem;
  font-weight: bold;
  padding: 2px 6px;
  margin-left: 5px; /* space between text and badge */
  border-radius: 3px;
  vertical-align: middle;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 20px;  /* or similar */
}

@media (max-width: 768px) {
  .hero1-img--mobile {
    width: 100vw;
    height: 60%;
    object-fit: cover;
    position: relative;
    top: 0;
    left: 0;
  }
}

/*--------------------------------------------------------------
# productstyle.css
--------------------------------------------------------------*/
.product-list {
  list-style: none;
  /* Removes the default bullets */
  padding-left: 0;
}

.product-list li::before {
  content: "\2022";
  /* Unicode for a bullet point */
  font-size: 1.2em;
  margin-right: 10px;
  list-style: none;
}

.product-list li {
  list-style: none;
  display: flex;
  align-items: start;
}

.products-list {
  list-style: none;
  /* Removes the default bullets */

}

.products-list li::before {
  content: "\2022";
  /* Unicode for a bullet point */
  font-size: 1.2em;
  margin-right: 10px;
  list-style: none;
}

.products-list li {
  list-style: none;
  /* display:flex; */
  align-items: start;
}


.features .col-lg-12 {
  background-color: #2f2e5c;
  /* Background color of the section */
  color: white;
  /* White text color for contrast */
  padding: 30px;
  position: relative;
  z-index: 1;

}

/* Create a row to split the content into two columns */
.row {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

/* Left side table */
.table-container {
  flex: 1;
  padding-right: 20px;
  margin-top: 10%;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table,
th,
td {
  border: 1px solid #ccc;
}

th,
td {
  padding: 12px;
  text-align: left;
}

.list-container {
  flex: 1;
  padding-left: 20px;
  list-style: none;
}

ul {
  padding-left: 20px;
  list-style-type: none;
}

ul li {

  list-style: none;
}

hr {
  color: #2aabdf;
  border-width: 5px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #2f2e5c;
  /* Blue background */
  background-color: #f16325;
  color: white;
  /* White text */
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  /* Rounded corners */
  transition: background-color 0.3s ease, transform 0.3s ease;
  /* Smooth hover effect */
  width: fit-content;
}

.cta-btn:hover {
  background-color: transparent;
  /* Darker blue on hover */
  transform: translateY(-3px);
  /* Slight lift effect */
  color: #2f2e5c;
}

.cta-btn:active {
  background-color: #2f2e5c;
  /* Even darker blue when clicked */
  transform: translateY(1px);
  /* Button press effect */
}

.features .cta-btn {
  width: fit-content;

}

.cta-btn.feature:hover {
  background-color: transparent;
  /* Darker blue on hover */
  transform: translateY(-3px);
  /* Slight lift effect */
  color: white;

}

.cta-btn:focus {
  outline: none;
  /* Remove default outline when clicked */
}

/* li tab style */
.nav-pills .nav-link {
  border-radius: 5px;
  margin-right: 5px;
  color: rgb(201, 211, 223);
  list-style-type: none;
}

.nav-pills .nav-link.active {
  background-color: #f16325;
}

.white-list li::before {
  color: white;
}

.cta-btn-events {
  display: inline-block;
  padding: 12px 30px;
  border: 2px solid #2f2e5c;
  /* Blue background */
  color: #2f2e5c;
  /* White text */
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  /* Rounded corners */
  transition: background-color 0.3s ease, transform 0.3s ease;
  /* Smooth hover effect */
  width: 40%;
  align-items: center;
}

.cta-btn-events:hover {
  background-color: #010c18;
  /* Darker blue on hover */
  transform: translateY(-3px);
  /* Slight lift effect */
}

.cta-btn-events:active {
  background-color: #2f2e5c;
  /* Even darker blue when clicked */
  transform: translateY(1px);
  /* Button press effect */
}

.cta-btn-events:focus {
  outline: none;
  /* Remove default outline when clicked */
}

.portfolio-details h2, 
h3,
h4,
h5,
h6 {

  font-size: 28px;
  font-weight: 600;

}

#portfolio .section-title {
  margin-bottom: 0;
  padding-bottom: 0;
}

.ai-card-img {
  width: 100%;
  height: 320px;
  /* SAME height for both */
  object-fit: cover;
  /* makes them visually identical */
  background-color: #0b0f2b;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

/* .ai-card-img {
  object-fit: contain;
  padding: 20px;
} */

#ai-product {
  position: relative;
  height: 88vh !important;
  width: 100%;
  overflow: hidden;
  /* Important: hides extra content */
  display: flex;
  align-items: center;
  /* Vertically center content */
}

#ai-product:before {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  /* background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.4) 100%); */
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.breadcrumb-hero {
  top: 78%;
  /* 👈 adjust this to sit below “NOW MADE IN INDIA” */
  transform: translateX(-50%);
}


/* ONLY Sentinel LY-28 page */
.hero-ly28 {
  position: relative;
}

#hero1.no-overlay::before {
  background: none !important;
}

/* Breadcrumb overlay */
.hero-ly28 .hero-breadcrumb {
  position: absolute;
  left: 65%;
  transform: translateX(-50%) translateX(30px);
  z-index: 10;

}

/* Desktop */
@media (min-width: 992px) {
  .hero-ly28 .hero-breadcrumb {
    top: 62%;
  }
  
  .webView {
    display: block;
  }

  .mobView {
    display: none;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .hero-ly28 .hero-breadcrumb {
    top: 72%;
    transform: translateX(-50%);
  }
.hero-ly28 .hero-breadcrumb {
  left: 20%;
}
  .hero-section.Ai-Hero {
    min-height: 40vh;
  }

  .hero-section.Ai-Hero .hero1-img--mobile {
   width: 100vw; 
   height: 100%;
  }

  .webView {
    display: none !important;
  }

  .mobView {
    display: block;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .hero-ly28 {
    padding: 0!important;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-ly28 .hero-breadcrumb {
    bottom: 78%;
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {

  .hero-ly28 {
    display: block;
    padding-top: 70px;
  }

  .hero-ly28 .hero1-img {
    position: static !important;
    width: 100%;
    height: auto !important;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }

  .hero-ly28 .hero-breadcrumb {
    transform: none;
    margin-top: 10px;
  }
}

#hero4 {
  position: relative;
  height: 40vh;
  width: 100%;
  overflow: hidden;
}

.hero4-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
 
  object-fit: cover;
}

@media (max-width: 768px) {
  #hero4 {
    height: 50vh;
  }

  .portfolio-container .card {
    width: 100%;
  }
}

#hero4+section .section-title h2,
#hero4+section .section-title p {
  margin: 0;
  padding: 0;
}

.img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 230px;          /* SAME height */
  width: 50%;
}

.clickable-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;   /* keeps aspect ratio */
  border: 2px solid orange;
  border-radius: 8px;
  padding: 6px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.clickable-img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(255, 165, 0, 0.4);
}


.hero-content {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 0 15px;
}


/* cookiestyle*/ 

/* Base Modal Styling */
.modal {
  display: none;
  position: fixed;
  top: 70%;
  width: 100%;
  height: 70%;
  
  /* z-index: 9999; */
  justify-content: center;
  align-items: center;
    z-index: 10000;
   
}

.modal1 {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 10000; /* High value to appear on top */
  left: 0;
  top: 40%;
  width: 100%;
  height: 100%;
  overflow: auto; /* Enable scroll if needed */
 
  
}

/* Modal Content Box */
.modal-content {
  background-color: #fff;
  max-width: 500px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  margin: auto;
}
.modal1 .modal-content {
  background-color: #fff;
  max-width: 500px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  margin: auto;
}

.cookie-buttons {
  display: flex;
  justify-content: center;   /* or use space-between/space-around if preferred */
  flex-wrap: wrap;           /* wrap if too narrow on mobile */
  gap: 10px;                 /* spacing between buttons */
  margin-top: 0px;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
  
}

.cookie-btn {
  padding: 10px 20px;
  background-color: #2f2e5c;
  color: white;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  flex: 1 1 auto;         /* makes them responsive */
  max-width: 200px;       /* optional: limits how wide each button can grow */
  text-align: center;
}

.cookie-btn:hover {
  background-color: #f16325;
}

/* Checkbox Label Styling */
.modal-content label {
  display: flex;
  align-items: center;
  margin-left: 8px;  /* Smaller vertical margin */
  font-size: 15px;
  cursor: pointer;
  padding: 3px 0;       /* Optional light padding */
  line-height: 1;     /* Tighten line spacing */
}


/* Make sure inputs are aligned nicely */
.modal-content input[type="checkbox"] {
  margin-right: 10px;
}

@media (max-width: 600px) {
  .modal {
    
    padding: 10px;
   top:35%;
  }
}
@media (max-width: 600px) {
  .modal1 {
    
    padding: 10px;
   top:35%;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .modal-content {
    width: 65%;
    padding: 20px;
   
  }
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #000;
  cursor: pointer;
  z-index: 1001;
}

.close-modal:hover {
  color: #ff0000;
}

/* ////////////////////
/////////////Blog Page*/
.blog-container {
  max-width: 1100px;
  margin: auto;
  padding: 50px 20px;
  /* font-family: 'Segoe UI', sans-serif; */
  color: #333;
}

/* HEADER */
.blog-header h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-subtitle {
  font-size: 14px;
  color: #777;
  margin-bottom: 5px;
}

/* INTRO */
.blog-intro {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* SECTION TITLE */
.section-title-blog {
  display: flex;
  align-items: stretch; /* important */
  margin-bottom: 14px;
}

/* NUMBER BOX */
.section-number {
  background: #ff6b35;
  color: #fff;
  font-weight: bold;
  padding: 10px 14px;

  display: flex;
  align-items: center; /* vertical center */
}

/* TITLE */
.blog-section {
   margin-bottom: 50px;
   }

.section-title-blog h2 {
  background: #000;       /* move black here */
  color: #fff;
  margin: 0;              /* remove default margin */
  padding: 10px 15px;
  flex: 1;

  display: flex;          /* key fix */
  align-items: center;    /* vertical center */

  font-size: 20px;
  font-weight: 600;
}
/* SUB HEADINGS */
h4 {
  margin-top: 20px;
  font-size: 14px;
  font-weight: bold;
  color: #555;
}

/* IMPACT BOX */
.impact-box {
  background: #fdf1e7;
  border-left: 5px solid #ff6b35;
  padding: 15px;
  margin: 15px 0;
  border-radius: 6px;
}

.impact-box h5 {
  margin-bottom: 5px;
  font-size: 13px;
  color: #a14b1f;
}

/* MITIGATION BOX */
.mitigation-box {
  background: #eaf5ee;
  border-left: 5px solid #28a745;
  padding: 15px;
  margin-top: 10px;
  border-radius: 6px;
}

.mitigation-box h5 {
  margin-bottom: 8px;
  font-size: 13px;
  color: #1e7e34;
}

.mitigation-box ul {
  padding-left: 18px;
}

.mitigation-box li {
  margin-bottom: 6px;
}

.arrow-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.arrow-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.arrow-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  /* top: 2px; */
  color: #28a745; /* green */
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .blog-header h1 {
    font-size: 24px;
  }

  .section-title {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-number {
    margin-bottom: 8px;
  }
}