/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: black;
  color: #f1f1f1;
 
}
.header-wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
/* Top Bar */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #d63031;
  color: #fff;
  font-size: 15px;
  padding: 8px 20px;
  z-index: 1060;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}


.top-bar a {
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s, color 0.3s;
}

.top-bar i {
  margin-right: 6px;
  transition: transform 0.3s, color 0.3s;
}

.top-bar span,
.top-bar i {
  cursor: pointer;
}

.top-bar span:hover,
.top-bar a:hover,
.top-bar i:hover {
  transform: scale(1.1);
  color: #000;
}

/* Social Icons */
.social-icons a {
  color: #fff;
  margin-left: 15px;
  font-size: 16px;
  transition: transform 0.3s, color 0.3s;
  cursor: pointer;
}

.social-icons a:hover {
  transform: scale(1.3);
  color: #000;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 40px; /* Adjust based on your .top-bar height */
  left: 0;
  width: 100%;
  z-index: 1050;
  background-color: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Company Name */

/*.company-name h1 {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
}

.company-name .encon {
  font-weight: 1000;           /* Heavy bold 
  color: #d63031;             /* Highlight red 
  letter-spacing: 1px;
}

.company-name .equipments {
  font-weight: 500;           /* Lighter than ENCON 
  color: #212121;             /* Dark grey 
  margin-left: 6px;
}*/

.company-name h1 {
  margin: 0;
  line-height: 1.2;
}

.company-name .encon {
  font-size: 30px;     /* Bigger */
  font-weight: 700;
  color: #d63031;
  /*letter-spacing: 0.5px;*/
  margin-right: 2px;
}

.company-name .equipments {
  font-size: 28px;     /* Slightly smaller */
  font-weight: 500;
  color: #212121;
  margin-left: 0px;
}


.company-name h2 {
  font-size: 25px;
  font-weight: 800;
  color: #555;
  margin: 0;
  margin-top: 2px;
}

.navbar-brand img {
  height: 100px;
  margin-right: 10px;
}

.navbar .navbar-brand {
  margin-right: 40px;
}

.navbar-brand span {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.navbar-nav .nav-item {
  margin: 0 10px;
}

.navbar-nav .nav-link {
  color: #333 !important;
  font-weight: 600;
  padding: 8px 12px;
  position: relative;
  transition: color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #d63031 !important;
  box-shadow: 0 0 10px rgba(214, 48, 49, 0.45); /* stronger and darker glow */
  background-color: rgba(214, 48, 49, 0.08);   /* slightly darker background */
  border-radius: 5px;
}

.dropdown-menu {
  background: #fff;
  border: 1px solid #ccc;
  padding: 0;
}

.dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  padding: 8px 16px;
  transition: background 0.2s ease;
}

.dropdown-menu .dropdown-item i {
  color: #d63031;
  width: 20px;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #d63031;
  color: #fff;
}

.dropdown-menu .dropdown-item:hover i {
  color: #fff;
}

@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out;
}

.search-bar input {
  border: 1px solid #ccc;
  border-radius: 5px 0 0 5px;
  padding: 5px 10px;
  outline: none;
  transition: all 0.3s ease-in-out;
}

.search-bar input:focus {
  border-color: orange;
  box-shadow: 0 0 8px rgba(255, 165, 0, 0.6);
  transform: translateX(5px); /* slight shift */
}

