:root {
  --diam: 100vw;
  --primary: #dcb426;
  --dark: #1a1a2e;
  --light: #ffffff;
  --p2: #dcb426;
  --border-gap: 100px;
  --mobile-border-gap: 20px;
  --yellow: #dcb426;
  --white: #fff;
  --overlay: rgba(0, 0, 0, 0.45);
  --overlay-hover: rgba(0, 0, 0, 0.2);
  --black: #000;
  --body: rgb(9, 16, 24);
}

* {
  font-family: "Figtree", sans-serif !important;
}

.fa-classic, .fa-regular, .fa-solid, .far, .fas {
    font-family: "Font Awesome 6 Free" !important;
}
#nav_btn {

  margin: 0px !important;

}

body {
  background: var(--body);
  overflow-x: hidden !important;
}

.container-fluid {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

#navbarList {
  gap: 60px;
      padding-bottom: 13px;

}

.container-fluid {
  padding: 0px !important;
}

.navbar-expand-md .navbar-nav .nav-link {
  padding-right: 0px !important;
  padding-left: 0px !important;
}

.main-logo {
  height: 100%;
  width: 100%;
}

.custom-container {
  max-width: 1560px;
  margin: auto auto;
  padding: 10px 0px;
}

.navbar-nav {
  position: relative;
}

#nav_btn a {
  color: white;
  text-decoration: none;
}

.navbar-nav .nav-link {
  position: relative;
}

.navbar-nav li {
  position: relative;
}

.navbar-nav li:hover .dropdown {
  display: block;
}

.nav-item .nav-ancher-tag {
  font-size: 20px;
  color: #ffffff;
  font-weight: 600;
}

@media (max-width: 768px) {
  .nav-item .nav-ancher-tag {
    font-size: 35px;
    font-weight: 600;
    color: white;
  }
    #navbarList {
        gap: 26px !important;
    }
  .dropdown {
    position: static;
  }

  .main-logo {

    width: 120px;
    object-fit: cover;
  }

  .navbar-nav {
    margin-top: 60px;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 50px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
  }

  .hamburger:not(.collapsed) span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 8px);
  }


  .hamburger:not(.collapsed) span:nth-child(2) {
    opacity: 0;
  }

  .hamburger:not(.collapsed) span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  #nav_btn {
    display: none;
  }

  .navbar-toggler:focus {
    outline: none !important;
    box-shadow: none !important;
  }

  .main_header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    /* full screen */
    background: url('/Images/_98_24899f09-157d-4b03-8f9e-b356bd9c7d3f.png') no-repeat center center/cover;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: -1;
    background-color: #000;
  }

  .main_header.menu-open::after {
    opacity: 1;
    height: 100vh;
  }

}

#nav_btn {
  background-color: transparent;
  border-radius: 0px;
  font-size: 18px;
  border: none;
  margin-left: 60px !important;
  line-height: 26px;
}

#nav_btn img {
  width: 20px;
}

.dropdown a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #000;
  padding-block: 7px;
  padding-bottom: 9px; 
  transition: color 0.3s ease;
}

.dropdown a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 0;
  background-color: #dcb426;
  transition: width 0.3s ease;
}

.dropdown a:hover {
  color: #dcb426; 
}

.dropdown a:hover::after {
  width: 100%;
}



.navbar-nav .dropdown {
  display: none;
  position: absolute;
  background-color: white;
  z-index: 1000;
  padding-block: 14px;
  padding-inline: 30px;
  min-width: 350px;
  border-top:2px solid #dcb426;
}

.navbar-nav li {
  position: relative;
}

.navbar-nav li:hover .dropdown {
  display: block;
}

.dropdown a:hover {
  background-color: #ffffff;
  color: #dcb426;
}

@media (max-width: 768px) {
  .dropdown {
    position: static;
  }
}



/* footer starts */

.main-content {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;


}

.site-footer {
  background: #091018;
  color: white;
  position: relative;
  overflow: hidden;
  padding-block: 250px 90px;
}

.footer-background {
  position: absolute;
  top: -40%;
  right: 50px;
  opacity: 0.05;
  z-index: 1;
  object-fit: cover;
  max-width: 45rem;
}

.footer-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 2rem;
}

.footer-top {
  margin-bottom: 3rem;
}

