/*
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.498
Tested up to: 6.8
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;
}

header,
footer,
section {
  width: 100%;
  float: left;
}

body {
  font-family: 'Segoe UI', sans-serif;
}
header,
footer,
section {
    width: 100%;
    float: left;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
    --heading-color: #013E63;
    --paragraph-color: #000102;
    --light-bg-color: #57BBE1;
    --desc-color: #556E80;
    --dark-bg-color: #212530;
    --white-color: #ffffff;
    --dark-color: #000000;
    --transition-3s: all 0.3s ease;
    --transition-5s: all 0.5s ease;
    --font-heading: "Heebo", sans-serif;
    --font-paragraph: "Nunito Sans", sans-serif;
    
}

body {
    margin: 0;
    padding: 0;
    list-style: 1.8;
    font-size: 16px;
    color: var(--main-ancient-color);
}

a {
    text-decoration: none;
}
section{
  overflow: hidden;
}
/* .container-fluid {
    width: 85%;
} */

/* banner section  */
.banner-section .container-fluid {
    font-family: "Heebo", sans-serif;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 60px;
    padding: 170px;
    font-family: "Heebo", sans-serif;
}

.banner-box {
    max-width: 720px;
    position: relative;
    z-index: 1;
    padding: 0 75px 75px;
}

.banner-box:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 50%;
    width: 100%;
    background-color: #F8F8F8;
    z-index: -1;
    border-radius: 60px 60px 0 0;
    transform: skewy(-5deg);
}

.banner-box .sub {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-bg-color);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 100px;
    transition: 0.6s;
    transform: rotate(-4.093deg);
    margin-top: -10px;
    margin-bottom: 45px;
}

.banner-box h1 {
    font-size: 65px;
    margin-bottom: 25px;
    color: var(--heading-color);
    font-weight: 500;
}

.banner-box p {
    color: #486683;
    font-family: "Nunito Sans", sans-serif;
    margin-bottom: 0;
}

.banner-box:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 70%;
    width: 100%;
    background-color: #F8F8F8;
    z-index: -1;
    border-radius: 0 0 60px 60px;
}

.banner-btn {
    display: flex;
    margin-top: 45px;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}

.banner-btn li {
    list-style-type: none;
    margin-right: 15px;
}

.banner-btn .default-btn {
    border-radius: 100px;
    background-color: var(--light-bg-color);
    border: 1px solid var(--light-bg-color);
    display: inline-block;
    color: #ffffff;
    padding: 18px 35px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.6s;
}

.banner-btn .default-btn:hover {
    background-color: var(--heading-color);
    border: 1px solid var(--heading-color);
}

.banner-btn li:last-child .default-btn {
    background-color: transparent;
    color: var(--heading-color);
    border: 1px solid var(--light-bg-color);
}

.banner-btn li:last-child .default-btn:hover {
    background-color: var(--heading-color);
    border: 1px solid var(--heading-color);
    color: #fff;
}

.banner-box .list {
    display: flex;
    gap: 25px;
    margin-top: 35px;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}

.banner-box .list li {
    list-style-type: none;
    display: flex;
    gap: 10px;
    align-items: center;
}

.check {
    font-size: 20px;
    color: var(--heading-color);
}

.banner-box .list li span {
    color: var(--heading-color);
}

/* marquee section */
.marquee-section {
    margin-top: -100px;
    font-family: var(--font-paragraph);
    
}

.marquee-main-box {
    background-color: #d2ebf4;
    border-radius: 25px;
}

.marquee-title {
    padding: 65px 0px;
    background-color: var(--heading-color);
    text-align: center;
    border-radius: 25px 0 0 25px;
}

.marquee-heading {
    color: #ffffff;
    font-size: 25px;
}


.content-slider div {
    padding: 22px 2rem 0;
    font-size: 25px;
    color: var(--heading-color);
    font-weight: bold;
    white-space: nowrap;

}

/* about-section */
.about-main-box {
    position: relative;
    z-index: 1;
    overflow: hidden;
    width: 85%;
    margin: auto;
}

.about-main-box::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 300px;
    background-color: var(--light-bg-color);
    z-index: -1;
    border-radius: 60px 60px 0 0;
}

.about-main-box .container-fluid {
    width: 90%;
}

.about-inner {
    background-color: #F8F8F8;
    padding: 90px 85px;
    border-radius: 60px;
}

.about-content {
    max-width: 450px;
}

.about-content .sub {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-bg-color);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 100px;
    transition: 0.6s;
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--heading-color);
    font-family: "Heebo", sans-serif;
    font-weight: 500;
}

.about-content p {
    color: #486683;
    font-family: "Nunito Sans", sans-serif;
}

.about-content .list {
    display: flex;
    gap: 25px;
    margin-top: 25px;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}

.about-content .list li {
    list-style-type: none;
    display: flex;
    gap: 10px;
    align-items: center;
}

.about-content .list li {
    list-style-type: none;
    display: flex;
    gap: 10px;
    align-items: center;
}

.about-content .list li span {
    color: var(--heading-color);
}

.about-content .about-btn {
    margin-top: 35px;
}

.about-content .about-btn .default-btn {
    border-radius: 100px;
    background-color: transparent;
    color: var(--heading-color);
    border: 1px solid var(--light-bg-color);
}

.about-content .about-btn .default-btn:hover {
    background-color: var(--heading-color);
    border: 1px solid var(--heading-color);
    color: #fff;
}

.default-btn {
    display: inline-block;
    background-color: var(--light-bg-color);
    color: #ffffff;
    padding: 18px 35px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.6s;
    border-radius: 5px;
    border-radius: 100px;
}

.about-image {
    margin-left: -35px;
}

.about-image img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* choose section */
.choose-section {
    font-family: "Nunito Sans", sans-serif;
    color: #486683;
}

.choose-main-box {
    width: 85%;
    overflow: hidden;
    /* background-color: #1DBFCC; */
    background-color: var(--light-bg-color);
    padding: 140px 0;
    margin: auto;
}

.choose-section .container-fluid {
    width: 90%;
}

.section-title-div {
    margin-bottom: 55px;
    text-align: center;
}

.section-title-div .sub {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--heading-color);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 100px;
    transition: 0.6s;
    margin-bottom: 20px;
}

.section-title-div h2 {
    font-size: 40px;
    margin-bottom: 0;
    color: #fff;
}