.search-bar button {
  border: none;
  background-color:red;
  color: #fff;
  padding: 6px 12px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.search-bar button:hover {
  background-color: #b82325;
  transform: scale(1.05); /* zoom on hover */
}

@media (max-width: 768px) {
  .search-bar {
    margin-top: 10px;
    width: 100%;
    justify-content: center;
  }

  .search-bar input {
    width: 70%;
  }
}

/*show icons hover*/
 /* Floating Icon Bar on Left */
    .contact-bar {
      position: fixed;
      left: 0;
      top: 70%;
      display: flex;
      flex-direction: column;
      z-index: 9999;
      gap: 15px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      background: #222;
      border-radius: 0 30px 30px 0;
      overflow: hidden;
      text-decoration: none;
      color: white;
      transform: translateX(0);
      transition: all 0.3s ease;
      padding: 8px 10px 8px 5px;
    }

    .contact-item:hover {
      transform: translateX(10px) scale(1.05);
      background: #00ffff;
      color: #000;
    }

    .contact-icon {
      width: 40px;
      height: 40px;
      background: #00ffff;
      color: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      border-radius: 50%;
      margin-right: 10px;
      transition: transform 0.3s;
    }

    .contact-label {
      white-space: nowrap;
      font-size: 14px;
    }

    /* WhatsApp specific styling */
    .whatsapp .contact-icon {
      background: #25D366;
      color: #fff;
    }

    .whatsapp:hover {
      background: #1da851;
      color: #fff;
    }

    /* Responsive styles */
    @media screen and (max-width: 768px) {
      .contact-bar {
        top: auto;
        bottom: 100px;
        left: 10px;
        gap: 10px;
      }

      .contact-item {
        padding: 6px 10px 6px 5px;
      }

      .contact-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
      }

      .contact-label {
        font-size: 12px;
      }
    }

    @media screen and (max-width: 480px) {
      .contact-label {
        display: none; /* Only show icons on small mobile */
      }

      .contact-icon {
        margin-right: 0;
      }

      .contact-item {
        border-radius: 50%;
        padding: 0;
        justify-content: center;
        width: 40px;
        height: 40px;
      }
    }
/*show icons hover end*/

/*coursel*
.slider {
  width: 100%;
  height: 850px;
  padding: 40px 60px;
/*background: url('-liverani-XLFu0PM5Qsg-unsplash.jpg') no-repeat center center/cover;*
/*background: url('images/bg.jpg') no-repeat center center/cover;
background-color: red;
  color: #fff;
  position: relative;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  animation: fadeInBg 1.5s ease;
}

.text-left {
  width: 50%;
  margin-right: 40px; /* slight push to the left *
   padding-left: 120px;
  z-index: 2;
}

.text-left h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ffc107;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  animation: fadeSlideRight 1s ease;
}

.text-left p {
  font-size: 2rem;
  color: #dcdcdc;
  animation: fadeSlideUp 1.2s ease;
}

.img-right {
  width: 45%;
  text-align: right;
  transform: translateX(-60px); /* ✅ Slight move to the left *
  z-index: 2;
}


.img-right img {
  max-height: 200px;
  width: auto;
  padding: 10px;
  border-radius: 20px;
  background: radial-gradient(circle, rgba(255,255,255,0.4), rgba(255,255,255,0));
  box-shadow: 0 0 40px rgba(255,255,255,0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: zoomPop 1.4s ease, floatImage 6s ease-in-out infinite;
}

.img-right img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(255,255,255,0.4);
}

.quote-box {
  position: absolute;
  bottom: 10px;
  right: 30px;
  text-align: right;
  z-index: 10;
  animation: popIn 1.8s ease;
}

.quote-text {
  color: #ffc107;
  font-size: 1.1rem;
  font-weight: bold;
  text-shadow: 1px 1px 3px #000;
}

.quote-btn {
  font-weight: bold;
  padding: 10px 20px;
  background-color: #ffc107;
  color: #000;
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(255,193,7,0.5);
}

.quote-btn:hover {
  background-color: #e0a800;
  color: #fff;
}

.modal-content {
  background-color: #1e1e1e;
  color: #fff;
}

.carousel-control-prev,
.carousel-control-next {
  top: 30px; /* Moves the button vertically towards the top *
  width: auto;
  height: auto;
  background: none;
  border: none;
  z-index: 10;
}

.carousel-control-prev {
  left: 20px; /* Distance from the left *
}

.carousel-control-next {
  right: 20px; /* Distance from the right *
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none !important; /* Remove Bootstrap background image *
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #ffc107;
  width: 40px;
  height: 40px;
}

.carousel-control-prev-icon::after {
  content: '❮';
}

.carousel-control-next-icon::after {
  content: '❯';
}


--------------------------------------------------------------------------
/*.carousel-control-prev,*
.carousel-control-next {
  top: 80px; /* Move arrows to near the top *
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  position: absolute;
  z-index: 99;
}

.carousel-control-prev {
  left: 10px;
}

.carousel-control-next {
  right: 10px;
}*/
----------------------------------------------------------------------------------------
/* Zoom Modal *
.zoom-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  text-align: center;
  overflow: auto;
}

.zoomed-img {
  margin: 60px auto;
  max-width: 90%;
  max-height: 85vh;
  display: block;
  border: 4px solid #ffc107;
  border-radius: 5px;
  animation: zoomIn 0.4s ease;
}

.zoom-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* Animations *
@keyframes fadeInBg {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

@keyframes fadeSlideRight {
  0% { transform: translateX(-30px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes fadeSlideUp {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes zoomPop {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes popIn {
  0% { transform: scale(0.6); opacity: 0; }
  80% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}

@keyframes zoomIn {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Responsive *
@media (max-width: 768px) {
  .slider {
    flex-direction: column;
    height: auto;
    padding: 30px 20px;
  }

  .text-left, .img-right {
    width: 100%;
    text-align: center;
  }

  .quote-box {
    bottom: 10px;
    right: 10px;
    text-align: center;
  }
}
.slider-footer {
  background-color: #d63031;
  padding: 20px 0;
  border-top: 2px solid #fff;
  text-align: center;
}

.slider-footer h2 {
  margin: 0;
  font-size: 22px;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}

.slider-footer .highlight {
  color: #ffc107;
}



/* coursel end*/