.contact-section h2 {
  font-size: 50px;
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.contact-email {
  font-size: 50px;
  font-weight: 600;
  color: #dcb426;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-email:hover {
  color: #ffffff;
}

.info-block {
  margin-bottom: 2rem;
}

.info-title {
  font-size: 1.8em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0px !important;
  padding-bottom: 3rem;
  color: #ffffff;
}

.info-content {
  font-size: 1rem;
  width: max-content;
  line-height: 1.6;
}

.info-content a {
  color: #ffffff;
  font-size: 2rem;
line-height: 25px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
  ;
}

.info-content a:hover {
  color: #dcb426;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

.social-link:hover {
  border-color: #dcb426;
  fill: #091018;
  background-color: #dcb426;
}

.logo-section {
  display: flex;
  justify-content: right;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo {
  height: auto;
}

.footer-bottom {
  border-top: 1px solid white;
  padding-top: 50px;
  margin-top: 2rem;
}

.footer-nav {
  margin: 0;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6rem;
}

.footer-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: color 0.3s ease;
  font-size: 20px
}

.footer-nav a:hover {
  color: #dcb426;
}

.footer-nav a::after,
.info-content::after,
.footer-link::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background-color: #dcb426;
  opacity: 0;

  transition: width ease 0.3s 0.3s, opacity ease 0.3s;
}

.footer-link {
  display: inline-block;
}

.footer-nav a:hover::after,
.info-content:hover::after,
.footer-link:hover::after {
  width: auto;
  opacity: 1;
}

.footer-copyright {
  font-size: 18px;
  color: white;
  margin: 0;
  text-align: right;
  font-weight: 400;
}

.footer-copyright a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-copyright a:hover {
  color: #dcb426;
}

.back-to-top {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid white;
  color: white;
  background: transparent;
  position: relative;
}

.back-to-top:hover {
  background: #dcb426;
  transform: translateY(-2px);
  color: black;
  border: none;

}

/* Logo SVG styling */
.pumpco-logo-svg {
  width: 200px;
  height: auto;
}

@media (max-width: 768px) {

  .contact-section h2,
  .contact-email {
    font-size: 1.75rem;
  }

  .footer-nav ul {
    justify-content: center;
    margin-bottom: 1rem;
    gap: 1rem;
  }

  .footer-copyright {
    text-align: center !important;
  }

  .footer-content {
    padding: 3rem 0 2rem;
  }


}


.footer-container {
  max-width: 1740px !important;
  margin: auto !important;
  padding: 0px 70px !important;
}



.work {
  position: relative;
  display: inline-flex;
  line-height: 60px;
  font-weight: 700;
  font-size: 50px;
  align-items: center;
}

.work::after {
  content: "";
  display: inline-block;
  width: 75px;
  height: 2px;
  background-color: var(--yellow);
  margin: 0px 2rem;
  /* space between text and line */
  margin-bottom: 5px;
  /* adjust vertical alignment */
  background-color: #dcb426;
}

.margin-top-11 {
  margin-top: 110px;
}

.bar {
  color: #dcb426;
}

@media screen and (max-width: 700px) {
  .footer-top {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .logo-section {
    justify-content: left;
  }

  .work {
    font-size: 31px;
    line-height: 40px;
  }

  .work::after {
    display: none;
  }

  .footer-container {
    padding: 0 24px !important;
  }

  .contact-section {
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
  }

  .info-title {
    font-size: 18px;

  }
}

@media (max-width:500px) {
  .info-title{
    font-size: 16px !important;
  }
  .footer-nav a{
    font-size: 16px !important;
  }
  .info-content a{
    font-size: 1.3rem;
  }
}


.graph-outer-container {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: nowrap;
  padding: 10px;
}

.graph-outer-container .flex-thirty {
  flex-basis: 30%;
}

.graph-outer-container .flex-seventy {
  flex-basis: 70%;
}

.graph-cell {
  min-height: 75px;
  flex-grow: 1;
  flex-basis: 100%;
}

.fixed-3-7 .col-sm-3 {
  width: 25%;
}

.fixed-3-7 .col-sm-9 {
  width: 75%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .graph-cell {
    min-height: 100px;
  }

  .graph-outer-container {
    flex-wrap: wrap;
  }
}

.construction_section {
  padding: 50px 60px;
}

.join_us_text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}

.join_us h3 {
  color: #081A31;
  font-size: 32px;
  line-height: 42px;
  font-weight: 300;
  margin-bottom: 30px;
}

.join_us h3 strong {
  font-weight: 600;
}



.custom_slider_classes .text-justify {
  text-align: justify;
}

.custom_slider_classes .carousel-control-prev,
.custom_slider_classes .carousel-control-next {
  width: 10rem !important;
}

.custom_slider_classes .btn-primary {
  padding: 0.5em 1em !important;
  background-color: white !important;
  color: #000000 !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s ease 0s !important;


}

.custom_slider_classes h3 {
  color: #000000;
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  padding-top: 100px;
}

.custom_slider_classes p_arrow_slide_icon svg {
  fill: #000000;
}

.custom_slider_classes .slider-preview {
  background: #f4f4f4;
  border: 1px solid #bdbdbd;
  border-radius: 7px;
  height: 550px;
  width: 100%;
}

.project-list-view-section .project-item {
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-list-view-section .project-section-flex-container {
  height: 100%;
}

.project-list-view-section .col-lg-6 {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.project-list-view-section .col-lg-6 img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.project-list-view-section .project-section-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .5rem;
  padding: 2rem;

}


.project-list-view-section .project-section-learn-more {
  color: #000;
  background-color: rgba(255, 223, 73, 1);
  text-decoration: none;
  padding: 0.625rem 1.25rem;
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 150px;

}

.project-list-view-section .project-section-learn-more:hover {
  background-color: rgb(247, 209, 42);

  color: #000;

  text-decoration: none;

}

.project-list-view-section .project-main-heading {
  text-transform: uppercase;
}


/* On small screens, allow items to stack naturally */
@media (max-width: 767.98px) {
  .project-list-view-section .project-item {
    height: auto;
  }

  .project-list-view-section .col-lg-6 {
    height: auto;
  }

  .project-list-view-section .col-lg-6 img {
    height: auto;
    max-height: 300px;
    object-fit: cover;
  }

  .project-list-view-section .project-section-card {
    padding: 1.5rem;
  }
}


/* hero section ends */


.news-list-section .news-card {
  background-color: rgba(0, 132, 83, 0.08);
  border-radius: 0;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.news-list-section .news-title {
  font-weight: 700;
  text-transform: uppercase;
}

.news-list-section .news-date {
  font-size: 0.875rem;
  color: #6c757d;
}

.news-list-section .news-body {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.news-list-section .read-more-btn {
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 0;
  background-color: #fff !important;
}

.news-list-section .read-more-btn:hover {
  color: #272525;
}

.news-list-section .pagination-container {
  margin-top: 2rem;
  text-align: left;
}

.news-list-section .page-item #page-link {
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid #000000;
  color: #000000;
  transition: 0.2s ease;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 5px;
  text-align: center;
  line-height: 40px;
}

.news-list-section .page-item #page-link:hover {
  background-color: #e2e6ea;
  border-radius: 5px;
}

.news-list-section .page-item.active #page-link {
  background-color: rgba(0, 132, 83, 1);
  color: white;
  border-radius: 5px;
  border: none;
}


section.contact_section_form {
  display: flex;
  justify-content: center;
  align-items: stretch;
  background-color: #ebf5f1;
  flex-wrap: wrap;
  min-height: 50vh;
}

.contact_section_form .contact_img {
  width: 50%;
}

.contact_section_form .contact_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
  display: block;
}

