/*
Theme Name: Twenty Thirteen
Theme URI: https://wordpress.org/themes/twentythirteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2013 theme for WordPress takes us back to the blog, featuring a full range of post formats, each displayed beautifully in their own unique way. Design details abound, starting with a vibrant color scheme and matching header images, beautiful typography and icons, and a flexible layout that looks great on any device, big or small.
Version: 4.5
Tested up to: 6.9
Requires at least: 3.6
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, editor-style, featured-images, footer-widgets, microformats, post-formats, rtl-language-support, sticky-post, translation-ready, accessibility-ready, block-patterns
Text Domain: twentythirteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Post Formats
 *   5.6 - Attachments
 *   5.7 - Post/Paging Navigation
 *   5.8 - Author Bio
 *   5.9 - Archives
 *   5.10 - Search Results/No posts
 *   5.11 - 404
 *   5.12 - Comments
 *   5.13 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Media Queries
 * 9.0 - Print
 * ----------------------------------------------------------------------------
 */


/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}
:root {
  --dark-blue-color: #0B4958;
  --blue-color: #77B0B8;
 
  --heading-color: #181d24;
  --text-color: #313131;

}
.container-fluid{
	width: 95%;
}
h1, h2, h3, h4, h5{
	 font-family: 'Red Hat Display', sans-serif;
	 color:var(--heading-color) ;
}
a{
	text-decoration: none;
}
body{
	font-family: 'Poppins', sans-serif;
	color: var(--text-color);
}
section{
	padding: 60px 0;
	overflow: hidden;
}
.main-header {
            background-color: #fff;
            padding: 10px 0;
			border-bottom: 2px solid var(--dark-blue-color);
        }

        
a.logo-brand img {
    width: 100%;
}
        .logo-brand i {
            color: #b3002d;
            /* Matching logo color */
        }

        .nav-link {
            color: var(--dark-blue-color) !important;
            font-family: var(--outfit-font);
            font-weight: 500;
            font-size: 17px;
            transition: 0.3s ease;
            padding: 0 5px !important;
        }

        .nav-link.active {
            border-bottom: 2px solid var(--dark-blue-color);
        }

        .nav-link:hover {
            color: var(--dark-blue-color) !important;
        }

        .nav-link i {
            font-size: 10px;
        }

        /* Action Buttons */
        .header-actions {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 15px;
        }

   .btn-quote {
    background-color: #fff;
    border: 2px solid #3e73ae;
    color: #4072b5;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    transition: 0.3s;
    align-items: center;
    display: inline-block !important;
}

        .btn-quote i {
            transform: rotate(320deg);
        }

        .btn-quote:hover {
            background-color: var(--dark-blue-color);
            border-color: var(--dark-blue-color);
            color: #fff;
        }

       .action-btn {
    background: none;
    border: none;
    color: var(--dark-blue-color);
    transition: 0.3s;
    font-size: 20px;
}

        .action-btn:hover {
            background-color: #fff;
            color: var(--dark-blue-color);
        }

section.bg-light {
    background: url(./images/bg-intro-home-5.webp);
    background-position: center;
    background-size: cover;
	padding: 0;
}

.inner-banner {
    position: absolute;
    left: -15px;
    top: -330px;
}

img.about-capsule_an {
    height: 150px;
    opacity: .9;
    position: absolute;
    width: 170px;
    z-index: 1;
    bottom: -88px;
    right: 10%;
}

.carousel-indicators li {
    background-color: #0e0e0e !important;
}

.carousel-indicators {
    right: 51% !important;
    top: 90% !important;
}

.floating-img,
.floating-img_22 {
    -webkit-animation: floater 2.5s infinite;
    animation: floater 2.5s infinite;
    -webkit-transform: translateY(-25%);
    transform: translateY(-25%);
    transition: .8s ease;
}

.inner-lets-we {
    padding: 0 0 0 56px;
}
.inner-lets-we h6 {
    color: var(--heading-color);
}
.inner-lets-we h1 {
    font-size: 45px;
    color: var(--dark-blue-color);
    font-weight: 700;
}
.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease;
}
@keyframes Moveleftright {

    0%,
    100% {
        left: 0;
    }

    50% {
        left: 15px;
    }
}