/* Swiper Slider 
.swiper {
  width: 100%;
  height: 600px;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}

.slide-text {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 10px;
  margin-top: 120px;
  color: #fff;
}

.slide-text h1 {
  font-size: 36px;
}

.slide-text p {
  font-size: 18px;
}*/

/* Brands Section *
.brands-section {
  background: #181818;
  color: white;
  text-align: center;
  padding: 50px 15px 30px;
}

.brands-section h2 {
  color: #0dcaf0;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
}

.slider {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  gap: 20px;
  white-space: nowrap;
}

.slide {
  flex: 0 0 auto;
  width: 250px;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 2px 2px rgba(255,255,255,0.1));
  transition: 0.3s ease;
}

.slide img:hover {
  filter: brightness(1.2);
}*/
/*coursel starrt*/
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  overflow-x: hidden;
}

.slider {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  height: 850px;
  padding: 40px 60px;
  background: url('images/your-background.jpg') no-repeat center center/cover;
  background-color: #8B0000;
  color: #fff;
  position: relative;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}


    .text-left {
      width: 50%;
      padding-left: 60px;
      z-index: 2;
      margin-left: 80px;
    }

    .text-left h1 {
      font-size: 2.8rem;
      color: #ffc107;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    }

    .text-left p {
      font-size: 1.7rem;
      color: #eee;
    }

    .img-right {
      display: flex;
      gap: 20px;
      justify-content: center;
      align-items: center;
      flex-wrap: nowrap;
      margin-right: 50px;
    }

    .img-right img {
  max-height: 180px;
  width: auto;
  border-radius: 12px;
  padding: 8px;
  background: #fff;
  border: 5px solid #8B0000 !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: zoom-in;
}

.img-right img:hover {
  transform: scale(1.05);
   border-color: #8B0000 !important;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}


    .img-right.one img {
      max-height: 250px;
    }

    .img-right.two img {
      max-height: 220px;
    }

    .img-right.three img {
      max-height: 150px;
    }

    .img-right img:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(255,255,255,0.4);
    }

    .quote-box {
      position: absolute;
      bottom: 20px;
      right: 30px;
      text-align: right;
      z-index: 10;
    }

    .quote-text {
      color: #ffc107;
      font-size: 1.1rem;
      font-weight: bold;
      text-shadow: 1px 1px 3px #000;
    }

    .quote-btn {
      margin-top: 8px;
      padding: 10px 20px;
      background-color: #ffc107;
      color: #000;
      border: none;
      border-radius: 5px;
      font-weight: bold;
    }

    .quote-btn:hover {
      background-color: #e0a800;
      color: #fff;
    }

    .carousel-control-prev,
    .carousel-control-next {
      top: 50%;
      transform: translateY(-50%);
      width: 60px;
      height: 60px;
      background: none;
      border: none;
      z-index: 10;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-image: none !important;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size:50px;
      color: #ffc107;
    }

    .carousel-control-prev-icon::after { content: '❮'; }
    .carousel-control-next-icon::after { content: '❯'; }

    .slider-footer {
      background-color: #d63031;
      padding: 20px 0;
      text-align: center;
    }

    .slider-footer h2 {
      margin: 0;
      font-size: 3rem;
      color: #fff;
    }

    .slider-footer .highlight {
      color: #ffc107;
    }

    .zoom-modal {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.9);
      text-align: center;
      overflow: auto;
    }

    .zoomed-img {
      margin: 60px auto;
      max-width: 90%;
      max-height: 85vh;
      display: block;
      border: 4px solid #ffc107;
      border-radius: 5px;
      animation: zoomIn 0.4s ease;
    }

    .zoom-close {
      position: absolute;
      top: 20px;
      right: 30px;
      color: #fff;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
    }

    @keyframes zoomIn {
      0% { transform: scale(0.6); opacity: 0; }
      100% { transform: scale(1); opacity: 1; }
    }