.contact_section_form .contact_field {
  width: 50%;
  padding-left: 158px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact_section_form .contact_field button {
  background-color: #028554;
  width: 100%;
  padding: 15px;
  color: white;
  font-size: 16px;
  border: none;
}

.contact_section_form .contact_field label {
  width: 100%;
  display: block;
  color: white !important;
  margin-bottom: 15px;
  font-weight: 700 !important;
  font-size: 18px !important;
  letter-spacing: 1.8px !important;
  text-transform: uppercase !important
}

.contact_field input,
.contact_field select,
.contact_field textarea {
  width: 100%;
  display: block;
  outline: none;
  border: none;
  padding: 0px;
  margin-bottom: 60px;
  font-size: 14px;
  box-sizing: border-box;
}

.contact_section_form .contact_field textarea {
  min-height: 343px !important;
  max-height: 343px !important;
  color: grey;
  font-family: "Inter", sans-serif;
}

.contact_section_form .input_radio,
.contact_section_form .input_checkbox {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: baseline;
  margin-bottom: 10px;
}

.contact_section_form .input_radio input,
.contact_section_form .input_checkbox input {
  width: auto;
  margin: 0;
}

.contact_section_form .input_radio label,
.contact_section_form .input_checkbox label {
  width: auto;
  margin-left: 5px;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 2px;
  width: 0;
  background-color: #dcb426;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #dcb426; 
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}
@media (max-width: 991px) {
  section.contact_section_form {
    min-height: auto;
  }

  .contact_section_form .contact_img,
  .contact_section_form .contact_field {
    width: 100%;

  }

  .contact_section_form .contact_img {
    height: 400px;
    object-fit: cover;
  }

  .contact_section_form .contact_img img {
    height: 100%;
  }

  .contact_section_form .contact_field {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .contact_section_form .contact_field {
    padding: 20px;
  }


  .contact_section_form .contact_field button {
    padding: 12px;
    font-size: 14px;
  }

  .contact_field input,
  .contact_field select,
  .contact_field textarea {
    padding: 12px;
    font-size: 13px;
  }

  .contact_section_form .contact_img {
    height: 250px;
  }
}

.table_section {
  padding: 20px;
  line-height: 1.6;
}

.table_section .search_section label {
  display: block;
  color: #000;
  font-weight: 600;
  margin-bottom: 5px;
}

.table_section .search_section input[type="search"] {
  width: 100%;
  min-width: 250px;
  height: 52px;
  background-color: transparent;
  border: 1px solid #cccccc;
  border-radius: 7px;
  padding: 0 15px;
  font-size: 16px;
}

/* Table styles */
.table_section .table-container {
  overflow-x: auto;
  margin: 25px 0;

  border-radius: 5px;
  background: rgba(235, 245, 241, 1);
}

.table_section .styled-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
  min-width: 600px;
}

.table_section .styled-table caption {
  font-size: 1.2em;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
}

.table_section .styled-table thead tr {
  background-color: #ebf5f1;
  color: #000;
  text-align: left;
  font-weight: bold;
}

.table_section .styled-table th,
.styled-table td {
  padding: 16px 20px;
  text-align: left;
}

.table_section .styled-table tbody tr:nth-of-type(odd) {
  background-color: #fafdfc;
}

.table_section .styled-table tbody tr:nth-of-type(even) {
  background-color: #f5faf8;
}

.table_section .styled-table tbody tr:hover {
  background-color: #d8efe5;
}

/* Mobile card view */
.mobile-cards {
  display: none;
}

.mobile-card {
  background: white;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mobile-card-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.mobile-card-row:last-child {
  border-bottom: none;
}

.mobile-card-label {
  font-weight: bold;
  color: #555;
  min-width: 120px;
}

/* Pagination styles */
.table_section .button_pagination {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.table_section .button_secion button {
  padding: 8px 15px;
  border: none;
  color: white;
  font-weight: 400;
  background-color: rgba(0, 132, 83, 1);
  border-radius: 0px;
}

.table_section select.rows-per-page {
  border: none;
  background: transparent;
  margin-right: 20px;
  font-size: 18px;
}

.table_section span.page-info {
  font-size: 18px;
  margin-right: 20px;
  font-weight: 500;
}

.table_section button.nav-btn {
  border: 1.5px solid black;
  padding: 10px;
  border-radius: 5px;
  background: transparent;
}

.table_section button.nav-btn.active {
  background: black;
}

.table_section button.nav-btn.active svg path {
  stroke: white;
}

.table_section .top-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3;
}

@media (max-width: 767px) {
  .d-flex.justify-content-between {
    flex-direction: column;
    gap: 15px;
  }

  .table_section .top-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 3;
  }

  .table_section .search_section {

    width: 100%;
  }

  .table_section .search_section input[type="search"] {
    max-width: 100%;
  }

  .table_section .styled-table {
    display: none;
  }

  .mobile-cards {
    display: block;
  }

  .table_section .button_pagination {
    justify-content: space-between;
  }
}

.table_section button.nav-btn {

  cursor: pointer;
  /* Added this line */
}

.table_section button.nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: #ccc;
}