@keyframes floater {
    0% {
        -webkit-transform: translateY(-20%);
        transform: translateY(-20%);
        transition: .8s ease;
    }

    50% {
        -webkit-transform: translateY(20%);
        transform: translateY(20%);
        transition: .8s ease;
    }
}

.btn-pill {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #4b6b9e;
    color: #ffffff;
    padding: 0.6rem 0.6rem 0.6rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-icon-circle-hero {
    background-color: #000000;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.btn-pill:hover {
	background-color: var(--dark-blue-color);
	color: #fff;
}

.btn-pill:hover .btn-icon-circle-hero {
	transform: rotate(45deg);
	background-color: #fff;
	color: var(--dark-blue-color);
}
strong.text-dark a {
color: var(--dark-blue-color);
}

section#ctc {
    background: linear-gradient(to right, var(--blue-color) 0%, #2f6aa0 50%, #2f6aa0 50%, var(--blue-color) 100%) !important;
    padding: 15px 0;
}
.inner-legso-main-ctc p {
    color: #fff;
    text-align: center;
    font-size: 21px;
    font-weight: 600;
    margin: 0 0 0 0;
}
textarea.wpcf7-form-control.wpcf7-textarea.form-control {
    height: 26px;
}
a.anmless {
    border: 2px solid #000;
    padding: 13px 25px;
    border-radius: 9px;
    color: #000;
    font-weight: 700;
}
section#global {
    background-position: center;
    background-size: cover;
    padding: 50px 0 180px 0;
}
section#form {
    background: linear-gradient(to right, var(--blue-color) 0%, #2f6aa0 50%, #2f6aa0 50%, var(--blue-color) 100%) !important;
    border-top: 4px solid #fff;
     border-bottom: 4px solid #fff;
}
section#form {
    color: #fff;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner.form-control {
    background: #000;
    color: #fff;
}

/* about us */
.about-section-pink {
    /* background-image: url(images/pink-hood-bg.webp); */
    width: 100%;
    background: linear-gradient(rgb(255 255 255 / 70%), rgb(255 255 255 / 69%)), url(images/pink-hood-bg.webp);
    background-size: cover;
    background-position: center;
    /* background-position: center; */
    /* background-size: cover; */
    background-attachment: fixed;
}
.small-badge {
    padding: 5px 15px;
    border-radius: 20px;
    background-color: #fff;
    color: #000000;
    border: 1px solid #0000005e;
    display: inline;
    align-items: center;
    justify-content: center;
}
.small-badge span {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    border: 6px solid #3f6db4;
    display: inline-flex;
    margin-right: 10px;
}
.about-content h2 {
    font-size: 40px;
    font-weight: 700;
}

.about-img{
    border-radius: 20px;
    width: 100%;
}
.about-content p {
    padding-left: 25px;
    line-height: 1.7;
}


.about-box {
    background: linear-gradient(to right, var(--blue-color) 0%, #2f6aa0 50%, #2f6aa0 50%, var(--blue-color) 100%) !important;
    width: 100%;
    /* height: 100px; */
    border-radius: 15px;
    text-align: center;
    color: #fff;
    padding: 15px;
}
.about-box .number {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: 'Red Hat Text', sans-serif;
}
.about-img{
    border-radius: 20px;
}




.product-section {
	position: relative;
	background-image: url('./images/product-img/ligansssakkka.png');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	padding: 100px 0;
	overflow: hidden;
	color: #fff;
}

.product-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.8;
    background: #3c70b3;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.product-section .container {
	position: relative;
	z-index: 1;
}

.product-section .section-title {
	margin-bottom: 60px;
	text-align: center;
}

.product-section .section-title h3 {
	font-size: 1.1rem;
	color: #fff;
	font-family: var(--font-family-body);
	font-weight: var(--font-weight-semibold);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: var(--spacing-sm);
}