.choose-card.wrap-style1 {
    position: relative;
    z-index: 1;
    background-color: transparent;
}

.choose-card {
    background-color: #F8F8F8;
    padding: 50px 40px;
    border-radius: 30px;
}

.choose-card.wrap-style1::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 50%;
    width: 100%;
    background-color: #F8F8F8;
    z-index: -1;
    border-radius: 30px 30px 0 0;
    transform: skewy(5deg);
}
.remove-skew::before{
    transform: unset !important;
}
.skew-left::before{
        transform: skewy(-5deg) !important;

}
.choose-card.wrap-style1 img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
.choose-card .content {
    margin-top: 35px;
}
.choose-card .content h3 {
    font-size: 23.5px;
    margin-bottom: 15px;
    color: var(--heading-color);
}
.content p {
    margin-bottom: 0;
    font-family: "Nunito Sans", sans-serif;
    color: #486683;
}
.choose-card.wrap-style1::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    height: 70%;
    width: 100%;
    background-color: #F8F8F8;
    z-index: -1;
    border-radius: 0 0 30px 30px;
}
/* fun-facts section */
.fun-facts{
    width: 85%;
    margin: auto;
    padding: 0px 0 120px;
        background-color: var(--light-bg-color);
    overflow: hidden;
    border-radius: 0 0 60px 60px;
}
.fun-facts .container-fluid{
    width: 85%;
}
.mc-fun-facts-card h2 {
    font-size: 65px;
    color: #ffffff;
    display: flex;
    align-items: center;
    line-height: 1;
    padding-bottom: 15px;
    border-bottom: 1px solid #ffffff;
    margin-bottom: 20px;
}
.mc-fun-facts-card p{
        margin-bottom: 0;
    font-size: 18px;
    color: #ffffff;
        font-family: "Nunito Sans", sans-serif;
}


/* products-section */
.team-section {
    padding: 100px 0;
}

.products-main {
    width: 100%;
    margin: auto;
}

.team-1 span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-bg-color);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 100px;
    transition: 0.6s;
    margin-bottom: 20px;
}

.team-1 h2 {
    font-size: 40px;
    margin-bottom: 0;
    color: #002345;
    font-family: "Heebo", sans-serif;
    font-weight: 500;
}


.team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap !important;
    margin-bottom: 40px;
    width: 100%;
}

.team-1 {
    width: 50%;
}

.title {
    font-size: 36px;
    font-weight: bold;
    margin: 10px 0 0;
}

.title span {
    font-weight: 400;
}

.description-nav {
    width: 50%;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 20px;
}

