.header-down {
  margin-bottom: -160px !important;
  z-index: 999;
}

.header-downn-1 {
  z-index: 99999;
  top: 90%;
}

.footer {
  padding: 8px 12px !important;
}

.contact {
  margin-right: 480px;
}

.navbar-brand img {
  height: 40px;
}

.navbar-expand-lg {
  font: 14px;
  font-family: Calibri;
}

/* Marquee Animation  */
@keyframes marquee {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Marquee Animation end  */
.video-banner {
  height: 100vh;
  overflow: hidden;
  margin-top: 300px;
}

@media (max-width: 768px) {
  .video-banner {
    height: 70vh;
  }
}

.why-gearcon {
  position: relative;
  overflow: hidden;
}


body {
  font-family: 'Segoe UI', sans-serif;
}

h3 {
  color: #0d1b2a;
}

.btn-dark {
  background-color: #3a3a3a;
  border: none;
}

.btn-dark:hover {
  background-color: #222;
}




@keyframes blink {

  0%,
  50%,
  100% {
    opacity: 1;
  }

  25%,
  75% {
    opacity: 0;
  }
}

.blink {
  animation: blink 2s infinite;
}

@media (max-width: 768px) {
  .header-down {
    margin-bottom: -340px !important;
  }
}

/* new css */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    /* prevents flickering */
  }
}

/* ✅ Active link color */
.navbar-nav .nav-link.active {
  color: #0d6efd !important;
}

/* ✅ Optional: Ensure dropdown is visible */
.dropdown-menu {
  overflow: visible !important;
  z-index: 9999;
}

/* ✅ Optional: Large dropdown style */
.dropdown-menu.p-3 {
  min-width: 300px;
}

/* new css end */



/* Keyword page css start */
.page-header {
  position: relative;
  margin-bottom: 45px;
  padding: 70px 0;
  background-color: black;
  text-align: center;
  /* background-image: url(../img/banner-c.png); */
}

.page-header h1 {
  position: relative;
  color: white;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 5px;
}

.page-header a {
  position: relative;

  font-size: 18px;
  color: #ffffff;
}

.over-img {
  height: 300px;
  width: 100%;
}

.over-img img {
  height: 300px;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
}

.overhead {
  margin-top: 35px;
}

.crane {
  margin-top: 20px;
  font-weight: 700;

}

.overhead p {
  text-align: justify;
}

.agent-box {
  margin: 0px 0px 30px 0px;
  /* border: 2px solid #efefef; */
  padding: 20px 15px !important;
  border-radius: 4px;
  background: #015281;
  color: #ffffff;
}

.serv-list {
  list-style: none;
}

.all-list li a {
  text-decoration: none !important;
  color: #ffffff;
  font-size: 15px;
  line-height: 2;
}

.service-i i {
  padding-right: 10px;
}

.about-serv h3 {
  color: #ffffff;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.option-card {
  background: #13273a;
  padding: 30px;
  border-radius: 10px;
  /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
  text-align: center;
  color: #ffffff;
}

.option-card h4 {
   font-size: 18px;
}

.text-justify {
  text-align: justify;
}

.work-img {
  height: 100%;
  width: 100%;
}

.work-img img {
  height: 255px;
  width: 100%;
  padding-top: 6px;
}