.product-section .section-title h2 {
	color: #fff;
	font-size: calc(2.2rem + 0.6vw);
}

.product-section .section-description p {
	color: #fff;
	font-size: 1rem;
	margin-bottom: 0;
}

.product-section .owl-carousel {
	margin-top: var(--spacing-xxl);
}

.product-item {
    position: relative;
    background: #ffffff12;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    height: 100%;
    margin-bottom: 30px;
    padding: 20px;
    overflow: hidden;
    color: #fff;
    
}

.product-item::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 0;
	background-color: var(--blue-color);
	border-radius: 999px 999px 0 0;
	transition: all 0.4s ease-in-out;
	z-index: -1;
}
.product-item img {
    border-radius: 20px;
}
.product-item.active::before,
.product-item:hover::before {
	height: 100%;
	border-radius: 0;
}



.product-item .product-title {
	margin-bottom: 20px;
}

.product-item .product-title h3 {
    font-size: 20px;
    line-height: 1.4em;
    color: #fff;
    border-bottom: 1px solid #ffffff66;
    margin-top: 20px;
    transition: all 0.4s ease-in-out;
    position: relative;
    z-index: 1;
}

.product-item.active .product-title h3,
.product-item:hover .product-title h3 {
	color: #fff;
}

.product-item .product-title h3 a {
	color: inherit;
	text-decoration: none;
}

.product-item .product-content p {
	color: #fff;
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
	position: relative;
	z-index: 1;
}

.product-category .owl-dots {
	display: none;
}

.product-section .category-name {
	display: -webkit-box;
	-webkit-line-clamp: 1;
	height: 32px;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.product-item.active .product-content p,
.product-item:hover .product-content p {
	color: #fff;
}

.product-item .product-btn {
	margin-top: 20px;
}

.product-item .product-btn .readmore-btn {
	color: #fff;
}

.product-item.active .product-btn .readmore-btn,
.product-item:hover .product-btn .readmore-btn {
	color: #fff;
}

.product-item.active .product-btn .readmore-btn .fa-solid,
.product-item:hover .product-btn .readmore-btn .fa-solid {
	filter: brightness(0) invert(1);
}

.owl-theme .owl-nav {
	margin-top: 30px;
	text-align: center;
}
/* .owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: block;
} */
.owl-theme .owl-nav button {
	width: 40px;
	height: 40px;
	line-height: 38px;
	border-radius: 50%;
	background: var(--blue-color) !important;
	color: #fff !important;
	font-size: 20px !important;
	margin: 0 5px;
	transition: all 0.3s ease-in-out;
	opacity: 1 !important;
}

.owl-theme .owl-nav button:hover {
	background: var(--blue-color) !important;
	transform: translateY(-2px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.owl-theme .owl-dots {
	text-align: center;
	margin-top: 20px;
}

.owl-theme .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 5px 7px;
	background: var(--color-border);
	display: block;
	-webkit-backface-visibility: visible;
	transition: opacity .2s ease;
	border-radius: 30px;
	background: var(--blue-color);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background: var(--blue-color);
}

@media (max-width: 991px) {
	.product-section .product-item {
		padding: 30px 20px;
	}
    .product-section {
    padding: 50px 0;
}
.owl-theme .owl-nav {
    margin-top: 0;
}
	.product-section .product-item .icon-box {
		top: 10px;
		right: 10px;
	}

	.product-section .product-item .icon-box i.fa-solid {
		font-size: 3rem;
	}

	.product-section .product-item .product-no {
		width: 35px;
		height: 35px;
		margin-bottom: 15px;
	}

	.product-section .product-item .product-no h3 {
		font-size: 14px;
	}

	.product-section .product-item .product-title h3 {
		font-size: 18px;
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.product-section .product-item .product-content p {
		font-size: 0.9rem;
	}
}

@media (max-width: 767px) {
    a.logo-brand img {
    width: 59% !important;
}
section#global {
    padding: 4px 0 255px 0 !important;
}
div#mega-menu-wrap-primary {
    width: 50px !important;
    float: right !important;
}
	.product-section .section-title h2 {
    font-size: 28px;
    margin: 15px 0;
}
.product-section .section-title {
    margin-bottom: 30px;
}

	.product-section .product-item {
		margin-left: auto;
		margin-right: auto;
		max-width: 100%;
	}
}


/* manufacture section */

.manu-img{
width: 100%;
position: relative;
}
.manu-img img{
    border-radius: 20px;
}
.experience-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 300px;
    background-color: #3e72b7;
    border-radius: 20px;
    padding: 20px;
}
section#why h4 {
    color: #fff;
}
.experience-box h4{
    color: var(--heading-color);

}
.experience-box a {
    color: #ffffff;
    transition: all 0.4s ease-in-out;
}
.experience-box a:hover{
    color: var(--dark-blue-color);
}
.manufacturing-heading{
    font-size: 40px;
    font-weight: 700;
    color: var(--heading-color);
    margin: 15px 0;
}
.manufacturing-list {
    font-weight: 700;
    margin: 10px 0;
    color: var(--dark-blue-color);
}
.manufacturing-list i {
    color: var(--dark-blue-color);
    margin-right: 5px;
}