.description {
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

.custom-nav {
    display: flex;
    gap: 10px;
}

.custom-nav button {
    background-color: transparent;
    color: var(--light-bg-color);
    border: 1px solid var(--light-bg-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.custom-nav button:hover {
    border: 1px solid var(--heading-color);
}


.product-card {
    padding: 20px;
    border-radius: 30px;
    background: linear-gradient(159deg, #57BBE1 2.17%, #FFF0ED 99.28%);
    transition: -5s;
        
}


.team-member img {
    width: 100%;
    border-radius: 20px;
    margin-bottom: 15px;
}
.team-member img:hover{
   transform: scale(1.05);

}

.team-member h4 {
    font-size: 18px;
    font-weight: bold;
    color: var(--heading-color);
    margin: 0;
}

.team-member p {
    margin: 5px 0 20px;
    color: #486683;
    font-size: 16px;
    height: 50px;
}

.product-btn {
    padding: 12px 25px;
    margin-top: 15px;
}

.product-btn:hover {
    background-color: var(--heading-color);
    color: #fff;
}

/* third party */
.third-party-section {
    background-color: var(--heading-color);
}

.third-party-content .sub {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-bg-color);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 100px;
    transition: 0.6s;
    margin-bottom: 35px;
}

.third-party-content h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #fff;
    font-family: "Heebo", sans-serif;
    font-weight: 500;
}

.third-party-content p {
    color: #fff;
    max-width: 700px;
    margin-bottom: 50px;
}

.flip-card {
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 250px;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 0.5rem;
}

.flip-card-front {
    background: linear-gradient(159deg, #57BBE1 2.17%, #a1c0fa 99.28%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flip-card-front i {
    color: var(--heading-color);
}

.flip-card-back {
    background-color: #f8f9fa;
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.manufacturing-btn {
    margin-top: 50px;
}

.manufacturing-btn .default-btn {
    background-color: transparent;
    border: 1px solid var(--light-bg-color);
    color: #fff;
    transition: 0.6s;
}

.manufacturing-btn .default-btn:hover {
    background-color: var(--light-bg-color);
    color: var(--heading-color);
}

/* contact section */
.main-contact-box {
    width: 100%;
    background-color: var(--light-bg-color);
    border-radius: 60px;
    margin: auto;
}

.contact-left .sub {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--heading-color);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 100px;
    transition: 0.6s;
    margin-bottom: 20px;
}

.contact-left {
    padding: 50px;
    background-color: #fff;
    margin: 65px 0px 0 30px;
    border-radius: 60px;
}

.contact-left h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--heading-color);
    font-family: "Heebo", sans-serif;
    font-weight: 500;
}

.contact-left p i {
    color: var(--heading-color);
    margin-right: 10px;
    font-size: 20px;
}

.contact-left p {
    color: var(--heading-color);
}
.contact-left p a {
    color: var(--heading-color);
}
.social-icon {
    color: var(--heading-color) !important;
    font-size: 25px;
    padding: 20px 15px 0 0;
}

.contact-right {
    padding: 50px;
}

.form-control {
    display: block;
}

.form-box label {
    padding: 10px 0;
}

.form-box button {
    margin-top: 20px;
    width: 100%;
    background-color: var(--heading-color);
    border: none;
    padding: 10px;
    border-radius: 5px;
}

.form-box button a {
    color: #fff;

}

/* blog  */

	.leiha-blogs-section {
		padding: 80px 0;
	}

	.leiha-blog-card.style-eight {
		position: relative;
		margin-bottom: 30px;
		transition: var(--transition-3s);
	}
h1.main-heading {
    padding-bottom: 25px;
}
	.leiha-grid-item .leiha-blog-card {
		margin-bottom: 0 !important;
	}

	.leiha-blog-card.style-eight .leiha-image-container {
		position: relative;
		overflow: hidden;
		border-radius: 10px;
	}

	.leiha-blog-card.style-eight .leiha-image-container img {
		position: relative;
		width: 100%;
		height: 250px;
		object-fit: cover;
		transform: scale(1.01);
		transition: var(--transition-5s);
	}

	.leiha-blog-card.style-eight .leiha-content-box {
		position: relative;
		padding: 0;
		margin-top: -22px;
	}

	.leiha-blog-card.style-eight .leiha-content-box .leiha-category {
		display: inline-block;
		background: var(--heading-color);
		padding: 10px 20px;
		font-size: 12px;
		text-transform: uppercase;
		line-height: 22px;
		font-weight: 600;
		border-radius: 30px;
		margin-bottom: 20px;
		margin-left: 20px;
		
	}

	.leiha-blog-card.style-eight .leiha-content-box .leiha-category a {
		color: #fff;
		text-decoration: none;
	}

	.leiha-blog-card.style-eight .leiha-content-box .leiha-category a i {
		margin-right: 8px;
		font-size: 14px;
	}

	.leiha-blog-card.style-eight .leiha-content-box h2 {
		line-height: normal;
		margin-bottom: 15px;
		font-family: var(--highlight-heading);
	}

	.leiha-blog-card.style-eight .leiha-content-box h2 a {
		font-size: 20px;
		line-height: 30px;
		display: block;
		color: var(--heading-color);
		margin-bottom: 10px;
		text-decoration: none;
		transition: var(--transition-3s);
	}

	.leiha-blog-card.style-eight .leiha-content-box .leiha-read-more {
		display: inline-flex;
		align-items: center;
		font-size: 16px;
		line-height: 26px;
		color: var(--light-bg-color);
		text-decoration: none;
		font-family: var(--font-third);
		transition: var(--transition-3s);
	}

	.leiha-blog-card.style-eight .leiha-content-box .leiha-read-more i {
		margin-left: 10px;
		font-size: 14px;
		transition: var(--transition-3s);
	}

	.leiha-blog-card.style-eight:hover .leiha-image-container img {
		transform: scale(1.2) rotate(2deg);
	}

	.leiha-blog-card.style-eight:hover h2 a {
		color: var(--ancient-color);
	}

	.leiha-blog-card.style-eight:hover .leiha-read-more {
		color: var(--ancient-color);
	}

	.leiha-blog-card.style-eight:hover .leiha-read-more i {
		transform: translateX(5px);
	}

	@media (max-width: 991px) {
		.leiha-grid-item {
			margin-bottom: 20px;
		}
	}

	@media (max-width: 767px) {

		.leiha-blog-card.style-eight .leiha-content-box h2 a {
			font-size: 18px;
			line-height: 28px;
		}

		.leiha-blog-card.style-eight .leiha-image-container img {
			height: 200px;
		}
	}

/* new footer  */
/* Footer css*/
  
  .footer {
    padding: 80px 0;
    background-color: #000;
    overflow: hidden;
    position: relative;
    z-index: 9;
    margin-bottom: 50px;
  }
  .footer-logo{
    height: 100px;
  }
  .primary-footer {
    position: relative;
  
    z-index: 99;
  }
  
  .footer-widget {
    margin-bottom: 0;
  }
  
  .widget_text.footer-widget.widget_custom_html {
    color: #fff;
    font-size: 16px;
  }
  
  .widget {
    margin: 0 0 1.5em;
  }
  
  .widget .widget-title,
  .widget .wp-block-heading,
  .wp-block-archives__label,
  .wp-block-search__label {
    position: relative;
    color: var(--themeht-text-color);
    font-family: var(--themeht-typography-secondary-font-family);
    text-transform: capitalize;
    font-size: 24px;
    line-height: 34px;
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
    padding-left: 30px;
  }
  
  .footer .widget-title.head {
    position: relative;
    color: #fff;
    padding-left: 0;
  }
  
  .footer-widget.widget ul {
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 0;
  }
  
  .footer-widget .menu li {
    margin-bottom: 15px;
    text-transform: capitalize;
  }

  
  .footer-widget .menu li a {
    color: #fff;
    position: relative;
    padding-left: 0 !important;
    font-size: 16px !important;
    font-weight: 500;
    line-height: 23px;
    position: relative;
  }
  
  .working-hours-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0 9px;
    position: relative;
  }
  
  .footer-cntct {
    background: var(--heading-color);
    padding: 20px 50px;
    border-radius: 30px;
    margin: 50px 0;
  }
  
  .footer-cntct ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
  
  .footer-widget.widget ul {
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 0;
  }
  
  .media-icon li {
    margin-bottom: 0 !important;
    font-size: 20px;
    font-weight: 500;
    position: relative;
    padding-left: 70px;
  }
  
  @media (min-width: 1200px) {
    .media-icon li:nth-child(1) {
      width: 35%;
    }
  }
  
  .media-icon li i {
    font-size: 50px;
    color: var(--themeht-white-color);
    line-height: 1;
    position: absolute;
    left: 0;
    top: 0;
  }
  
  .media-icon li span {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    color: var(--themeht-light-color);
  }
  
  .media-icon li a,
  .media-icon li p {
    color: var(--themeht-white-color);
    word-break: break-all;
  }
  
  .media-icon li:not(:last-child)::after {
    background: linear-gradient(
      90deg,
      hsla(0, 0%, 100%, 0),
      #fff 48.44%,
      hsla(0, 0%, 100%, 0.152) 99.99%,
      hsla(0, 0%, 100%, 0)
    );
    top: 0;
    content: "";
    width: 1px;
    height: 100%;
    right: -70px;
    opacity: 0.2;
    position: absolute;
  }
  
  .secondary-footer {
    position: relative;
    color: var(--themeht-white-color);
  }
  
  .footer-widget.widget ul {
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 0;
  }
  
  .social-icons li {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0 8px 0 0;
  }
  .social-icons li a {
    display: inline-block;
    border-radius: 50%;
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
    margin: 0;
    border: 0;
    background: #fff;
    color: var(--heading-color) !important;
    transition: all 0.3s ease;
}
  .footer-widget.widget ul li a{
    color: #fff;
  }
  .list-inline-item:not(:last-child) {
    margin-right: 0.5rem;
  }
  
  .footer-widget.widget ul li {
    list-style-type: none;
    margin-bottom: 15px !important;
  }
  
  .footer-widget.widget .social-icons.footer-social li {
    margin-bottom: 0;
  }
  @media(max-width:767px){
    .footer-cntct ul {
      display: block;
  }
  }

  .subscribe-form {
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 20px;
}

 footer input[type="email"] {
    border: 1px solid transparent;
    padding: 10px 20px;
    width: 100%;
    height: 55px;
    color: var(--themeht-body-color);
    border-radius: 100px;
    background: var(--themeht-light-color);
    font-size: 14px;
-webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.subscribe-form button {
    background: none;
    border: inherit;
    color: var(--themeht-text-color);
    line-height: inherit;
    position: absolute;
    right: 20px;
    top: auto;
    padding: 0;
    font-size: 20px;
}
.copyright {
    color: #fff;
}
[type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}
@media (max-width: 767px) {
    .container-fluid {
        width: 95%;
    }

    .banner-section .container-fluid {
        padding: 50px 10px;
    }

    .banner-box .sub {
        padding: 8px 7px;
        font-size: 14px;
        transform: unset;
        margin-top: 0;
        margin-bottom: 20px;
    }

    .banner-box {
        padding: 30px 20px;
    }

    .banner-box h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .banner-btn {
        display: block;
        margin-top: 25px;
    }

    .banner-btn li {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .banner-box .list {
        display: block;
        margin-top: 20px;
    }

    /* marquee section  */
    .marquee-section {
        margin-top: 25px;
    }

    .marquee-heading {
        font-size: 20px;
    }

    .marquee-title {
        padding: 10px;
        border-radius: 25px;
    }

    .marquee-main-box {
        padding: 15px;
    }

    .content-slider div {
        padding: 5px 1rem 5px;
        font-size: 20px;
    }

    /* about section */
    .about-main-box {
        width: 100%;
        margin: 0;
    }

    .about-main-box .container-fluid {
        width: 100%;
    }

    .about-inner {
        padding: 50px 20px;
    }

    .about-content .sub {
        padding: 8px 12px;
        margin-bottom: 15px;
        font-size: 15px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-content .list {
        display: block;
        margin-top: 15px;
    }

    .about-content .list li {
        margin-bottom: 15px;
    }

    .about-content .about-btn {
        margin-top: 25px;
    }

    .about-image {
        margin-left: 0;
    }
    /* choose section  */
.choose-main-box {
    width: 100%;
    padding: 50px 0;
 }
.section-title-div h2 {
    font-size: 28px;
}
.choose-section .container-fluid {
    width: 100% !important;
}
.choose-card {
    padding: 40px 20px;
    border-radius: 30px;
}
/* fun-facts section */
.fun-facts{
    width: 100%;
    padding: 0 0 50px;
}
.mc-fun-facts-card h2 {
    font-size: 40px;
        margin-bottom: 15px;
            padding-bottom: 10px;
}
/* products-section */
    /* section5 */

    .team-section {
        padding: 50px 0;
    }

    .team-header {
        display: unset;

        flex-wrap: wrap !important;
        margin-bottom: 40px;
        width: 100%;
    }

    .team-1 {
        width: 100%;
    }

    .description-nav {
        width: 100%;
        flex-wrap: wrap;
        margin-bottom: 20px;
        justify-content: start;
    }

    .team-1 h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .custom-nav button {
        width: 40px;
        height: 40px;
    }
    /* thirdparty */
    .third-party-content .sub {
    margin-bottom: 20px;
}
    .third-party-content h2 {
    font-size: 28px;
}
.manufacturing-btn {
    margin-top: 30px;
}
/* contact  */
.contact-left {
    padding: 50px 20px;
    margin: 10px;
}
.contact-left h2 {
    font-size: 28px;
    margin-bottom: 15px;
}
.contact-right {
    padding: 50px 20px;
}



}
/* header  */
 .header-con {
  width: 85%;
}

.logo {
  height: 100px;
  width: auto;
}

.mega-menu-toggle-animated-block {
  padding-top: 40px;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-flyout ul.mega-sub-menu {
  top: 100px;
}

.navbar-toggler {
  margin: auto 0;
  padding: .25rem .75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: .25rem;
  transition: box-shadow .15s ease-in-out;
}

.navbar-nav {
  flex-direction: unset;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  justify-content: space-evenly;
  width: 100%;
  padding: 35px 0;
}

.nav-item .nav-link {
  color: #000;
  font-size: 17px;
}
/*
.con-1 {
  width: 85%;
}

div#n2-ss-2 .n2-ss-slide-limiter {
  max-width: 1920px;
  width: 85%;
}

@media (max-width: 767px) {
  div#n2-ss-2 .n2-ss-slide-limiter {
    max-width: 1920px;
    width: 95%;
  }
}

.about-us {
  background: linear-gradient(333deg, #f1faff80, #f1f5f9bd, #edf7ffcd);
  font-family: 'Exo', sans-serif;
}

.about-heading {
  color: #084061;
  padding: 0 0 20px;
  font-size: 35px;
  font-weight: bold;
}

.about-content {
  font-size: 18px;
}

.about-img {
  width: 100%;
  border-radius: 20px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}


.about-list li {
  font-size: 17px;
  padding: 5px 0;
}

.drive-us {
  padding: 20px;
}

.about-heading-2 {
  color: #084061;
  font-size: 25px;
}

.our-commitment {
  font-family: 'Exo', sans-serif;
  background-image: url(images/comit-bg.png);
  background-repeat: no-repeat;
  background-position: right;
}

.our-commitment h2 {
  font-family: 'Exo', sans-serif;
  color: #084061;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}

.our-commitment h5 {
  font-weight: bold;
  color: #084061;
}

.flip-card {
  background-color: transparent;
  perspective: 1000px;
  height: 250px;
}

.flip-card-back p {
  padding: 40px 0 0;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
}

.flip-card-front {
  background-color: #e6f5fdd4;
  padding-top: 50px;
}

.flip-card-back {
  background-color: #f8f9fa;
  transform: rotateY(180deg);
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}


.numbers-section {
  position: relative;
  padding: 140px 20px;
  background-color: #011c30;
  font-family: 'Exo', sans-serif;
  overflow: hidden;
  color: #ffffff;
}

.numbers-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  z-index: 0;
}

.numbers-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
  margin: auto;
}

.numbers-heading {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 20px;
}

.numbers-subheading {
  text-align: center;
  margin-bottom: 100px;
  color: #ccc;
  font-size: 1.1rem;
}

.data-lines {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 70px;
  align-items: center;
}

.line-data {
  position: relative;
  width: 190px;
  height: 190px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  text-align: center;
  padding: 25px 15px;
  transition: transform 0.4s;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  animation: pulseFloat 6s infinite;
}

.line-data:hover {
  transform: scale(1.08) rotate(-2deg);
}

.icon {
  font-size: 34px;
  margin-bottom: 10px;
  display: block;
}

.value {
  font-size: 2rem;
  font-weight: 600;
}

.value::after {
  content: "+";
}

.label {
  font-size: 0.95rem;
  color: #ddd;
}

.inspiration {
  margin-top: 100px;
  text-align: center;
  font-size: 1rem;
  font-style: italic;
  color: #ddd;
}

@keyframes pulseFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media(max-width: 768px) {
  .numbers-heading {
    font-size: 2rem;
  }

  .line-data {
    width: 160px;
    height: 160px;
    padding: 0 0;
  }

  .value {
    font-size: 1.5rem;
  }
}

.third-party-section {
  font-family: 'Exo', sans-serif;
  background-color: #ffffff;
  padding: 0px 0;
}

.third-party-section h2 {
  font-weight: 700;
  color: #084061;
  font-size: 35px;
  padding: 0 0 10px 0;
}

.third-party-section p {
  font-size: 16px;
}

.third-party-section li,
.third-party-section .industry-item {
  color: #6c757d;
  font-size: 18px;
  padding: 10px 0 0 0px;
}

.third-party-section h6 {
  color: #084061;
  font-size: 25px;
  font-weight: 600;
}

.third-party-section ul {
  padding-left: 1rem;
}

.industry-list .col-6 {
  padding-bottom: 6px;
}

.third-party-section img {
  width: 100%;
  margin-top: 40px;
  border-radius: 20px;
}

.req-btn {
  background-color: #084061;
  color: #fff;
  padding: 10px 25px;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.8s ease;
}

.req-btn:hover {
  background-color: transparent;
  color: #084061;
  border: 1px solid #084061;
}

@media (max-width: 768px) {
  .third-party-section {
    padding: 40px 0;
  }
}

.products-section {
  text-align: center;
  background-image: url(images/product-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-family: 'Exo', sans-serif;
}

.overlay-products {
  background-color: #000000b3;
  width: 100%;
  padding: 100px 0 120px;
}

.product-heading {
  color: #fff;
  opacity: 0.9;
  font-weight: bold;
  font-size: 35px;
  padding: 0 0 50px 0;
}

.products-owl .card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.products-owl .card:hover {
  transform: translateY(-10px);
}

.products-owl .card-img-top {
  transition: transform 0.4s ease;
}

.products-owl .card:hover .card-img-top {
  transform: scale(1.05);
}

.product-card {
  border: 0 !important;
}

.product-name {
  color: #084061;
  font-weight: bold;
}

.why-choose-section {
  padding: 0px 0;
  font-family: 'Exo', sans-serif;
  background: linear-gradient(to right, #f8f9fa, #ffffff);
}

.why-choose-title {
  font-size: 35px;
  font-weight: 700;
  color: #084061;
  margin-bottom: 20px;
}

.why-choose-description {
  font-size: 18px;
  margin-bottom: 50px;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 25px;
}

.why-feature i {
  font-size: 30px;
  color: #084061;
  margin-right: 20px;
}

.why-feature h5 {
  font-weight: 600;
  margin-bottom: 8px;
  color: #084061;
}

.why-feature p {
  margin: 0;
  color: #495057;
  font-size: 16px;
  max-width: 500px;
}

.why-feature:hover {
  transform: translateY(-10px);
  transition: 0.3s ease;
}

.why-feature:hover i {
  color: #1880AD;
}

.why-feature:hover h5 {
  color: #1880AD;
  transition: color 0.3s ease;
}

.why-feature:hover p {
  color: #6c757d;
}

.sec-7 {
  font-family: 'Exo', sans-serif;
  background-color: #084061;
}

.clients-heading {
  color: #eee;
  font-size: 35px;
  text-align: center;
  font-weight: bold;
}

.clients-line {
  color: #fff;
  font-size: 18px;
  text-align: center;
  padding: 20px 0;
}

.testimonial-card p {
  font-style: italic;
  font-size: 15px;
  color: #fff;
  height: 60px;
}

.testimonial-card {
  background-color: #dbe5ebba;
  max-height: 300px;
}

.testimonial-card h6 {
  color: #fff;
}

.testimonial-card small {
  color: #fff;
}

.blog-section {
  font-family: 'Exo', sans-serif;
}

.blog-left-div h2 {
  color: #084061;
}

.blog-left-div p {
  text-align: justify;
  color: #222;
}

.main-div-blog {
  padding: 20px;
}

.blog-section .card h6 {
  font-size: 0.95rem;
  font-weight: 500;
  color: #212529;
}

.blog-img-div {
  height: 250px;
}

.blog-img-div img {
  width: 100%;
  object-fit: cover;
  height: 250px;
}

.blog-section .card small {
  font-size: 0.8rem;
}

.card.border-0.shadow-sm {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card.border-0.shadow-sm:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.contact-section {
  padding: 0px 0 50px;
  font-family: 'Exo', sans-serif;
  background: linear-gradient(to right, #f8f9fa, #e9ecef);
}

.contact-left {
  background-color: #084061;
  color: #fff;
  border-radius: 15px 0 0 15px;
  padding: 40px;
}

.contact-left h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-left p,
.contact-left li {
  color: #f8f9fa;
  font-size: 16px;
}

.contact-icon {
  font-size: 20px;
}

.contact-form-card {
  background: #fff;
  border: none;
  border-radius: 0 15px 15px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.form-control::placeholder {
  color: #adb5bd;
}

.social-icons a {
  font-size: 18px;
  color: #fff;
  margin-right: 12px;
  transition: 0.3s;
}

.send-btn {
  width: 100%;
  background-color: #084061;
  color: #fff;
  padding: 10px 0;
  border-radius: 5px;
  border: 1px solid #084061;
  transition: background-color 0.8s ease;
}

.send-btn:hover {
  background-color: transparent;
  border: 1px solid #084061;
  color: #084061;
} */

/* footer  */
/* .footer {
  background-image: url(https://img.freepik.com/free-photo/observation-urban-building-business-steel_1127-2397.jpg?uid=R204747510&ga=GA1.1.2036541699.1746623115&semt=ais_hybrid&w=740);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-family: 'Exo', sans-serif;
}

.overlay-footer {
  padding: 50px 0 0;
  background-color: #081f3bb0;
}

.footer-line {
  color: #fff;
  padding: 20px 0 0;
  font-size: 18px;
  max-width: 400px;
}

.quick {
  color: #fff;
  font-size: 25px;
}

.quick-list {
  list-style: none;
  padding: 0;
}

.quick-list a {
  text-decoration: none;
  font-size: 18px;
  color: #fff;
}

.quick-list li {
  padding: 10px 0 0;
  font-size: 18px;
  color: #fff;
}

.footer-icon {
  font-size: 25px;
  background-color: #084061;
  color: #fff;
  padding: 8px 10px;
  border-radius: 50%;
}

.footer-bottom {
  width: 100%;
  background-color: #084061;
  padding: 15px 0;
  text-align: center;
  color: #fff;
} */

/* footer */
#sequence {
    width: 100%;
    float: left;
    background: var(--ancient-color);
    position: fixed;
    bottom: 0px;
    z-index: 100;
    padding: 0;
    color: var(--white-color) !important;
    margin: 0 !important;
}
#sequence a {
    width: 33.3333%;
    float: left;
    text-align: center;
    padding: 12px 0;
    font-size: 15px;
    color: #fff;
    border: 1px solid #fff;
    background-color: #084061;
    font-weight: 600;
    text-decoration: none !important;
    border-right: 1px solid;
}
/* responsive */
@media (max-width: 767px) {

  /* header  */
  .header-con {
    width: 100%;
  }

  .logo {
    height: 80px;
    width: auto;
  }

  /* section1 */
  .con-1 {
    width: 100%;
    padding: 0 15px;
  }

  .overlay-div {
    width: 100%;
    background-color: #f3f3f311;
    height: 500px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .drive-us {
    padding: 0px;
  }

  /* section2 */

  .third-party-section h2 {
    font-size: 30px;
    padding: 0px 0 10px 0;
  }

  .third-party-section p {
    font-size: 15px;
  }

  .third-party-section h6 {
    font-size: 20px;
  }

  .third-party-section li,
  .third-party-section .industry-item {
    font-size: 16px;
  }

  .industry-list .industry-item {
    padding-left: 10px;
  }

  /* products-section */
  .product-heading {
    font-size: 30px;
    padding: 0 0 15px 0;
  }

  /* section commitment */

  .commitment {
    font-size: 30px;
    padding: 15px 0 25px;
  }

  .commitment-cards h5 {
    font-size: 20px;
  }

  .commitment-cards p {
    font-size: 15px;
  }

  /* section6  */
  .why-choose-title {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .why-choose-description {
    font-size: 16px;
    margin-bottom: 0px !important;
  }

  .why-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  /* section7 */
  .clients-heading {
    font-size: 30px;
  }
  .clients-line {
    font-size: 16px;
    padding: 10px 0;
  }

  /* section8 */
  .our-team {
    font-size: 30px;
  }
  .team-line {
    font-size: 16px;
    padding: 10px 0;
  }

  .team-card {
    padding: 10px 0 20px 0;
  }

  .team-card h5 {
    font-size: 20px;
  }

  .team-card p {
    padding: 10px 0;
    font-size: 15px;
  }

  /* blogssection */
  .blog-1-img {
    margin-top: 20px;
  }

  .blog-img-div {
    height: 220px;
  }

  .blog-img-div img {
    height: 220px;
  }

  .main-div-blog {
    padding: 0px;
    background-color: transparent !important;
  }
  /* section9 */
  /* footer  */
  .quick {
    font-size: 20px;
  }

  .quick-list a {
    font-size: 16px;
  }

  .quick-list li {
    font-size: 16px;
    padding: 5px 0;
  }


  /* section7 */
  .contact-left {
    padding: 30px;
  }

  .contact-form-card {
    padding: 20px;
    margin-top: 20px;
  }
}
/*------------------------------- tablets---------------------------- */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* section1 */
  .con-1 {
    width: 95%;
    margin: auto;
  }
  .overlay-div {
    padding: 150px 0;
  }

  .hero h1 {
    font-size: 40px;
  }

  /* section3 */
  .commitment-cards {
    padding: 15px;
    height: 280px;
  }

  .commitment-cards p {
    font-size: 15px;
  }

  .commitment {
    font-size: 30px;
    padding: 0px 0 20px;
  }

  /* section4 */
  .about-div {
    padding: 26px 0px 0 0px;
  }

  /* number  */
  .numbers-section {
    padding: 50px 0px;
  }

  .numbers-subheading {
    margin-bottom: 60px;
  }

  .data-lines {
    gap: 60px;
  }

  .inspiration {
    margin-top: 50px;
  }

  /* commitment  */
  .our-commitment {
    padding: 0 !important;
  }

  /* blog */
  .blog-1-img {
    margin-top: 30px;
  }

  .main-div-blog {
    padding: 0;
  }

  .card-body {
    padding: 10px 0 0;
  }
}

/*----------------- ---------------------------------about  */
section.breadcrumb {
  text-align: center;
  background-image: url(images/about-banner.jpg) !important;
  height: 320px !important;
  background-size: cover;
  padding: 100px 0;
}

h1.main-heading.text-white.mb-4 {
  font-size: 50px;
}

li.breadcrumb-item a {
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-item.active {
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
  float: left;
  padding-right: .5rem;
  color: #fff;
  content: var(--bs-breadcrumb-divider, ">");
}

@media (max-width: 767px) {
  section.breadcrumb {
    background-position: bottom;
  }

  section.breadcrumb {
    text-align: center;
    background-image: url(images/about-banner.jpg) !important;
    height: 200px !important;
    background-size: cover;
    padding: 50px 0;
  }
}


/* ----------------------about  */

.about-lv-section {
  background: #f9fbff;
  font-family: 'Exo', sans-serif;

}

.about-head {
  font-size: 2.5rem;
  font-weight: 700;
  color: #084061;
  text-align: left;
}

.about-lv-section p.lead {
  font-size: 1.15rem;
  color: #444;
  line-height: 1.7;
}

.check {
  color: #084061;

}

.about-lv-section p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  text-align: justify;
}

.lv-highlights li {
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.about-img-wrapper img {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img-wrapper img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.content-area {
  overflow-x: unset !important;
}

/* section1 */

.who-we-are-section {
  background-color: #f9f9fb;
  font-family: 'Exo', sans-serif;

}

.section-title2 h2 {
  font-size: 2.5rem;
  border-left: 5px solid #5ca1eb;
  padding-left: 15px;
  color: #084061;
  margin-bottom: 20px;
}

.who-img {
  width: 100%;
  margin-top: 20px;
}

.story-block {
  margin-bottom: 30px;
  padding: 10px 0 0px;
}

.story-block h4 {
  font-weight: 600;
  color: #084061;
  margin-bottom: 0.5rem;
}

.story-block p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  text-align: justify;
}

.highlight-box {
  text-align: center;
  border-left: 5px solid #fff;
  border: 1px solid #084061;
  padding: 20px;
  font-style: italic;
  transition: all 0.3s ease;
}

.highlight-box:hover {
  background-color: #084061;
  color: #fff;
  transform: translateY(-3px);
}

/* ----------------section2 */
.mission-vision-section {
  background-color: #3d566c1f;
  padding: 80px 0;
  font-family: 'Exo', sans-serif;

}

.section-heading {
  font-size: 2.5rem;
  font-weight: 600;
  color: #084061;
  text-align: center;
  margin-bottom: 50px;
}

.mission-box,
.vision-box {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  transition: all 0.4s ease-in-out;
  height: 100%;
  border-left: 4px solid #084061;
  position: relative;
  text-align: justify;
}

.mission-box:hover,
.vision-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #084061;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  box-shadow: 0 5px 10px rgba(13, 110, 253, 0.2);
}

/* section3 */
.purpose-section {
  background: url('images/purpose-bg.jpg');
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  position: relative;
  color: white;
  font-family: 'Exo', sans-serif;

}

.purpose-section .purpose-overlay {
  padding: 100px 0;
  text-align: justify;
  width: 100%;
  background: rgba(0, 20, 50, 0.6);
  z-index: 0;
}

.purpose-section .z-1 {
  position: relative;
  z-index: 1;
}

.purpose-section h2 {
  font-size: 2.8rem;
  font-weight: 700;
}

.purpose-section p {
  font-size: 1.2rem;
  line-height: 1.9;
  color: #e6e6e6;
}

/* contact  */
.social-icons.mt-4 {
  display: flex;
}

@media (max-width: 767px) {
  .about-head {
    font-size: 2rem;
  }

  .about-lv-section p {
    font-size: 1rem;
    line-height: 24px;
  }

  .section-title2 h2 {
    font-size: 2rem;
    border-left: 3px solid #5ca1eb;
    padding-left: 12px;
    margin-bottom: 15px;
  }

  .who-img {
    margin-top: 0;
  }

  .story-block {
    margin-bottom: 0px;
    padding: 0px 0 0px;
  }

  .highlight-box {
    text-align: center;
    padding: 10px;
  }

  .mission-vision-section {
    padding: 50px 0;
  }

  .section-heading {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .mission-box,
  .vision-box {
    padding: 20px 15px;
  }

  .purpose-section .purpose-overlay {
    padding: 50px 0;
    text-align: left;

  }

  .purpose-section {
    background-position: right;
  }

  .purpose-section p {
    font-size: 1rem;
    line-height: 24px;
    color: #e6e6e6;
  }

  .purpose-section h2 {
    font-size: 2rem;
    margin-bottom: 10px !important;
  }
}

/* blogpage */
.blog-filter-section input.form-control {
  border-radius: 25px;
  padding-left: 20px;
}

.btn-group button {
  padding: 6px 18px;
  border: 1px solid #084061;
  color: #084061;
  transition: background-color 0.8s ease;

}

.btn-group button:hover {
  border: 1px solid #084061;
  color: #fff;
  background-color: #084061;
}

.all-btn {
  border-radius: 25px 0 0px 25px;
  background-color: #084061;
  color: #fff !important;
}


.blog-card img {
  height: 220px;
  object-fit: cover;
  border-top-left-radius: .5rem;
  border-top-right-radius: .5rem;
}

.blog-card .card-title {
  font-size: 1.1rem;
  min-height: 50px;
  margin: 20px 0 0;
}

.badge-blog {
  background-color: #084061;
  color: #fff;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
}

.all-blog-btn {
  text-decoration: none;
  border: 1px solid #084061;
  padding: 5px 10px;
  color: #084061;
  transition: background-color 0.8s ease;

}

.all-blog-btn:hover {
  border: 1px solid #084061;
  color: #fff;
  background-color: #084061;
}

.card-text {
  height: 80px;
}

@media (max-width: 767px) {

  /* blogs page  */

  .btn-group button {
    padding: 6px 16px;
    border: 1px solid #084061;
    color: #084061;
    transition: background-color 0.8s ease;
  }

  .card-text {
    height: 90px;
  }
}

/* contact page */
.faq-help {
  background-color: #f9f9f9;
}

.contact-section-title {
  text-align: center;
}

.contact-section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #084061;
}

.contact-section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: #333;
}

.faq-box {
  background: #bdd1f6d4;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.faq-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.faq-box .icon {
  font-size: 30px;
  color: #084061;
  margin-bottom: 15px;
}

.faq-box h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #084061;
}

.faq-box p {
  color: #333;
  font-size: 0.95rem;
  height: 20px;
}

/* carrer  */

/* career */
.culture-section {
  background-color: #f5f9fc;
  font-family: 'Exo', sans-serif;

}

.career-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #084061;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #555;
}