.table_section button.nav-btn:disabled svg path {
  stroke: #ccc;
}

/* Add these styles to your existing CSS */
.table_section button.nav-btn.active {
  background: black;
}

.table_section button.nav-btn.active svg path {
  fill: white;
  /* Changed from stroke to fill */
}



.image-gallery-section {
  width: 100%;
  padding: 0 60px;
}

.image-gallery-section .main-image-wrapper {
  position: relative;
  margin-bottom: 120px;
  max-width: 100%;
}

.image-gallery-section .main-image {
  width: 100%;
  height: 500px;
  min-width: 250px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s;
  display: block;
  margin: 0 auto;
}

.image-gallery-section .thumbnails-scroll-container {
  position: absolute;
  bottom: -50px;
  left: -50px;
  right: 0;
  overflow-x: auto;
  padding: 0 10px;
  margin: 0 auto;
}

.image-gallery-section .thumbnails-container {
  display: flex;
  /* gap: 10px;s */
  width: max-content;
  padding: 10px 0;
}

.image-gallery-section .thumbnail,
.image-gallery-section .add-thumbnail {
  width: 90px;
  height: 90px;
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  object-fit: cover;
  cursor: pointer;
  transition: all 0.3s;
}

.image-gallery-section .active-thumbnail {
  border: 2px solid #007bff;
}