/* Services Section */
.services {
    background: linear-gradient(to right, var(--blue-color) 0%, #2f6aa0 50%, #2f6aa0 50%, var(--blue-color) 100%) !important;
    background-blend-mode: multiply;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    color: white;
}
a.btn.btn-primary {
    background: #000 !important;
    border: none !important;
}
.services .small-heading {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.services .main-heading {
    font-weight: 600;
    line-height: 1.2;
    color: white;
    font-size: 40px;
}

.services .service-card-dark i,
h3,
p {
    position: relative;
}

.services .service-card-dark {
    background-color: #00000052;
    padding: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s;
}

.services .service-card-dark.gradient {
    background: #ffffff30;
}

.service-card-dark.gradient::after {
    filter: brightness(0) saturate(100%) invert(69%) sepia(77%) saturate(840%) hue-rotate(6deg) brightness(95%) contrast(96%);

}

.services .service-icon-dark {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 25px;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    background-color: #fff;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: all 0.3s;
    color: var(--dark-blue-color);
}

.services .service-card-dark.gradient .service-icon-dark {
    background-color: var(--dark-blue-color);
    color: #fff;
}

.service-title-dark {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.service-description-dark {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-card-dark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0px;
    right: 0;
    background-color: #ffffff30;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    transform-origin: top right;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    visibility: visible;
}

.service-card-dark:hover::before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    transform-origin: bottom center;
}




.services .service-card-dark:hover .service-icon-dark {
    background-color: var(--dark-blue-color);
    color: #fff;
}




 /* Feature Item Styling */
.growth-section .main-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--heading-color);
}
        .feature-item {
            transition: transform 0.3s ease;
        }