.culture-box {
  background: #bdd1f6d4;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.culture-box:hover {
  transform: translateY(-5px);
  background-color: #fff;
  border: 1px solid #084061;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}


.culture-box .icon {
  font-size: 40px;
  color: #084061;
  margin-bottom: 15px;
}

.culture-box h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #084061;
}

.culture-box p {
  font-size: 0.95rem;
  color: #333;
}

/* section2 */
.life-at-lv {
  font-family: 'Exo', sans-serif;

  background-color: #fdfdfd;
}

.carrer-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #084061;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #333;
}

.life-box {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.life-box:hover {
  transform: translateY(-5px);
}

.life-box img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.life-text {
  padding: 20px 0 0;
}

.life-text h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #084061;
}

.life-text p {
  font-size: 0.95rem;
  color: #666;
}

.testimonial {
  background: #eef5fa;
  border-left: 5px solid #084061;
  border-radius: 10px;
}

.testimonial blockquote {
  font-style: italic;
  font-size: 1.1rem;
  margin: 0 0 10px 0;
  color: #333;
}

.testimonial cite {
  font-size: 0.95rem;
  color: #333;
}

/* section3 */

.perks-benefits-timeline-alt {
  background: #f7fbfe;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b2c3a;
}

.section-subtitle {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.timeline-alt {
  position: relative;
  padding: 20px 0;
}

.timeline-alt::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: #084061;
  transform: translateX(-50%);
}