.image-gallery-section .add-thumbnail {
  background-color: #f8f9fa;
  font-size: 1.8rem;
  color: #6c757d;
  border: 1px dashed #ccc;
}

/* Scrollbar styling */
.image-gallery-section .thumbnails-scroll-container::-webkit-scrollbar {
  height: 6px;
}

.image-gallery-section .thumbnails-scroll-container::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 5px;
}

.image-gallery-section .thumbnails-scroll-container::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .image-gallery-section .main-image-wrapper {
    margin-bottom: 100px;
  }

  .image-gallery-section .thumbnail,
  .image-gallery-section .add-thumbnail {
    width: 70px;
    height: 70px;
  }

  .image-gallery-section .image-gallery-section {
    width: 100%;
    padding-left: 50px;
    padding-right: 20px;
  }

  .image-gallery-section .main-image {
    height: 400px;
  }

  .image-gallery-section .thumbnails-scroll-container {
    bottom: -45px;
    left: -50px;
  }

}

@media (max-width: 576px) {
  .image-gallery-section .main-image-wrapper {
    margin-bottom: 90px;
  }

  .image-gallery-section .thumbnail,
  .image-gallery-section .add-thumbnail {
    width: 60px;
    height: 60px;
  }

  .image-gallery-section .image-gallery-section {
    width: 100%;
    padding-left: 50px;
    padding-right: 20px;
  }

  .image-gallery-section .main-image {
    height: 300px;
  }

  .image-gallery-section .thumbnails-scroll-container {
    bottom: -40px;
    left: -40px;
  }
}


.custom-swipper-slider-new .slider-container {
  position: relative;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  display: flex;
  gap: 1rem;
  padding: 1rem;
  /* Hide scrollbar */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.custom-swipper-slider-new .slider-container::-webkit-scrollbar {
  display: none;
}

.custom-swipper-slider-new .slide {
  scroll-snap-align: start;
  background: #007bff;
  color: white;
  border-radius: 10px;
  height: 300px;
  padding: 2rem;
  text-align: center;
  flex: 0 0 calc(100% / var(--slides-per-view) - 1.5rem);
}

.custom-swipper-slider-new .slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 1;
}

.custom-swipper-slider-new .slider-nav button {
  pointer-events: all;
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-swipper-slider-new .slider-nav button:hover {
  background: #f8f9fa;
  transform: scale(1.05);
}

.custom-swipper-slider-new .slider-nav button i {
  font-size: 1.2rem;
  color: #007bff;
}

.custom-swipper-slider-new .slider-wrapper {
  position: relative;
}

.custom-icon-search {
  color: white !important;
}

.border-bottom-only {
  border: none;
  border-bottom: 1px solid white !important;
  background: transparent !important;
  color: white !important;
  outline: none !important;
}

.border-bottom-only:focus {
  border-bottom: 2px solid #dcb426 !important;
}

/*  */

.search-panel {
  position: absolute;
  top: 80px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.07);
  right: 15px;
  z-index: 1055;
  width: 100%;
  background-color: #fff;
  max-width: 600px;
  background-color: #fff;
  border-radius: 0px;

  transition: all 0.3s ease;
  padding: 10px 16px;
  display: none;
}

#searchInput:focus {
  outline: none !important;
  box-shadow: none !important;
}

.search-body .list-group-item h6,
.search-body .list-group-item p {
  word-break: break-word;
  white-space: normal;
}