.feature-icon i {
    width: 60px;
    height: 60px;
    background-color: #3e72b7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 24px;
    color: #ffffff;
}


        .feature-text h4 {
            font-family: var(--outfit-font);
            color: var(--theme-color-3);
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .feature-text p {
            font-family: var(--dm-sans-font);
            color: var(--body-color);
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* Custom Separator Line */
        .border-top {
            border-color: #eee !important;
        }

        /* Image Wrapper */
        .growth-img-wrapper img {
            width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 20px;
        }
   




        /* Contact Section Css */
.contact-section {
	padding: 0;
}

.contact-section .contact-section-inner {
    background-size: cover;
    background-repeat: no-repeat;
    background: linear-gradient(rgb(0 0 0 / 70%), rgb(0 0 0 / 56%)), url(images/about-baclinker.avif) center / cover no-repeat;
    margin: 10px;
    padding: 80px 0;
    color: #fff;
    border-radius: 12px;
}

.contact-heading{
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    margin: 15px 0;
}

.contact-section .contact-form .form-label {
	color: #fff;
	font-size: 16px;
	margin-bottom: 8px;
}

.contact-section .contact-form .form-control {
    background-color: rgb(255 255 255 / 5%);
    border: 1px solid rgb(255 255 255);
    color: #ffffff;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: 0.4s;
}
.form-control::placeholder{
    color: #fff;
    font-size: 12px;
    opacity: 0.8;
}
.contact-section .contact-form .form-control:focus {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: var(--blue-color);
	box-shadow: 0 0 0 0.25rem rgb(119 176 184 / 32%);
	color: #fff;
}

.contact-section .contact-form textarea.form-control {
	min-height: 150px;
	resize: none;
}

.contact-section .testimonial-card {
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	padding: 50px;
	padding-bottom: 0;
	height: 100%;
	overflow: hidden;
}

.contact-section .testimonial-card h3 {
	color: #fff;
	font-size: 32px;
}

.contact-section .testimonial-card .highlight {
	color: var(--highlight-text);
}

.contact-section .testimonial-quote-icon {
	color: var(--testimonials-quote);
	font-size: 92px;
	font-weight: 900;
	line-height: 1;
	font-family: serif;
}

.contact-section .testimonial-text {
	font-size: 20px;
	line-height: 1.5;
}

.contact-section .author-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 2;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-section .author-details img {
	width: 50px !important;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 15px;
}

.contact-section .author-details h5 {
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	margin: 0;
}

.contact-section .author-details p {
	font-size: 0.85rem;
	color: var(--highlight-text);
	margin: 0;
	line-height: 1.2;
}

.contact-section .testimonial-nav {
	display: flex;
	gap: 10px;
}

.contact-section .testimonial-nav button {
	width: 38px;
	height: 38px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background-color: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.15);
	transition: var(--transition-4s);
	cursor: pointer;
}

.contact-section .testimonial-nav button:hover {
	background-color: var(--blue-color);
	border-color: var(--blue-color);
	color: var(--dark-blue-color);
}
.contact-form input.wpcf7-form-control.wpcf7-submit {
    font-size: 14px;
    font-weight: 600;
    border: none;
    background-color: var(--blue-color);
    padding: 15px 24px 15px 24px;
    display: inline-block;
    align-items: center;
    border-radius: 99px;
    position: relative;
    transition: all .5s cubic-bezier(.77, 0, .175, 1);
}
@media (max-width: 991.98px) {
	

	.contact-section .row {
		padding: 0;
	}
.contact-section .contact-form textarea.form-control {
    min-height: 90px;
}
	.contact-section .testimonial-text {
		font-size: 16px;
	}

	.contact-section .testimonial-card {
		/* margin-top: 40px; */
		padding: 30px;
	}

	.contact-section .testimonial-quote-icon {
		font-size: 6rem;
		margin-bottom: 10px;
	}

	.contact-section .contact-section-inner {
		padding: 40px 0 0;
	}
}



/* Testimonials section */
.testimonials-section {
    background-color: #fff;
}

.testimonials-intro {
	margin-bottom: 50px;
}

.testimonials-intro .subtitle-tag {
	background-color: var(--blue-color);
	color: var(--dark-blue-color);
}

.testimonials-intro .section-title {
	color: var(--heading-color);
    font-size: 40px;
    font-weight: 600;
	margin: 15px 0;
}

.testimonials-intro p {
	color: var(--text-color);
	margin-bottom: 30px;
}

.testimonial-card {
    background-color: #3c6eb0;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    /* margin-bottom: 30px; */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    color: #fff;
}

.testimonial-card .stars {
	color: #FFC107;
	margin-bottom: 15px;
	font-size: 1.1rem;
}

.testimonial-card p {
	color: var(--dark-text);
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 20px;
	flex-grow: 1;
}

.testimonial-card .author-info {
	border-top: 1px solid #fff;
	padding-top: 15px;
	display: flex;
	align-items: center;
}

.testimonial-card .author-image {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 15px;
	background-color: var(--blue-color);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
}

.testimonial-card .author-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.testimonial-card .author-name {
	font-weight: 700;
	color: #fff;
	margin-bottom: 2px;
}

.testimonial-card .author-title {
	font-size: 0.85rem;
	color: #fff;
}

@media (max-width: 767.98px) {
	.testimonials-section {
		padding: 40px 0;
	}

	

	.testimonials-intro .section-title,
	.testimonials-intro p {
		margin-left: auto;
		margin-right: auto;
	}

	.testimonials-intro .global_btn {
		margin: 0 auto;
	}
}
       



/* footer */
.footer{
    padding: 60px 0;
    background-color: var(--heading-color);
    overflow: hidden;
}
.foote-logo-box{
    color: #fff;
}
.foote-logo-box img{
    width: 70%;
    margin-bottom: 10px;
}
.foote-logo-box h4 {
    margin: 15px 0;
}
ul.footer-social {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 15px;
    margin-top: 25px;
}
ul.footer-social li a i {
    width: 30px;
    height: 30px;
    background-color: var(--blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    border-radius: 50%;
    border: 1px solid var(--blue-color);
    transition: all 0.3s;
}
ul.footer-social li a i:hover{
    background-color: transparent;
    color: var(--blue-color);
    
}
span.footer-heading {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    display: block;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}
.footer-links li a {
    line-height: 40px;
    color: #fff;
    transition: all 0.3s;
}
.footer-links li a:hover{
    color: var(--blue-color);
}
.footer-links li a i {
    color: var(--blue-color);
    margin-right: 10px;
}
.footer-contact-box {
    margin-top: 15px;
    display: flex;
    align-items: center;
}
.footer-contact-box i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--blue-color);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--heading-color);
    padding: 15px;
}
.footer-contact-box p {
    margin-bottom: 0;
    color: #c4c4c4;
}
.footer-contact-box a {
    color: #fff;
    font-size: 18px;
    transition: all 0.3s;
}
.footer-contact-box a:hover{
    color: var(--blue-color);
}
.bottom-footer {
    background-color: #486dab;
    border-top: 2px solid #ddd;
    padding: 16px 0 0;
}




  #sequence a {
    width: 33.3333%;
    float: left;
    text-align: center;
    padding: 5px 0;
    font-size: 15px;
    color: #fff !important;
    font-weight: 600;
    text-decoration: none !important;
 
}
#sequence a:not(:last-child) {
    border-right: 1px solid #fffdfd;
}
#sequence {
    width: 100%;
    float: left;
    background: #000000;
    position: fixed;
    bottom: 0px;
    z-index: 100;
    padding: 0;
    color: #fff !important;
    margin:  0 !important;
}