.timeline-row {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 30px;
  position: relative;
  width: 100%;
}

.timeline-row.right {
  justify-content: flex-end;
}

.timeline-row::before {
  content: "";
  position: absolute;
  top: 20px;
  width: 20px;
  height: 20px;
  background: #084061;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px #007bff44;
  z-index: 2;
}

.timeline-row.left::before {
  left: 50%;
  transform: translateX(-50%);
}

.timeline-row.right::before {
  right: 50%;
  transform: translateX(50%);
}

.content-box {
  background: #fff;
  padding: 0px 0px;
  border-radius: 10px;
  width: 45%;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
  z-index: 1;
  transition: transform 0.3s;
}

.content-box:hover {
  transform: translateY(-5px);
}

.content-box h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0b2c3a;
  margin-bottom: 10px;
}

.content-box p {
  font-size: 1rem;
  color: #444;
}

@media (max-width: 767px) {
  .career-section-title {
    font-size: 2rem;
  }

  .carrer-section-title {
    font-size: 2rem;
  }

  .timeline-row::before {
    display: none;
  }

  .timeline-alt::before {
    display: none;
  }

  .timeline-row.right {
    justify-content: flex-end;
  }

  .content-box {
    width: 100%;
  }

  .timeline-row {
    margin-bottom: 10px;
    width: 100%;
  }

  .timeline-alt {
    padding: 0px 0;
  }
}