#searchLoader .spinner-border {
  width: 1.2rem;
  height: 1.2rem;
}

.search-panel.active {
  display: block;
}

.search-header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #A7A9AC;
}

.search-header input {
  flex: 1;
  border: none;
  padding: 12px 0px !important;
  font-size: 16px;

  border-radius: 0px
}

#searchInput:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: none !important;
}

.search-header .btn-close {
  margin-left: 10px;
}

.search-body .list-group-item h6,
.search-body .list-group-item p {
  word-break: break-word;
  white-space: normal;
}

#searchLoader .spinner-border {
  width: 1.2rem;
  height: 1.2rem;
}

.search-header {
  position: sticky;
  top: 0;
  background-color: #fff;
  /* Match panel background */
  padding: 10px 0;
  z-index: 1056;
  /* Higher than parent panel */
  border-bottom: 1px solid #eee;
  /* Optional separator */
}

.search-body {
  overflow-y: auto;
  max-height: 500px;
}

@media (max-width: 992px) {


  .search-panel {
    right: 0;
    left: 0;
    z-index: 1055;
    width: 95%;
    background-color: #fff;

    border-radius: 0;
    transition: all 0.3s ease;
    padding: 10px 16px;
    max-width: 100%;
    margin: 0px auto;

  }

  .search-body {
    overflow-y: auto;
    max-height: 300px;
  }

}

.container-container {
  max-width: 1540px;
  margin: 0 auto;

}

.main_header {
  position: absolute;
  width: 100% !important;
  z-index: 9999 !important;
    top: 0;
  left: 0;
  padding: 40px 30px !important;
 background: transparent;
  transition: all 0.3s ease; 
}


.pumpco-project-details .project-detail-banner {
  height: 842px;
  background: url('/Images/_98_bbd07d7e-d927-4416-ada8-1729b0d20e11.jpg');
  min-height: 400px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

.pumpco-project-details .container-related-projects {
  max-width: 1548px;
  margin: 0 auto;
}

.pumpco-project-details .banner-bottom-bar {
  position: absolute;
  bottom: 0;
  background-color: #FDB724;
  height: 100px;
  width: 100%;
}

.pumpco-project-details .project-details-corporate {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.pumpco-project-details .image-container {

  margin-bottom: 1rem;
}

.pumpco-project-details p {

  color: #ffffff !important;

}

.pumpco-project-details .image-container img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.pumpco-project-details .image-1 img {
  height: 450px;
  object-fit: cover;
}

.pumpco-project-details .project-header h3 {
  font-size: 38px;
  font-weight: bold;
  line-height: normal;
  color: #ffffff;
}

@media (max-width: 992px) {


  .pumpco-project-details .image-container img {
    height: 250px;
  }
}

@media (max-width: 768px) {

  .pumpco-project-details .image-container img {
    height: 200px;
  }

  .pumpco-project-details .image-1 img {
    height: 350px;
    object-fit: cover;
  }

  .pumpco-project-details .project-header h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {


  .pumpco-project-details .image-container img {
    height: 150px;
  }

  .pumpco-project-details .image-1 img {
    height: 250px;
    object-fit: cover;
  }

  .pumpco-project-details .project-header h3 {
    font-size: 1.1rem;
  }
}
.social-link-facebook{
  max-width: 16px;
  fill: white;
}
.social-link-linkedin{
  max-width: 20px;
  fill: white;
}
.social-link:hover .social-link-linkedin {
  fill: #0F1821;
}
.social-link:hover .social-link-facebook {
  fill: #0F1821;
}
.navbar-nav .nav-link.active-nav::after {
  width: 100% !important;
    height: 2px !important;
}
.navbar-nav .nav-link.active-nav {
  color: #dcb426 !important;
}
.footer-nav a.footer-active {
  color: #dcb426;
}
.footer-nav a.footer-active::after {
  width: 100%;   
  opacity: 1;    
}
.main_header.sticky {
  position: sticky;   
  background: #0f1822;
  padding: 20px 30px !important; 
}

@media (max-width: 1180px) {

  #navbarList{
    gap: 40px !important;
  }
  .nav-item .nav-ancher-tag{
    font-size: 16px !important;
  }
  #i5ycl{
    width: 200px !important;
  }
 
    @media (max-width:1570px) {
      .custom-container {
    max-width: 1160px !important;
  }
  }
}