/*coursel end*/

/* Product Section */
.product-section {
  width: 100%;
  padding: 60px 20px;
  background: linear-gradient(135deg, #212529, #121212);
  /*background-color: red;*/
  /*background-color: #b82325;*/
}

.products-title {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 10px;
  color: yellowgreen;
}

.products-subheading {
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  color: #ccc;
  margin-bottom: 30px;
}

.full-width-description p {
  max-width: 900px;
  margin: 10px auto;
  font-size: 16px;
  text-align: center;
  color: #ccc;
}

.centri {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 40px 0 30px;
}

.centri button {
  background: linear-gradient(45deg, #00c9ff, #92fe9d);
  color: #000;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
  font-weight: bold;
  border: none;
  box-shadow: 0 0 10px #00c9ff55;
}

.centri button:hover {
  background: linear-gradient(45deg, #ffc107, #fd7e14);
  color: #000;
  box-shadow: 0 0 15px #ffc107aa;
}

.product-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
}

.pump-card {
  background: #1e1e1e;
  border-radius: 12px;
  width: 280px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.pump-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.8);
}
/*
.image-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}*/

.pump-label {
  background: #0dcaf0;
  padding: 12px 15px;
  font-size: 16px;
  color: #000;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pump-label a {
  color: #000;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.pump-label a:hover {
  transform: translateX(5px);
}

.view-all {
  text-align: center;
  margin: 30px 0 10px;
}

.view-all a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  background: linear-gradient(45deg, #0d6efd, #6610f2);
  padding: 12px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.view-all a:hover {
  background: #ffc107;
  color: #000;
}
.image-wrapper {
  overflow: hidden; /* prevents image from overflowing */
}

.image-wrapper img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pump-card:hover .image-wrapper img {
  transform: scale(1); /* zoom effect */
}


/* Responsive */
@media (max-width: 768px) {
  .top-bar,
  .header {
    flex-direction: column;
    text-align: center;
  }

  .search-box {
    margin-top: 10px;
  }

  .products-title {
    font-size: 30px;
  }

  .products-subheading {
    font-size: 16px;
  }

  .pump-card {
    width: 90%;
  }

  .centri {
    flex-direction: column;
  }
}

/*About us *

.about-section {
  max-width: 1200px;
  margin: 60px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  gap: 50px;
  flex-wrap: wrap;
}
.about-text {
  flex: 1;
  min-width: 320px;
}
.about-text h2 {
  font-weight: 700;
  font-size: 42px;
  color: #0d6efd;
  margin-bottom: 20px;
}
.about-text p {
  color: #444;
  margin-bottom: 15px;
  font-size: 18px;
}
.read-more-btn {
  display: inline-block;
  padding: 10px 18px;
  background-color: #0d6efd;
  color: white;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.read-more-btn:hover {
  background-color: #0846b1;
}
.about-images {
  flex: 1;
  min-width: 320px;
}
.about-images img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  object-fit: cover;
  max-height: 320px;
}*/

/*About us end*/

/*capabilities start*/
/*.capabilities-heading {
  /*background-image: url('images/LCR-web-Program-Management-scaled.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  padding: 60px 30px 20px; /* Adjust as needed *
  color: rgb(68, 7, 7); /* Optional: for better text visibility *
  text-align: center;
}

/*.capabilities-heading {
  text-align: center;
  background-color: #000;
  padding: 60px 20px 30px;
}*

.capabilities-heading h2 {
  font-size: 36px;
  color: #2d0100;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 2px solid #444;
  display: inline-block;
  padding-bottom: 10px;
}

.full-line {
  height: 3px;
  width: 100%;
 /* background: linear-gradient(to right, #ffc107, #444, #ffc107);*
  margin: 0 auto;
}

    .hover-slider {
      display: flex;
      height: 100vh;
      overflow: hidden;
    }

    .slider-panel {
      flex: 1;
      position: relative;
      background-size: cover;
      background-position: center;
      transition: transform 0.4s ease;
      cursor: pointer;
      border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .slider-panel:last-child {
      border-right: none;
    }

    .slider-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      transition: background 0.3s ease;
      z-index: 1;
    }

    .slider-panel:hover {
      transform: scale(1.05);
      z-index: 2;
    }

    .slider-panel:hover::before {
      background: rgba(0, 0, 0, 0.2);
    }

    .panel-content {
      position: absolute;
      bottom: 30px;
      left: 30px;
      z-index: 2;
      transition: all 0.3s ease;
    }

    .panel-content h3 {
      margin-bottom: 10px;
      font-size: 24px;
      color: #ffc107;
      transition: color 0.3s ease;
    }

    .panel-content p {
      font-size: 14px;
      color: #bbb;
      transition: color 0.3s ease;
    }

    .slider-panel:hover .panel-content h3 {
      color: red;
    }

    .slider-panel:hover .panel-content p {
      color: #fff;
    }

    /* Fullscreen Preview *
    .fullscreen-preview {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 100vw;
      background: rgba(0, 0, 0, 0.95);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    .fullscreen-preview img {
      max-width: 50%;
      max-height: 50%;
      border: 5px solid #ffc107;
      border-radius: 10px;
    }

    @media (max-width: 768px) {
      .hover-slider {
        flex-direction: column;
        height: auto;
      }

      .slider-panel {
        height: 25vh;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        border-right: none;
      }

      .slider-panel:last-child {
        border-bottom: none;
      }

      .panel-content {
        bottom: 15px;
        left: 15px;
      }
    }*/
/*capabilities end*/

/*graph start css*
.counter-section {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.counter-section h2 {
  font-size: 40px;
  margin-bottom: 40px;
  color: blue;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
 width: 100%;
  margin: 0 auto;
}

.counter-box {
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.counter-box:last-child {
  border-right: none;
}

.counter-box img {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
  filter: brightness(1.2);
}

.counter-box h3 {
  font-size: 42px;
  color: #0d6efd;
  margin: 0;
}

.counter-box p {
  font-size:20px;
  margin-top: 8px;
}

/*graph start end*/

/*ENCON START*/
.why-encon {
  background: #000;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.why-encon h2 {
  font-size: 42px;
  color: #00ffe7;
  margin-bottom: 50px;
  text-transform: uppercase;
  animation: glowTitle 2s ease-in-out infinite alternate;
}

.why-encon h2 span {
  color: #ff0080;
  text-shadow: 0 0 20px #ff0080, 0 0 40px #ff0080;
  animation: colorWave 4s linear infinite;
}

.why-encon ul {
  list-style: none;
  padding: 0;
  max-width: 750px;
  margin: auto;
}

.why-encon li {
  font-size: 20px;
  margin: 25px 0;
  opacity: 0;
  transform: translateX(-100vw);
  animation: slideInLeft 1s forwards;
  position: relative;
}

.why-encon li:nth-child(1) { animation-delay: 0.3s; }
.why-encon li:nth-child(2) { animation-delay: 0.6s; }
.why-encon li:nth-child(3) { animation-delay: 0.9s; }
.why-encon li:nth-child(4) { animation-delay: 1.2s; }

.icon {
  margin-right: 10px;
  font-size: 22px;
  filter: drop-shadow(0 0 4px #0ff);
  animation: pulse 1.2s infinite alternate;
}

/* Animations */
@keyframes slideInLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes glowTitle {
  from {
    text-shadow: 0 0 10px #00ffe7;
  }
  to {
    text-shadow: 0 0 30px #00ffe7, 0 0 60px #00ffe7;
  }
}

@keyframes colorWave {
  0%   { color: #ff0080; }
  25%  { color: #0ff; }
  50%  { color: #ffc107; }
  75%  { color: #00ff4c; }
  100% { color: #ff0080; }
}

@keyframes pulse {
  from { transform: scale(1); }
  to   { transform: scale(1.2); }
}
/*ENCON END*/

/*brands slider start*/
/*brands slider end*/

/*testionmals start*/
.testimonials {
  background: #000;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  margin-top: -40px;
}

.testimonials h2 {
  font-size: 36px;
  color: #0dcaf0;
  margin-bottom: 40px;
  text-shadow: 0 0 15px #0dcaf055;
  position: relative;
  display: inline-block;
  cursor: default;
}

/* Hover underline effect */
.testimonials h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: #0dcaf0;
  transition: width 0.4s ease;
  box-shadow: 0 0 8px #0dcaf0aa;
}

.testimonials h2:hover::after {
  width: 100%;
}

.testimonials h2 {
  font-size: 36px;
  color: #0dcaf0;
  margin-bottom: 40px;
  text-shadow: 0 0 15px #0dcaf055;
}

.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  animation: scrollLoop 25s linear infinite;
}

.testimonial-card {
  flex: 0 0 300px;
  background: #111;
  border: 1px solid #333;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 10px #0dcaf055;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #0dcaf0;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 2px solid #0dcaf0;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #ffc107;
}

.testimonial-card span {
  font-size: 14px;
  color: #aaa;
}

/* Infinite scroll animation */
@keyframes scrollLoop {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/*testionmal end*/

/*contact start*/
.contact-section {
    padding: 60px 20px;
    background: #121212;
    color: #f1f1f1;
  }

  .contact-section h2 {
    text-align: center;
    color: #0dcaf0;
    margin-bottom: 40px;
    font-size: 32px;
  }

  .contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: space-between;
  }

  .contact-form {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    background: #1e1e1e;
    color: #fff;
  }

  .contact-form button {
    padding: 12px;
    background: #0dcaf0;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    color: #121212;
    font-weight: bold;
    transition: background 0.3s;
  }

  .contact-form button:hover {
    background: #09b2d1;
  }

  .contact-info {
    flex: 1;
    min-width: 260px;
  }

  .contact-info h3 {
    margin-bottom: 20px;
    color: #fff;
  }

  .contact-info p {
    margin-bottom: 10px;
    line-height: 1.6;
  }

  .contact-info a {
    color: #0dcaf0;
    text-decoration: none;
  }

 /* .locate-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 16px;
    background: #0dcaf0;
    color: #121212;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
  }

  .locate-btn:hover {
    background: #09b2d1;
  }*/

  @media (max-width: 768px) {
    .contact-wrapper {
      flex-direction: column;
    }
  }

  /* Animations */
  .fade-left {
    animation: fadeInLeft 1s ease forwards;
  }

  .fade-right {
    animation: fadeInRight 1s ease forwards;
  }

  @keyframes fadeInLeft {
    0% {
      opacity: 0;
      transform: translateX(-40px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fadeInRight {
    0% {
      opacity: 0;
      transform: translateX(40px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
/*contact end*/

/* LOCATE US Section */
    .locate-us-section {
      background: #121212;
      padding: 60px 20px 30px;
      text-align: center;
    }


    .locate-title {
      font-size: 36px;
      color: #0dcaf0;
      margin-bottom: 10px;
      font-weight: 700;
    }
    .locate-title {
  font-size: 40px;
  color: #0dcaf0;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 15px #0dcaf055;
  position: relative;
  display: inline-block;
  cursor: default;
}

/* Optional hover underline */
.locate-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 3px;
  background: #0dcaf0;
  transition: width 0.4s ease;
  box-shadow: 0 0 8px #0dcaf0aa;
}

.locate-title:hover::after {
  width: 100%;
}


    .locate-subtitle {
      font-size: 16px;
      color: #ccc;
      margin-bottom: 40px;
    }

    /* Map Container */
    .map-container {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
      border-radius: 12px;
      transition: transform 0.4s ease;
      cursor: pointer;
      box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
    }

    .map-container.zoomed {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(13, 202, 240, 0.3);
    }

    .map-container iframe {
      width: 100%;
      height: 400px;
      display: block;
      border: none;
    }

    @media (max-width: 768px) {
      .locate-title {
        font-size: 28px;
      }

      .locate-subtitle {
        font-size: 14px;
      }

      .map-container iframe {
        height: 300px;
      }
    }


    /* Footer Start */
.footer {
  background: white;
  color: black;
  padding: 40px 20px 10px;
  font-family: Arial, sans-serif;
  width: 100vw;
  box-sizing: border-box;
  margin: 0;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  width: 100%;
  box-sizing: border-box;
  gap: 20px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1 1 0;
  min-width: 0;
  margin: 10px 0;
  transition: all 0.5s ease;
}

/* Animations */
.animate-left {
  animation: fadeLeft 1.5s ease-in;
}
.animate-right {
  animation: fadeRight 1.5s ease-in;
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Move Our Links slightly right */
.footer-center {
  transform: translateX(20px); /* ✅ Moves entire block right */
  padding-left: 150px; /* move content slightly right */
}

/* Links */
.footer a {
  color: #773535;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer a:hover {
  color: #de1414;
  transform: translateX(5px);
}

/* Headings */
.footer h3 {
  padding-bottom: 5px;
  margin-bottom: 10px;
  font-size: 18px;
  position: relative;
  border-bottom: none;
}

/* Hover underline for only "Our Links" and "Our Products" */
.footer-center h3::after,
.footer-right h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #de1414;
  transition: width 0.4s ease;
}
.footer-center h3:hover::after,
.footer-right h3:hover::after {
  width: 100%;
}

/* List styling */
.footer ul {
  list-style: none;
  padding: 0;
}
.footer ul li {
  margin: 8px 0;
}

/* Social icons */
.social-icons a {
  margin-right: 10px;
  display: inline-block;
  font-size: 20px;
  color: #560404;
  transition: transform 0.3s ease, color 0.3s ease;
}
.social-icons a:hover {
  transform: scale(1.3);
  color: #f39c12;
}

/* Bottom section */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 10px;
  margin-top: 20px;
  font-size: 14px;
}
.footer-bottom a {
  color: #f39c12;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-center {
    transform: none; /* Reset shift on small screens */
  }
}
.scroll-up-arrow {
  position: fixed;
  bottom: 30px;
  right: 30px;
  font-size: 40px;
  color: #ff6600;
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.scroll-up-arrow:hover {
  transform: scale(1.2);
}