.modal-body.contact-modal {
    background-color: #32a3d4;
    color: #fff;
}


@media (max-width: 991px) {
    .container-fluid{
        width: 97%;
    }
section{
    padding: 40px 0;
}
.inner-lets-we {
    padding: 60px 20px 20px;
}
.inner-lets-we h1 {
    font-size: 30px;
}
.banner-no{
    display: none !important;
}
.carousel-indicators {
    right: 0% !important;
    top: 95% !important;
}
img.about-capsule_an {
    height: 100px;
    width: 115px;
    bottom:0;
    right: 2%;
}
.inner-lets-we h1 br {
    display: none !important;
}
.inner-legso-main-ctc p {
    font-size: 16px;
    font-weight: 400;
}
.about-content h2 {
    font-size: 28px;
    margin: 15px 0;
}
.about-content p {
    padding-left: 0;
}
.about-content {
    padding-top: 25px;
}
.experience-box {
    bottom: 10px;
    left: 10px;
    width: 280px;
    padding: 15px 15px;
}
.manufacturing-heading {
    font-size: 28px;
}
.manufacturing-list {
    margin: 0;
}
.services .main-heading {
    font-size: 28px;
}
.services .main-heading {
    font-size: 28px;
}
.growth-section .main-title {
    font-size: 28px;
}
section.growth-section {
    padding: 0 0 40px;
}
.growth-img-wrapper img {
    margin-top: 20px;
}
.contact-heading {
    font-size: 28px;
}
.testimonials-intro .section-title {
    font-size: 28px;
}
.footer {
    padding: 40px 0;
}
.footer-contact-box {

    flex-wrap: wrap;
}
}