.comparison-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.crane-card {
  flex: 1;
  min-width: 300px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.crane-card:hover {
  transform: translateY(-5px);
}

.card-header {
  padding: 20px;
  text-align: center;
  color: white;
}

.single-girder .card-header {
  background: linear-gradient(90deg, #1a2a6c, #2a4cbd);
}

.double-girder .card-header {
  background: linear-gradient(90deg, #b21f1f, #fd5c2d);
}

.card-body {
  padding: 20px;
}

.specs-list {
  margin: 15px 0;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
}

.spec-name {
  font-weight: 600;
  color: #555;
}

.spec-value {
  color: #222;
  text-align: right;
}



@media (max-width: 768px) {
  .comparison-section {
    flex-direction: column;
  }

  .crane-card {
    width: 100%;
  }
}


.head-list a {
  text-decoration: none !important;
}


/* Features Section */
.features {
  padding-bottom: 50px;
  background-color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: #ecf0f1;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 50px;
  color: #015281;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #2c3e50;
}


.founder-section p {
  font-size: 17px !important;
  line-height: 28px;
  color: white;
}

.founder-section h3 {
  color: white;
  font-size: 30px;
  line-height: 0.4rem;
  padding-bottom: 10px;
}

.founder-section h5 {
  color: white;
  font-size: 17px;
  line-height: 0.4rem;
  padding-top: 15px;
  padding-bottom: 20px;
}

.foun {
  /* border-left: 3px solid red; */
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.15);
  border-radius: 0.3rem;
  padding: 13px 25px;
  background-color: black;
}

.blog-item {
  height: 100%;
  width: 100%;
  padding: 20px;
}

.blog-item img {
  height: 100%;
  width: 100%;
}

.blog-title h5 a {
  font-size: 21px;
  text-decoration: none;
  padding-top: 20px !important;
}

.btn a {
  color: #ffffff;
  text-decoration: none;
  background: #015281;
  padding: 10px;
  border-radius: 7px;
}

.advantage-list li {
  list-style: none;
}

.adv-icon i {
  color: #015281;
  padding-right: 6px;
}

.feature-metal i {
  color: #d7ba01;
  padding-right: 10px;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.service-card {
  background: linear-gradient(to bottom, #2c3e50, #34495e);
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-left: 4px solid #ff9900;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.service-card p {
  color: #ffffff;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #ff9900;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.service-description {
  color: #cccccc;
  font-size: 1rem;
}

.service-para p {
  color: #ffffff;
}

.work-price {
  background-color: #f3f0f3;
}

.repair-img {
  height: 100%;
  width: 100%;
}

.repair-img img {
  height: 260px;
  width: 100%;
}

.blog-img {
  height: 190px !important;
}


.table-container {
  overflow-x: auto;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

th,
td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #e1e5eb;
}

th {
  background-color: rgb(1, 82, 129);
  color: white;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

th:hover {
  background-color: rgb(1, 82, 129);
}

th::after {
  content: '';
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
}

tr:nth-child(even) {
  background-color: #f8f9fa;
}

tr:hover {
  background-color: #e9f7fe;
}

.applications {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}


.specs {
  background: #2c3e50;
  color: white;
  padding: 80px 0;
}

.specs .section-title {
  color: white;
}

.specs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.spec-items {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  flex: 1 1 300px;
  max-width: 350px;
}

.spec-items h3 {
  margin-bottom: 15px;
  color: #3498db;
}

.head-all {
  left: -270px !important;
}

.maintain-img {
  height: 100%;
  width: 100%;
}

.maintain-img img {
  height: 222px;
  width: 355px;
}


@media (max-width: 768px) {
  .page-header h1 {
    font-size: 30px;
  }

  .over-img img {
    height: auto;
    width: 100%;
  }

  .over-img {
    height: auto;
    width: 100%;
  }

  .work-img img {
    height: auto;
    width: 100%;
  }

  .repair-img img {
    height: auto;
    width: 100%;
  }

  .banner-w {
    width: 105% !important;
    height: 285px;
  }

  .header-downn-1 {
    top: 64%;
  }
}


/* Keyword page css end */


/*---------------------
  Footer
-----------------------*/

.footer {
	padding-top: 70px;
}

.footer__top {
	border-bottom: 1px solid rgba(183, 183, 183, 0.2);
	padding-bottom: 75px;
	margin-bottom: 65px;
}

.footer__top__text h2 {
	color: #ffffff;
	font-size: 25px;
	text-transform: capitalize;
}

.footer__top__newslatter form {
	position: relative;
}

.footer__top__newslatter form input {
	width: 100%;
	height: 50px;
	color: #b7b7b7;
	padding-left: 30px;
	font-size: 14px;
	border: none;
}

.footer__top__newslatter form input::-webkit-input-placeholder {
	color: #b7b7b7;
}

.footer__top__newslatter form input::-moz-placeholder {
	color: #b7b7b7;
}

.footer__top__newslatter form input:-ms-input-placeholder {
	color: #b7b7b7;
}

.footer__top__newslatter form input::-ms-input-placeholder {
	color: #b7b7b7;
}

.footer__top__newslatter form input::placeholder {
	color: #b7b7b7;
}

.footer__top__newslatter form button {
	font-size: 14px;
	color: #ffffff;
	background: #dfa667;
	border: none;
	height: 100%;
	padding: 0 20px;
	position: absolute;
	right: 0;
	top: 0;
}

.footer__about {
	margin-bottom: 30px;
}

.footer__about .footer__logo {
	margin-bottom: 24px;
}

.footer__about .footer__logo a {
	display: inline-block;
}

.footer__about p {
	margin-bottom: 2px;
	color: #ffffff;
}

.footer__about ul {
	margin-bottom: 38px;
}

.footer__about ul li {
	font-size: 15px;
	list-style: none;
	line-height: 26px;
	color: #707070;
}

.footer__about .footer__social a {
	font-size: 18px;
	color: #ffffff;
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
	margin-right: 30px;
}

.footer__about .footer__social a:hover {
	color: #dfa667;
}

.footer__about .footer__social a:last-child {
	margin-right: 0;
}

.footer__widget {
	margin-bottom: 30px;
}

.footer__widget h6 {
	font-size: 21px;
	color: #ffffff;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	margin-bottom: 30px;
}

.footer__widget ul li {
	list-style: none;
}

.footer__widget ul li a {
	font-size: 15px;
	color: #ffffff;
	line-height: 36px;
  text-decoration: none;
}

.footer__address {
	margin-bottom: 30px;
}

.footer__address h6 {
	font-size: 21px;
	color: #ffffff;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	margin-bottom: 30px;
}

.footer__address p {
	margin-bottom: 30px;
	color: #c9c9c9;
}

.footer__address ul li {
	font-size: 15px;
	list-style: none;
	line-height: 26px;
	color: #c9c9c9;
}

.copyright {
	border-top: 1px solid rgba(183, 183, 183, 0.2);
	padding: 25px 0;
	/* margin-top: 30px; */
}

.copyright__text p {
	margin-bottom: 0;
}

.copyright__text p i {
	color: #dfa667;
}

.copyright__text p a {
	color: #e9060a;
}

.copyright__widget {
	text-align: left;
	padding-top: 30px;
}


.copyright__widget a {
	font-size: 14px;
	color: #707070;
	margin-right: 36px;
	position: relative;
}

.copyright__widget a:after {
	position: absolute;
	right: -22px;
	top: -3px;
	content: "|";
}

.copyright__widget a:last-child {
	margin-right: 0;
}

.copyright__widget a:last-child:after {
	display: none;
}
.one a {
  color: #ffffff !important;
    text-decoration: none !important;
}
.get-in i {
padding-right: 23px;
    color: #ffffff;
}
.contact-all {
  padding-left: unset !important;
}



/* onnn */

/* -funnels-Css--- */
/*mobile footer css starts*/

.navbar-footer a {
	float: left;
	display: none;
	width: 25%;
	color: #fff;
	text-align: center;
	padding: 25px 22px 38px 20px;
	text-decoration: none;
	font-size: 21px;
	/* margin-right: 22px;
    margin-left: 21px; */
}

.navbar-footer a:hover {
	background: #F1F1F1;
	color: black;
}

.w_app>i {
	color: #fff;
}

.w_app {
	background-color: #28A745;
}

.e_mail>i {
	color: #fff;
}

.e_mail {
	background-color: #DC3545;
}

.ems_call>i {
	color: #fff;
}

.ems_call {
	background-color: #007BFF;
}

.ems_enquiry>i {
	color: #fff;
}

.ems_enquiry {
	background-color: #FFC107;
}

.upside {
	display: none;
}

.mobile-hidden i {
	color: white;
}

@media screen and (min-width :315px) and (max-width :768px) {
	.upside {
		display: block;
	}

	.funnal-mobile {
		display: none !important;
	}

	.mobile-footer {
		display: block !important;
	}

	.social-mobile li a .fa {
		display: none;
	}

	.navbar-footer {
		overflow: scroll;
		z-index: 9999999 !important;
		background-color: #ccc;
		position: fixed;
		bottom: -16px;
		width: 100%;
	}

	.navbar-footer a:hover {
		background: #f1f1f1;
		color: black;
	}

	.main {
		padding: 0px;
		margin-bottom: 54px;
	}

	.navbar-footer {
		display: block !important;
	}

}

.mobile-hidden a {
	font-size: 16px;
}

/* mobile footer css end*/
@media only screen and (max-width:768px) {


	.mobile-hidden {
		display: none !important;
	}

	.tab {
		margin: 4px 4px !important;
	}

	.brochures-prgs .fa-plus {
		margin-right: 30px !important;
	}
}

/* Funnel css start */
.btn-success {
	color: #fff !important;
	background-color: #5cb85c;
	border-color: #4cae4c;
	padding: 15px 30px;
}

.btn-success:hover {
	color: #fff;
	background-color: #449d44;
	border-color: #398439
}

.btn-danger {
	color: #fff !important;
	background-color: #d9534f;
	border-color: #d43f3a;
	padding: 15px 30px;
}

.btn-danger:hover {
	color: #fff;
	background-color: #c9302c;
	border-color: #ac2925
}

.btn-warning {
	color: #fff !important;
	background-color: #f0ad4e;
	border-color: #eea236;
	padding: 15px 30px;
}

.btn-warning:hover {
	color: #fff;
	background-color: #ec971f;
	border-color: #d58512
}

/* .btn-primary {
      color: #fff!important;
      background-color: #0084bd;
      border-color: #0d668d;
      padding: 15px 30px;
    }
    .btn-primary:hover {
      color: #fff;
      background-color: #0d668d;
      border-color: #204d74
    } */
.pb-20 {
	padding-top: 10px;
	padding-bottom: 30px;
}


/* -funnels-Css-Ends--- */

/* ----Faq---- */
.faq .brochures-prgs {
    cursor: pointer;
    border-top: 4px solid #015281;
    border-left: 3px solid #015281;
    padding: 11px;
    color: #ffffff;
    border-radius: 9px;
    background: #015281;
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
  }

.faq .disp{
  display: none;
  padding: 20px;
}


.faq .rotate {
  transform: rotate(180deg);
}
.faq .brochures-prgs .fa{
    font-size: 18px;
    right: 15px;
    position: absolute;
    padding: 15px 15px;
    border-radius: 6px;
    border-top-left-radius: 0%;
    margin-top: -11px;
    margin-right: 0px;
    background: rgba(241, 183, 183, 0.664);
    background: #015281;
    color: var(--bs-white);
  }

  @media (max-width: 768px) {
    .faq .brochures-prgs .fa{
        font-size: 18px;
        right: 0;
        position: absolute;
        padding: 9px;
        border-radius: 6px;
      
        border-top-left-radius: 0%;
        top:10px;
       
      }
  }
/* ----Faq-End---- */

.fsize {
  font-size: 30px;
}

.scroll-to-top i{
    margin-top: 14px;
  }