.related-products-title {
    color: #5085e6;
    font-size: 1.75rem;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.services-horizontal-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;

}

.service-horizontal-item {
    width: 260px;
    min-height: 210px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.service-product-img {
    width: 100%;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 7px;
}

.service-product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.service-horizontal-item span {
    width: 100%;
    margin-top: 12px;
    color: #222;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

.service-horizontal-item i {
    margin-top: 10px;
    color: #5085e6;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.service-horizontal-item:hover {
    transform: translateY(-7px);
    border-color: #5085e6;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
    background-color: #5085e6;
}

.service-horizontal-item:hover .service-product-img img {
    transform: scale(1.08);
}

.service-horizontal-item:hover i {
    transform: translateX(6px);
}

.service-horizontal-item:hover span {
    color: #fff;
}

@media (max-width: 767px) {

    .services-horizontal-list {
        gap: 15px;
    }

    .service-horizontal-item {
        width: calc(50% - 8px);
        min-height: 190px;
    }

    .service-product-img {
        height: 110px;
    }
}

@media (max-width: 480px) {

    .service-horizontal-item {
        width: 100%;
    }
}

/* =========================================
   INDUSTRIES SECTION
========================================= */

.industries-section {
    position: relative;
    padding: 55px 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(80,133,230,.12), transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(80,133,230,.08), transparent 30%),
        #14202d;
    overflow: hidden;
}

.industries-container {
    width: min(1400px, 92%);
    margin: auto;
}


/* =========================================
   HEADING
========================================= */

.industries-heading {
    max-width: 100%;
    margin-bottom: 55px;
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #6fa0ff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
   margin-bottom: 35px;
}

.section-tag::before {
    content: "";
    width: 35px;
    height: 1px;
    background: #6fa0ff;
}

.section-tag::after {
    content: "";
    width: 35px;
    height: 1px;
    background: #6fa0ff;
}

.industries-heading h2 {
    margin: 0 0 15px;
    color: #fff;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -2px;
}

.industries-heading h2 span {
    color: #6fa0ff;
}

.industries-heading p {
    max-width: 100%;
    margin: 0;
    color: rgba(255,255,255,.6);
    font-size: 20px;
    line-height: 1.8;
}


/* =========================================
   GRID
========================================= */

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}


/* =========================================
   CARD
========================================= */

.industry-card {
    position: relative;
    height: 440px;
    overflow: hidden;
    border-radius: 18px;
    isolation: isolate;
    cursor: pointer;

    transition:
        transform .6s cubic-bezier(.16,1,.3,1),
        filter .6s ease,
        opacity .6s ease;

    border: 1px solid rgba(255,255,255,.08);
}

.industry-bg {
    position: absolute;
    inset: 0;
    z-index: -3;

    background-size: cover;
    background-position: center;

    transition:
        transform 1s cubic-bezier(.16,1,.3,1),
        filter 1s ease;
}

.industry-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;

    background:
        linear-gradient(
            180deg,
            rgba(3,9,18,.05) 10%,
            rgba(3,9,18,.3) 40%,
            rgba(3,9,18,.95) 100%
        );

    transition: background .6s ease;
}


/* =========================================
   GLOW BORDER
========================================= */

.industry-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;

    background:
        linear-gradient(
            135deg,
            transparent 30%,
            rgba(111,160,255,.8),
            transparent 70%
        );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    opacity: 0;
    transition: opacity .5s ease;
}


/* =========================================
   NUMBER
========================================= */

.industry-number {
    position: absolute;
    top: 22px;
    right: 22px;

    color: rgba(255,255,255,.3);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;

    transition: color .4s ease;
}


/* =========================================
   CONTENT
========================================= */

.industry-content {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
}

.industry-icon {
    width: 100%;
    /* height: 45px; */
    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border: 1px solid rgba(255,255,255,.2);
    border-radius: 12px;

    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);

    color: #fff;
    font-size: 20px;

    transition:
        transform .5s ease,
        background .5s ease;
}