/* contact page */
input.wpcf7-form-control.wpcf7-text {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

textarea.wpcf7-form-control.wpcf7-textarea {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  height: 100px;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
  width: 100%;
  background-color: #084061;
  color: #fff;
  padding: 10px 0;
  border-radius: 5px;
  border: 1px solid #084061;
  transition: background-color 0.8s ease;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
  background-color: transparent;
  border: 1px solid #084061;
  color: #084061;
}



/* third party page */
/* section2 */
.manufacturing-process {
  background: #084061;
  font-family: 'Exo', sans-serif;

}

.section-title-third h2 {
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
}

.section-title-third p {
  color: #fff;
  max-width: 600px;
  margin: 0 auto;
}

.process-flow {
  row-gap: 30px;
}

.process-step {
  position: relative;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.process-icon {
  width: 60px;
  height: 60px;
  background-color: transparent;
  color: #084061;
  border: 1px solid #084061;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 60px;
  border-radius: 50%;
  margin: 0 auto 15px;
}

.process-step {
  background-color: #bdd1f6d4;
  border-radius: 10px;
}

.process-step h5 {
  font-weight: 600;
  color: #084061;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
}


/* director message */
/* section1 */
.director-message {
  background: #f8fcff;
  font-family: 'Exo', sans-serif;
}

.msg-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #084061;
  margin-bottom: 20px;
}

.message-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
}