/* Breadcrumb Css */
.page-breadcrumb {
    background: linear-gradient(to right, var(--blue-color) 0%,var(--dark-blue-color) 50%,var(--dark-blue-color) 50%, var(--blue-color) 100%) !important;
    padding: 20px 0;
    color: #fff;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    position: relative;
    overflow: hidden;
}
h1.pagetitle{
    color: #fff;
}
.page-breadcrumb .container-fluid{
	position:relative;
	z-index:9;
}
.page-breadcrumb::before {
	content: "";
	position: absolute;
	top: -50px;
	right: -50px;
	width: 200px;
	height: 200px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
}

.page-breadcrumb::after {
	content: "";
	position: absolute;
	bottom: -80px;
	left: -80px;
	width: 250px;
	height: 250px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
}

.page-breadcrumb .container {
	position: relative;
	z-index: 1;
}

.page-breadcrumb span.breadcrumb_new a {
	color: #fff;
	background: var(--dark-blue-color);
	padding: 5px;
	border-radius: 7px;
	text-decoration: none;
}

.page-breadcrumb span.breadcrumb_new {
	color: #fff;
}

.page-breadcrumb .extraa {
	margin: 54px 0;
}

@media(max-width:767px) {
	.page-breadcrumb .extraa {
		margin: 15px 0;
	}
}



/* inner pages */
/* ====== Inner Pages Common Styles ====== */
.page-section {
    margin-bottom: 5rem;
}

.page-section h2, .page-section h3 {
    font-weight: 700;
    color: var(--dark-blue-color);
    margin-bottom: 0;
    position: relative;
}
.page-section h2::after,
.page-section h3::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--yellow-color);
    margin-top: 10px;
    border-radius: 2px;
}

.page-section p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 1rem;
    /* font-weight: 500; */
}

/* Subtle background section */
.page-section.bg-subtle {
    background: linear-gradient(135deg, #77b0b8, #bee3e6);
    padding: 3rem 2rem;
    border-radius: 14px;
    border: 2px dashed var(--dark-blue-color);
}

/* Card style for last section */
.page-card {
    background: #105b6138;
    border-radius: 14px;
    padding: 1.8rem;
    transition: all 0.3s ease;
    height: 100%;
}

.page-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
}

.page-img {
    border-radius: 14px;
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.text-custom-heading {
    color: var(--dark-blue-color) !important;
}

.infrastructure-card {
    background-color: var(--color-card-bg);
    border: none;
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.hero-header-bg {
    background: linear-gradient(180deg, var(--color-page-bg) 0%, var(--color-subtle-bg) 100%);
}

.list-header {
    background-color: var(--color-primary-dark);
    color: var(--color-light);
    padding: 1rem 1rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.list-header.accent-bg {
    background-color: #d15a2e;
    color: var(--color-light);
}

.machine-list-item {
    padding: 1.1rem 2rem;
    border-bottom: 1px solid var(--color-border-light);
    color: var(--color-primary-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    background-color: var(--color-card-bg);
}

.machine-list-item:hover {
    background-color: #f3f3f3;
    transform: none;
}

.machine-list-item:last-child {
    border-bottom: none;
}

.feature-icon-box-small {
    color: var(--blue-color);
    background-color: var(--dark-blue-color);
    border: 2px solid var(--dark-blue-color);
    width: 55px;
    height: 55px;
    line-height: 51px;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 5px 15px rgba(8, 39, 114, 0.2);
}

.heading-accent-line {
    width: 60px;
    height: 3px;
    background-color: var(--dark-blue-color);
    margin: 0.75rem auto 30px;
    border-radius: 3px;
}

.feature-card-title {
    color: var(--dark-blue-color);
    font-weight: 800;
    margin-bottom: 0.3rem;
}

@media(min-width:767px){
a.logo-brand img {
    width: 40%;
}
}
section#banner {
    padding: 0 0 0 0 !important;
}