.industry-content h3 {
    margin: 0 0 10px;

    color: #fff;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
}

.industry-content p {
    max-height: 0;
    overflow: hidden;

    margin: 0;

    color: rgba(255,255,255,.7);
    font-size: 14px;
    line-height: 1.7;

    opacity: 0;
    transform: translateY(15px);

    transition:
        max-height .6s ease,
        opacity .5s ease,
        transform .5s ease;
        text-align: center;
}


/* =========================================
   LINK
========================================= */

.industry-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 18px;

    color: #fff;
    text-decoration: none;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;

    opacity: 0;
    transform: translateY(15px);

    transition:
        opacity .5s ease,
        transform .5s ease,
        gap .3s ease;
}

.industry-link span {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #6fa0ff;
    color: #07101d;
}


/* =========================================
   HOVER
========================================= */

.industry-card:hover {
    transform: translateY(-8px);
    border-color: rgba(111,160,255,.4);
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-card:hover .industry-bg {
    transform: scale(1.12);
    filter: saturate(1.15);
}

.industry-card:hover .industry-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(3,9,18,.05) 0%,
            rgba(3,9,18,.35) 30%,
            rgba(3,9,18,.98) 100%
        );
}

.industry-card:hover .industry-number {
    color: #6fa0ff;
}

.industry-card:hover .industry-icon {
    transform: translateY(-5px);
    background: #6fa0ff;
    color: #07101d;
}

.industry-card:hover .industry-content p {
    max-height: 100px;
    opacity: 1;
    transform: translateY(0);
}

.industry-card:hover .industry-link {
    opacity: 1;
    transform: translateY(0);
}

.industry-card:hover .industry-link:hover {
    gap: 15px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1200px) {

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .industry-card {
        height: 420px;
    }

}


