body{
  font-family: "Poppins", sans-serif;
}
/* NAVBAR */
.custom-navbar {
  background: transparent;
  /* transition: 0.4s; */
  width:100%;
}



/* FULL SCREEN LOADER */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #04274BD9;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

/* YOUR LOADER */
.loader {
  width: 50px;
  aspect-ratio: 1.154;
  position: relative;
  background: conic-gradient(from 120deg at 50% 64%,#0000, #00d4ff 1deg 120deg,#0000 121deg);
  animation: l27-0 1.5s infinite cubic-bezier(0.3,1,0,1);
}
.loader:before,
.loader:after {
  content:'';
  position: absolute;
  inset:0;
  background:inherit;
  transform-origin: 50% 66%;
  animation: l27-1 1.5s infinite;
}
.loader:after {
  --s:-1;
}

/* ANIMATIONS */
@keyframes l27-0 {
   0%,30%      {transform: rotate(0)}
   70%         {transform: rotate(120deg)}
   70.01%,100% {transform: rotate(360deg)}
}
@keyframes l27-1 {
   0%      {transform: rotate(calc(var(--s,1)*120deg)) translate(0)}
   30%,70% {transform: rotate(calc(var(--s,1)*120deg)) translate(calc(var(--s,1)*-5px),10px)}
   100%    {transform: rotate(calc(var(--s,1)*120deg)) translate(0)}
}


/* DEFAULT (TOP) */


/* AFTER SCROLL */
.custom-navbar.scrolled {
  background: rgba(2, 2, 38, 0.80);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}


.navbar.scrolled .nav-link {
  color: #fff !important;
}
.gap-3{
  gap:3rem !important;
}

.nav-link {
  font-size: 18px;
  color: #fff !important;
  font-weight: 500;
}
.logo{
    padding: 8px;
    height: 80px;
}

.nav-link:hover {
  color: #00d4ff !important;
}

/* HERO SECTION */
.hero-slide {
  height: 88vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.5;
}

.carousel-indicators .active {
  opacity: 1;
  background-color: #F67728; /* your theme color */
}

/* OVERLAY */
/* .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 20, 40, 0.7);
  backdrop-filter: blur(4px);
} */

/* CONTENT */
.carousel-item {
  transition: transform 1.2s ease-in-out;
}

.carousel-inner {
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

/* TEXT STYLE */
.hero-content h1 {
  color: #fff;
  font-size: 60px;
  font-weight: 300;
}

.hero-content span {
  font-size: 28px;
  font-weight: 400;
}

.hero-content strong {
  font-size: 70px;
  font-weight: bold;
}

/* ANIMATION */
.animate-text {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .custom-navbar{
    background: transparent;
  }
  .custom-navbar .navbar-collapse{
    background: rgba(2, 2, 38, 0.80);
    border-radius: 10px;
    padding: 10px;
  }
  .navbar-nav{
    text-align: center;
  }
 
 
  .navbar-toggler:focus {
    text-decoration: none;
    border:none;
    outline: 0;
    box-shadow: none;
}
  .logo{
     height:60px;
  }
  .hero-slide{
    height: 33vh;
  }
  p{
    font-size: 13px !important;
  }
  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content strong {
    font-size: 40px;
  }

  .hero-content span {
    font-size: 15px;
  }
}
@media(max-width:921px){
  .hero-slide{
    height: 33vh;
  }
 
}

.unify-section {
  /* background: #fff; */
  padding: 60px 20px !important;
}

.title {
  color: #F67728;
  font-family: 'Antonio', sans-serif;
  font-weight: 400;
  font-size: 45px;
}

.subtitle {
  max-width: 1100px !important;
  margin: 15px auto;
  line-height: 22px;
  color: #000;
}

.bold-text {
  font-weight: 600;
  margin-bottom: 50px;
}
.triangle-boxs .main-img {
  width: 90%;
  transition: 0.4s;
   position: relative;
  display: inline-block;
}


.triangle-boxs .overlay-img {
  position: absolute;
  top: 46%;
  left: 38%;
  transform: translate(-50%, -50%) scale(1);
  width: 50%;
  transition: transform 0.4s ease;
   
}
.btn-primary{
  background-color:#173E69;
  border:1px solid #173E69;
}
.btn-primary:hover{
  background-color: #173E69;
}

.btns{
  font-size: 13px;
  background-color: #F67728;
  border: 1px solid #F67728;
  color:#fff;
  text-decoration: none;
  padding: 5px;
  border-radius: 5px;
}
.btns:hover{
   background-color: #F67728;
    color:#fff;
}
.overlay-img:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.triangle-boxs .overlay-imgs{
      position: absolute;
    top: 39%;
    left: 63%;
    transform: translate(-50%, -50%) scale(1);
    width: 46%;
     transition: transform 0.4s ease;
}
.overlay-imgs:hover{
    transform: translate(-50%, -50%) scale(1.1);
}




.triangle-box img {
  width: 80%;
  /* transition: 0.4s; */
}

/* .triangle-box img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(0,0,0,0.2));
} */


/* BOTTOM */
.bottom-title {
  color: #F67728;
  margin-top: 60px;
  font-family: "Antonio";
  font-weight: 400;
  font-size: 45px;
}

.bottom-sub {
 font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.description {
  max-width: 800px;
  margin: auto;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .circle-wrapper {
    width: 250px;
    height: 250px;
  }
  .floating-icons a {
  width: 25px !important;
  height: 25px !important;
  font-size: 15px !important;

}
.jficc .noupe-chat-button.noupe-chat-button-variant-2 {
    padding:8px !important;
}

  .triangle-box {
    width: 100%;
  }

  .title {
    font-size: 28px;
  }

  .bottom-title {
    font-size: 24px;
  }
  .automation-section {
    background: url('image/mobilebanner.jpg') center/cover no-repeat !important;
  }

}

.automation-section {
  position: relative;
  background: url('image/banner4.png') center/cover no-repeat;
  padding: 60px 0;
  color: #fff;
}


/* DARK OVERLAY */
/* .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(10, 30, 60, 0.85);
  top: 0;
  left: 0;
} */

/* CONTENT */
.container {
  position: relative;
  z-index: 2;
}

/* CARD */
.triangle-card {
  transition: 0.4s;
}

/* TRIANGLE IMAGE */
.triangle-img {
  position: relative;
  width: 300px;
  margin: auto;
  transition: 0.4s;
}

.triangle-img img {
  width: 100%;
  transition: 0.4s;
}

/* ICON CENTER */
.triangle-img .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: #fff;
}

/* GLOW EFFECT */
.hvac img {
  filter: drop-shadow(0 0 10px #00ffff);
}

.lighting img {
  filter: drop-shadow(0 0 10px #ffaa00);
}

.utility img {
  filter: drop-shadow(0 0 10px #d847f2);
}

/* HOVER ANIMATION */
.triangle-card:hover {
  transform: translateY(-10px);
}

.triangle-card:hover img {
  transform: scale(1.08);
}

.triangle-card:hover .hvac img {
  filter: drop-shadow(0 0 20px #00ffff);
}

.triangle-card:hover .lighting img {
  filter: drop-shadow(0 0 20px #ffaa00);
}

.triangle-card:hover .utility img {
  filter: drop-shadow(0 0 20px #d847f2);
}

/* TEXT */
.triangle-card h4 {
  margin-top: 20px;
  font-weight: 600;
  font-size: 25px;
  font-family: 'Antonio';
}

.triangle-card p {
  font-size: 15px;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .triangle-img {
    width: 250px;
  }

  .triangle-img .icon {
    font-size: 22px;
  }
}



.industry-section {
  background: #fff;
}


.image-wrapper {
  position: relative;
  text-align: center;
}

.main-img {
  width: 100%;
  max-width: 1100px;
}
/* .main-img:hover {
  transform: scale(1.05);
} */

/* TEXT COMMON */
.text-box {
  position: absolute;
  max-width: 250px;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s;
}

.text {
  font-weight: 600;
  font-size:30px;
  font-family: "Antonio";
}

p{
    font-size: 15px;
}

/* LEFT TEXT */
.text-box.left {
      left: 21%;
    top: 61%;
}

/* RIGHT TEXT */
.text-box.right {
  right: 25%;
    top: 60%;
}

/* BOTTOM CENTER */
.text-box.bottom {
  left: 36%;
  transform: translateX(-50%);
  bottom: -50px;
  max-width: 400px;
}

/* SHOW ANIMATION */
.text-box.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .text-box {
    position: static;
    transform: none;
    opacity: 1;
    margin-top: 20px;
  }

  .text-box.bottom {
    transform: none;
  }
  .video-section {
  padding: 10px 20px !important;
  background: #fff;
}
}

.video-section {
  padding-top: 232px;
  padding-bottom: 20px;
  background: #fff;
}

/* MAIN BOX */
.video-box {
  background: #154a7d;
  border: 4px solid #dbe6f2;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}

/* TEXT */
.video-box h2 {
  color: #fff;
  font-size: 60px;
  font-weight: 500;
  letter-spacing: 2px;
}

/* HOVER EFFECT */
.video-box:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* ANIMATION (ON LOAD) */
.video-box {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .video-box {
    height: 200px;
  }

  .video-box h2 {
    font-size: 40px;
  }
}




/* CARD */
.info-card {

  background: #E8EEF0;
  border-radius: 12px;
  padding:20px 30px;
  height: 100%;
  position: relative;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(50px);
}

/* TEXT */
.info-card p {
  line-height: 22px;
  font-size: 15px;
  color: #000;
 
}

/* TITLE */
.info-card h2 {
  margin-top: 20px;
  font-size: 40px;
  font-family: "Antonio";
  font-weight: 500;
  color: #777;
  text-align: center;
}

/* HOVER EFFECT */
.info-card:hover {
  background: #cfcfcf;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ANIMATION ACTIVE */
.info-card.show {
  opacity: 1;
  transform: translateY(0);
}

.custom-footer {
  position: relative;
  background: url('image/Group\ 17.png') no-repeat center/cover;
  padding: 50px 20px;
  color: #fff;
  overflow: hidden;
}

/* BLUE OVERLAY */
/* .custom-footer .footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 60, 110, 0.9);
  z-index: 1;
} */

.custom-footer .container {
  position: relative;
  z-index: 2;
}

/* LEFT CONTENT */
.footer-left h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-left p {
  font-size: 15px;
  line-height: 1.6;
}

.footer-left .contact {
  margin-top: 10px;
}

/* EMAIL BOX */


.email-box {
  /* display: flex; */
      height: 40px;
      gap:10px;
    display: flex;
  margin: auto;
  background: transparent;
}

.email-box input {

  padding: 18px 25px;
  border-radius: 10px;
  border: 2px solid #ffffff;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 15px;
}

.email-box input::placeholder {
  color: #ffffff;
  opacity: 0.8;
}

.email-box button {
  padding: 5px 30px;
  border: none;
  background: #ff7a21;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

.email-box button:hover {
  background: #e56710;
}
/* MENU */
.footer-right {
  display: flex;
  margin-bottom: -36px !important;
  justify-content: space-between;
  align-items: center;
}

.menu ul {
  list-style: none;
  padding: 0;
}

.menu li {
  margin-bottom: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.menu li:hover {
  color: #ff6a00;
}

/* LOGO */
.footer-logo img {
  max-width: 230px;
  opacity: 0.9;
  margin-bottom:85px;

}

/* ANIMATION */
.footer-left,
.menu,
.footer-logo {
  opacity: 1;
  /* transform: translateY(40px); */
  /* transition: 0.6s ease; */
}
.hvac-automate{
  max-width:1000px;
}

.show-footer {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.footer-link {
        color: #fff !important;
    text-decoration: none !important;
  }
/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-right {
    flex-direction: column;
    text-align: center;
    margin-bottom: 0px !important;
    margin-top: 30px;
  }

  .footer-logo img {
    width: 80%;
    margin-top: 20px;
    margin-bottom:0px;
  }
  .footer-link {
        color: #fff !important;
    text-decoration: none !important;
  }

  .email-box {
    flex-direction: column;
  }
  .email-box input{
    padding: 5px 11px;
  }
 
  .email-box input,
  .email-box button {
    width: 100%;
    border-radius: 8px;
    margin-top: 5px;
  }
  .aa{
    padding-left:12px !important;
  }
}

/* industry section start */
.industry-section {
  padding: 0px 20px;
  padding-bottom: 50px;

}
.industry{
  max-width:1100px;
}
.aa{
  padding-left: 30px;
  padding-right:0px;
}

.industry-title {
  color: #F67728;
  font-family: 'Antonio', sans-serif;
  font-size: 45px;
  margin-bottom:20px;
 
}
h6{
  font-size:15px;
}

/* .industry-row {
  margin-bottom: 50px;
} */

.industry-img {
  width: 100%;
 
}



.industry-section h4 {
  font-weight: 600;
  font-size:19px;
  margin-bottom: 10px;
}

.industry-section p {
  font-size: 15px;
  line-height:19px;
  color: #444;
}

.industry-section ul {
  padding-left: 18px;
}

.industry-section ul li {
  font-size: 15px;
  line-height:17px !important;
  margin-bottom: 5px;
}

/* MOBILE */
@media (max-width: 768px) {
  .industry-title {
    font-size: 24px;
  }

  .industry-row {
    text-align: left;
  }

  .industry-section h4 {
    margin-top: 15px;
  }
  .industry-section ul li {
    font-size:14px;
    text-align: left;
  }
  
  h4{
    font-size:15px;
  }
  .industry-img {
    height: auto;
    margin-top:10px;
  }
}

.footer-social {
  display: flex;
  gap: 20px; /* space between icons */
}

.social-icon {
  margin-left:15px;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.social-icon:hover {
  color: orange; /* hover effect */
}

/* industry section end */