.director-signature {
  font-size: 1rem;
  color: #084061;
  font-weight: 600;
  line-height: 1.4;
}

.director-photo img {
  border-radius: 10px;
  max-width: 100%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* section2 */
.visionary-goals {
  background: #94a0a52b;
  font-family: 'Exo', sans-serif;

}

.goals-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #084061;
}

.section-subtitle {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.goal-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.goal-box:hover {
  transform: translateY(-5px);
  background: #e6f2ff;
}

.goal-icon {
  font-size: 2rem;
  color: #084061;
  margin-bottom: 15px;
}

.goal-box h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #084061;
  margin-bottom: 10px;
}

.goal-box p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

/* mission-page */
.mission-section {
  background: #f9fcff;
  font-family: 'Exo', sans-serif;
}

.mission-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #084061;
  margin-bottom: 20px;
}

.mission-section p {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
}

.mission-section img {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.vision-section {
  background: #ffffff;
}

.vision-section p {
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
}

.vision-section img {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}


/* R & D page */
.rnd-hero-section {
  background: linear-gradient(135deg, #f1f9fb, #ffffff);
  display: flex;
  align-items: center;
}

.RD-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #084061;
  margin-bottom: 25px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
  margin-bottom: 15px;
}

.rnd-hero-section .btn-primary {
  background-color: #084061;
  border-color: #084061;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 30px;
  font-size: 1rem;
  transition: 0.3s ease;
}

.rnd-hero-section .btn-primary:hover {
  background-color: #fff;
  border-color: #084061;
  color: #084061;
}

/* section2 */
.core-research-section {
  background-color: #f8fbfd;
  font-family: 'Exo', sans-serif;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #083f4d;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: #333;
  font-size: 1.1rem;
  line-height: 1.7;
}

.research-card {
  background: #bdd1f6d4;
  border: 1px solid #bdd1f6d4;

  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.research-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #084061;
  background-color: transparent;
}

.icon-wrap {
  font-size: 2.5rem;
  color: #084061;
  margin-bottom: 20px;
}

.research-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #083f4d;
  margin-bottom: 10px;
}

.research-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 767px) {

  .RD-hero-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .section-subtitle {
    font-size: 1rem;
    line-height: 1.6;
  }

  .research-card {
    padding: 15px;
  }
}

/* products-table */
.tableizer-firstrow {
  background-color: #084061;
  color: #fff;

}

table.tableizer-table {
  border: 1px solid #ddd;
}

.tableizer-firstrow th {
  padding: 10px;
}

tbody tr:nth-child(even) {
  background-color: #D5E1E7;

}

tbody tr {

  border-top: 1px solid #ddd;
}

tbody tr:hover {
  background-color: #c3d9e4db;

}

tbody tr td {
  padding: 20px;
}

/* modal-form */
.modal-body .form-label {
  float: left;
}