@media (max-width: 850px) {

    .industries-section {
        padding: 80px 0;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-card {
        height: 400px;
    }

}


@media (max-width: 600px) {

    .industries-section {
        padding: 65px 0;
    }

    .industries-container {
        width: 90%;
    }

    .industries-heading {
        margin-bottom: 35px;
    }

    .industries-heading h2 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .industry-card {
        height: 360px;
        border-radius: 15px;
    }

    .industry-content {
        left: 22px;
        right: 22px;
        bottom: 22px;
    }

    .industry-content h3 {
        font-size: 22px;
    }

    /* Keep content visible on mobile */
    .industry-content p {
        max-height: 100px;
        opacity: 1;
        transform: translateY(0);
    }

    .industry-link {
        opacity: 1;
        transform: translateY(0);
    }

}

.performance-text {
    display: inline-block;
    /* border-top: 3px solid #007bff; */
    padding-top: 8px;
	float: left;
	font-size:30px;
    margin-left: -14px;
}
.performance-text::before {
    content: "";
    display: block;
    width: 50px;
    border-top: 3px solid #007bff;
    margin-bottom: 8px;
}

.performance-text1 {
    display: inline-block;
    /* border-top: 3px solid #007bff; */
    padding-top: 0px;
	float: left;
	font-size:40px;
margin-left: -14px;
display: inline-block;
    
}
.reliable-text {
    font-size: 40px;
	font-weight:600;
}

.performance-text2 {
    display: inline-block;
    /* border-top: 3px solid #007bff; */
    padding-top: 8px;
	float: left;
	font-size:30px;
    margin-left: -14px;
    text-align: left;
}
.performance-text2::after{
    content: "";
    display: block;
    width: 50px;
    border-bottom: 3px solid #007bff;
    margin-bottom: 8px;
}
/* =========================
   Mobile
========================= */
@media (max-width: 767px) {

    .performance-text,
    .performance-text1,
    .performance-text2 {
        float: none;
        display: block;
        margin-left: 0;
        width: 100%;
    }

    .performance-text {
        font-size: 20px;
        padding-top: 6px;
    }

    .performance-text1 {
        font-size: 27px;
        padding-top: 0;
    }

    .reliable-text {
        font-size: 27px;
        line-height: 1.2;
    }

    .performance-text2 {
        font-size: 20px;
        padding-top: 6px;
    }

    .performance-text::before {
        width: 40px;
        border-top-width: 2px;
        margin-bottom: 6px;
    }

    .performance-text2::after {
        width: 40px;
        border-bottom-width: 2px;
        margin-top: 6px;
    }
}


/* =========================
   Small Mobile
========================= */
@media (max-width: 480px) {

    .performance-text {
        font-size: 17px;
        padding-top: 5px;
		text-align: left;
    }

    .performance-text1 {
        font-size: 23px;
    }

    .reliable-text {
        font-size: 23px;
    }

    .performance-text2 {
        font-size: 17px;
        padding-top: 5px;
        text-align: left;
    }

    .performance-text::before,
    .performance-text2::after {
        width: 35px;
        border-width: 2px;
    }
}
.custom-text {
    color: #ccc;
    float: left;
    text-align: left;
    margin-left: -12px;
}
@media (max-width: 767px) {
    .custom-text {
        float: none;
        display: block;
        margin-left: -14px;
        text-align: left;
    }
}
.blue-text {    
    float: left;
    /* text-align: left;
    margin-left: -10px; */
    display: inline-block;
	color:#003885 !important;
}

/* Tablet */
@media (max-width: 991px) {
    .blue-text {
        margin-left: -8px;
		color: #003885;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .blue-text {
        float: none;
        display: block;
        margin-left: 0;
        text-align: left;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .blue-text {
        margin-left: 0;
        font-size: 20px;
    }
}
.our-text {
    color: #06174b;
    display: inline-block;
    font-size: 40px;
    line-height: 1.2;
    /* margin-left: -12px;	 */
    text-align: left
}

/* Tablet */
@media (max-width: 991px) {
    .our-text {
        font-size: 32px;
        margin-left: -10px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .our-text {
        font-size: 27px;
        margin-left: 0;
        display: block;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .our-text {
        font-size: 23px;
        margin-left: 0;
    }
}
.ct-header--slider .ct-header.item {
    width: 100%;
    min-height: 638px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.slider-inner h2 span {
	font-size: 50px;
	text-transform: uppercase;
	text-align: left;
	/* text-shadow: 1px 1px 0 #fff, 2px 2px 0 #039, 5px 5px 0px rgb(2, 52, 143); */
	width: 55%;
	color:#2493ef;
	font-weight:700;
	
	
}

.slider-inner h2 {
	font-size: 50px;
	text-transform: uppercase;
	text-align: left;
	/* text-shadow: 1px 1px 0 #fff, 2px 2px 0 #039, 5px 5px 0px rgb(2, 52, 143); */
	width: 55%;
	font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0px;
  margin-left: -15px;
}


	.slider-inner h2 {
		font-size: 53px;
	}

	.slider-inner h2 {
		font-size: 29px;
		text-transform: uppercase;
	}

	.slider-inner h2 {
		font-size: 18px;
	}


@media (max-width: 480px) {
.slider-inner h2 span {
  font-size: 25px;
  text-transform: uppercase;
  text-align: left;
  /* text-shadow: 1px 1px 0 #fff, 2px 2px 0 #039, 5px 5px 0px rgb(2, 52, 143); */
  width: 55%;
  color: #427ae2;
  font-weight: 700;
}

.slider-inner h2 {
  font-size: 25px;
  text-transform: uppercase;
  text-align: left;
  /* text-shadow: 1px 1px 0 #fff, 2px 2px 0 #039, 5px 5px 0px rgb(2, 52, 143); */
  width: 100%;
  line-height: 35px;
}
}

.slider-inner h3 span {
	font-size: 50px;
	text-transform: uppercase;
	text-align: left;
	/* text-shadow: 1px 1px 0 #fff, 2px 2px 0 #039, 5px 5px 0px rgb(2, 52, 143); */
	width: 55%;
	color:#2493ef;
	font-weight:700;
	
	
}

.slider-inner h3 {
	font-size: 50px;
	text-transform: uppercase;
	text-align: left;
	/* text-shadow: 1px 1px 0 #fff, 2px 2px 0 #039, 5px 5px 0px rgb(2, 52, 143); */
	width: 55%;
	font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0px;
  margin-left: -15px;
}


	.slider-inner h3 {
		font-size: 53px;
	}

	.slider-inner h3 {
		font-size: 29px;
		text-transform: uppercase;
	}

	.slider-inner h3 {
		font-size: 18px;
	}


@media (max-width: 480px) {
.slider-inner h3 span {
  font-size: 25px;
  text-transform: uppercase;
  text-align: left;
  /* text-shadow: 1px 1px 0 #fff, 2px 2px 0 #039, 5px 5px 0px rgb(2, 52, 143); */
  width: 55%;
  color: #427ae2;
  font-weight: 700;
}

.slider-inner h3 {
  font-size: 25px;
  text-transform: uppercase;
  text-align: left;
  /* text-shadow: 1px 1px 0 #fff, 2px 2px 0 #039, 5px 5px 0px rgb(2, 52, 143); */
  width: 100%;
  line-height: 35px;
}
}


.intropara h4 {
	font-size: 54px;
	font-family: "Roboto",sans-serif;
	font-weight: 500;
	color: #5085e6;
	line-height: .889;
	text-align: left;
	margin-bottom: 12px;
}

    .key-features-title {
  
  
    line-height: 1.3;
    color: #fff;
    margin-bottom: 20px;

    font-size: 40px;
  font-weight: 600;
  margin-bottom: 60px;
}

.comanybox h6 {
  font-size: 26px;
}

.teamwork-title {
   font-size: 26px;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.product-range-title {
   font-size: 50px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.rotary-disk-title {
font-size: 37px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.rotary-disk-title::before {
  content: '';
  position: absolute;
  display: block;
  background: #fe4500;
  width: 21px;
  height: 21px;
  top: -22px;
  left: -22px;
}

.get-in-touch-title {  
    line-height: 1.2;
    color: #fff;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 44px;
  font-weight: 700;
}

.laxmi-equipments-title {  
    margin-top: 0;   
    font-size: 31px;
  color: #fff;
  font-weight: 700;
  line-height: 1.323;
}

@media only screen and (max-width: 767px) {
.intropara h4 {
font-size: 35px;
  font-family: "Roboto",sans-serif;
  font-weight: 500;
  color: #5085e6;
  line-height: .889;
  text-align: center;
  margin-bottom: 12px;
}
}

@media only screen and (max-width: 767px) {
.key-features-title {
  line-height: 1.3;
  color: #fff;
  margin-bottom: 20px;
font-size: 32px;
  font-weight: 600;
  margin-bottom: 60px;
}}

@media only screen and (max-width: 767px) {
.teamwork-title {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 0.5rem;
}}

@media only screen and (max-width: 767px) {
.product-range-title {
  font-size: 37px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}}


@media only screen and (max-width: 767px) {
.rotary-disk-title {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  margin-top: 0;
  margin-bottom: 0.5rem;
}}

@media only screen and (max-width: 767px) {
.get-in-touch-title {
  line-height: 1.2;
  color: #fff;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 25px;
  font-weight: 700;
  text-align: center;
}}

@media only screen and (max-width: 767px) {
.laxmi-equipments-title {
  margin-top: 0;
  font-size: 23px;
  color: #fff;
  font-weight: 700;
  line-height: 1.323;
  text-align: center;
}}

.products-services-title {
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    margin-top: 0;
    font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 15px;
}


