* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Manrope', sans-serif;
}

body {
    background: #fff;
    font-family: 'Manrope', sans-serif;

}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}
h1,h2,h3{
    font-family: Rubik;
    font-weight: 400 !important;
}
.header {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 0;
    transition: .4s;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);

}

.header .container {

    display: flex;
    align-items: center;
    justify-content: space-between;

}

.logo img {

    height: 65px;

}

nav ul {

    display: flex;
    list-style: none;
    gap: 40px;

}

nav ul li a {

    text-decoration: none;
    color: #123c85;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;

}

nav ul li a:hover {

    color: #c2171d;

}

.quote-btn {

    background: #c2171d;
    color: #fff;
    padding: 14px 34px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;

}

.quote-btn:hover {

    background: #123c85;

}

@media(max-width:991px) {

    /*nav {*/

    /*    display: none;*/

    /*}*/

    .quote-btn {

        padding: 12px 22px;

    }

    .logo img {

        height: 55px;

    }

}


.hero {

    padding: 170px 0 100px;
    position: relative;
    overflow: hidden;
    background: #f7f9fc;

}

.hero .container {

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;

}

.hero-content {

    width: 50%;
    z-index: 2;

}

.hero-tag {

    display: inline-block;
    background: #123c85;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 25px;

}

.hero h1 {

    font-size: 58px;
    font-weight: 700;
    line-height: 1.2;
    color: #123c85;
    margin-bottom: 25px;

}

.hero h1 span {

    color: #c2171d;

}

.hero p {

    font-size: 18px;
    line-height: 32px;
    color: #666;
    margin-bottom: 35px;

}

.hero-btn {

    display: flex;
    gap: 20px;
    margin-bottom: 50px;

}

.btn-red {

    padding: 16px 35px;
    background: #c2171d;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .4s;

}

.btn-red:hover {

    background: #123c85;

}

.btn-blue {

    padding: 16px 35px;
    background: #123c85;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .4s;

}

.btn-blue:hover {

    background: #c2171d;

}

.hero-counter {

    display: flex;
    gap: 25px;

}

.counter-box {

    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    min-width: 170px;

}

.counter-box h2 {

    font-size: 38px;
    color: #c2171d;
    margin-bottom: 10px;

}

.counter-box span {

    color: #666;
    font-size: 15px;

}

.hero-image {

    width: 50%;
    text-align: right;
    position: relative;

}

.hero-image img {

    width: 100%;
    max-width: 600px;
    animation: float 5s ease-in-out infinite;
    border-radius: 20px
}

.hero-shape {

    position: absolute;
    right: -150px;
    top: -150px;
    width: 600px;
    height: 600px;
    background: #c2171d;
    border-radius: 50%;
    opacity: .08;

}

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }

}

@media(max-width:991px) {

    .hero {

        padding-top: 130px;

    }

    .hero .container {

        flex-direction: column;

    }

    .hero-content,
    .hero-image {

        width: 100%;
        text-align: center;

    }

    .hero h1 {

        font-size: 40px;

    }

    .hero-btn {

        justify-content: center;
        flex-wrap: wrap;

    }

    .hero-counter {

        justify-content: center;
        flex-wrap: wrap;

    }

}

.about {

    padding: 100px 0;
    background: #fff;

}

.abouts-mains {

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;

}

.about-images {

    /* width: 100%; */
    position: relative;

}

.image-box {

    overflow: hidden;
    border-radius: 20px;
    border: 8px solid #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);

}

.image-box img {

    width: 100%;
    display: block;

}

.experience-boxs {

    position: absolute;
    right: -30px;
    bottom: -40px;

    background: #c2171d;

    color: #fff;

    padding: 30px;

    border-radius: 20px;

    text-align: center;

    box-shadow: 0 15px 35px rgba(194, 23, 29, .3);

}

.experience-boxs h2 {

    font-size: 48px;

    margin-bottom: 5px;

}

.about-content {

    width: 55%;

}

.section-tag {

    display: inline-block;

    background: #123c85;

    color: #fff;

    padding: 8px 22px;

    border-radius: 30px;

    font-size: 14px;

    margin-bottom: 20px;

    letter-spacing: 1px;

}

.about-content h2 {

    font-size: 44px;

    color: #123c85;

    line-height: 1.3;

    margin-bottom: 25px;

}

.about-content h2 span {

    color: #c2171d;

}

.about-content p {

    font-size: 17px;

    line-height: 30px;

    color: #666;

    margin-bottom: 20px;

}

.about-featuress {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    margin: 40px 0 0;
    padding-top: 50px;
}

.feature {

    display: flex;

    gap: 15px;

    align-items: flex-start;

}

.icon {

    width: 45px;

    height: 45px;

    background: #123c85;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    font-weight: bold;

    font-size: 18px;

    flex-shrink: 0;

}

.feature h4 {

    color: #123c85;

    margin-bottom: 5px;

}

.feature p {

    margin: 0;

    font-size: 15px;

    line-height: 24px;

}

.about-btn {

    display: inline-block;

    padding: 16px 35px;

    background: #c2171d;

    color: #fff;

    text-decoration: none;

    border-radius: 50px;

    font-weight: 600;

    transition: .3s;

}

.about-btn:hover {

    background: #123c85;

}

@media(max-width:991px){

.about .container{

flex-direction:column;

}

.about-images,
.about-content{

width:100%;

}

.about-featuress{

grid-template-columns:1fr;

}

.experience-box{

right:20px;

bottom:20px;

}

.about-content h2{

font-size:34px;

}

}

.products{

padding:100px 0;
background:#f7f9fc;

}

.section-title{

text-align:center;
margin-bottom:60px;

}

.section-title span{

display:inline-block;
padding:8px 22px;
background:#123c85;
color:#fff;
border-radius:30px;
font-size:14px;
margin-bottom:15px;

}

.section-title h2{

font-size:46px;
color:#123c85;
margin-bottom:15px;

}

.section-title h2 span{

color:#c2171d;

}

.section-title p{

max-width:700px;
margin:auto;
color:#666;
line-height:30px;

}

.product-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;

}

.product-card{

background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;

}

.product-card:hover{

transform:translateY(-12px);

}

.product-image{

/* height:260px; */
overflow:hidden;

}

.product-image img{

width:100%;
height:100%;
object-fit:cover;
transition:.5s;

}

.product-card:hover img{

transform:scale(1.01);

}

.product-content{

padding:30px;

}

.product-content h3{

font-size:24px;
color:#123c85;
margin-bottom:15px;

}

.product-content p{

color:#666;
line-height:28px;
margin-bottom:25px;

}

.product-content a{

display:inline-block;
padding:12px 28px;
background:#c2171d;
color:#fff;
text-decoration:none;
border-radius:30px;
transition:.3s;

}

.product-content a:hover{

background:#123c85;

}
@media(max-width:991px){

.product-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:767px){

.product-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:34px;

}

}

.why-us{

padding:100px 0;
background:#123c85;
position:relative;
overflow:hidden;

}

.why-us .section-title{

text-align:center;
margin-bottom:60px;

}

.why-us .section-title span{

display:inline-block;
padding:8px 24px;
background:#fff;
color:#123c85;
border-radius:40px;
font-size:14px;
margin-bottom:20px;
font-weight:600;

}

.why-us .section-title h2{

font-size:46px;
color:#fff;
margin-bottom:15px;

}

.why-us .section-title h2 span{

color:#ff4040;

}

.why-us .section-title p{

color:#d9e3f5;
max-width:700px;
margin:auto;
line-height:30px;

}

.why-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

.why-card{

background:#fff;
padding:40px 30px;
border-radius:18px;
text-align:center;
transition:.4s;
position:relative;
overflow:hidden;

}

.why-card:hover{

transform:translateY(-10px);

}

.why-card::before{

content:"";
position:absolute;
left:0;
top:0;
height:5px;
width:100%;
background:#c2171d;
transform:scaleX(0);
transition:.4s;

}

.why-card:hover::before{

transform:scaleX(1);

}

.icon{

width:80px;
height:80px;
margin:auto;
border-radius:50%;
background:#123c85;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:25px;

}

.icon i{

font-size:34px;
color:#fff;

}

.why-card h3{

font-size:24px;
color:#123c85;
margin-bottom:15px;

}

.why-card p{

color:#666;
line-height:28px;

}

@media(max-width:991px){

.why-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.why-grid{

grid-template-columns:1fr;

}

.why-us .section-title h2{

font-size:34px;

}

}

.process{

padding:100px 0;
background:#f7f9fc;

}

.process-row{

display:flex;
justify-content:center;
align-items:center;
flex-wrap:wrap;
gap:25px 15px;
margin-top:60px;

}

.process-box{

width:250px;
background:#fff;
padding:30px 20px;
border-radius:20px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.4s;
position:relative;

}

.process-box:hover{

transform:translateY(-10px);

}

.process-icon{

width:80px;
height:80px;
margin:auto;
margin-bottom:20px;
background:#123c85;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;

}

.process-box:hover .process-icon{

background:#c2171d;

}

.process-icon i{

font-size:34px;
color:#fff;

}

.process-box h4{

font-size:22px;
margin-bottom:12px;
color:#123c85;

}

.process-box p{

font-size:15px;
line-height:26px;
color:#666;

}

.arrow{

font-size:28px;
color:#c2171d;

}

@media(max-width:991px){

.arrow{

display:none;

}

.process-row{

gap:30px;

}

.process-box{

width:280px;

}

}

.industries{

padding:100px 0;
background:#fff;

}

.industry-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:60px;

}

.industry-card{

position:relative;
overflow:hidden;
border-radius:20px;
height:320px;
box-shadow:0 15px 40px rgba(0,0,0,.1);

}

.industry-card img{

width:100%;
height:100%;
object-fit:cover;
transition:.5s;

}

.industry-card:hover img{

transform:scale(1.1);

}

.overlay{

position:absolute;
left:0;
top:0;
width:100%;
height:100%;

background:linear-gradient(to top,
rgba(18,60,133,.95),
rgba(18,60,133,.3));

display:flex;
flex-direction:column;
justify-content:flex-end;

padding:30px;
transition:.4s;

}

.overlay i{

width:70px;
height:70px;
background:#c2171d;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
color:#fff;
margin-bottom:20px;

}

.overlay h3{

font-size:28px;
color:#fff;
margin-bottom:12px;

}

.overlay p{

color:#f1f1f1;
line-height:28px;

}

.industry-card:hover .overlay{

background:linear-gradient(to top,
rgba(194,23,29,.95),
rgba(194,23,29,.35));

}

@media(max-width:991px){

.industry-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.industry-grid{

grid-template-columns:1fr;

}

}

.projects{

padding:100px 0;
background:#f7f9fc;

}

.project-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
grid-auto-rows:300px;
gap:25px;
margin-top:60px;

}

.project-card{

position:relative;
overflow:hidden;
border-radius:20px;

}

.project-card.large{

grid-column:span 2;

}

.project-card img{

width:100%;
height:100%;
object-fit:cover;
transition:.6s;

}

.project-overlay{

position:absolute;
left:0;
bottom:0;
width:100%;
padding:35px;
background:linear-gradient(to top,
rgba(18,60,133,.95),
rgba(18,60,133,.15));

transition:.4s;

}

.project-overlay span{

display:inline-block;
padding:8px 18px;
background:#c2171d;
color:#fff;
border-radius:30px;
font-size:13px;
margin-bottom:15px;

}

.project-overlay h3{

font-size:28px;
color:#fff;
margin-bottom:18px;

}

.project-overlay a{

color:#fff;
text-decoration:none;
font-weight:600;

}

.project-card:hover img{

transform:scale(1.1);

}

.project-card:hover .project-overlay{

background:linear-gradient(to top,
rgba(194,23,29,.95),
rgba(194,23,29,.25));

}

@media(max-width:991px){

.project-grid{

grid-template-columns:repeat(2,1fr);

}

.project-card.large{

grid-column:span 1;

}

}

@media(max-width:768px){

.project-grid{

grid-template-columns:1fr;

}

}

.footer{

background:#0d2c63;
color:#fff;

}

.footer-top{

background:#c2171d;
padding:50px 0;

}

.footer-top-wrap{

display:flex;
justify-content:space-between;
align-items:center;
gap:40px;

}

.small-title{

display:inline-block;
margin-bottom:10px;
font-size:14px;
letter-spacing:2px;
font-weight:600;

}

.footer-top h2{

font-size:42px;
margin-bottom:15px;

}

.footer-top p{

max-width:650px;
line-height:30px;

}

.footer-btn{

display:inline-block;
padding:18px 40px;
background:#fff;
color:#123c85;
font-weight:600;
text-decoration:none;
border-radius:50px;
transition:.3s;

}

.footer-btn:hover{

background:#123c85;
color:#fff;

}

.footer-main{

padding:80px 0;

}

.footer-grid{

display:grid;
grid-template-columns:2fr 1fr 1fr 1.4fr;
gap:50px;

}

.footer-logo{

margin-bottom: 25px;
    filter: brightness(57.5);
    width: 150px;
    object-fit: cover;

}

.footer-column p{

line-height:30px;
color:#ddd;

}

.footer-column h3{

margin-bottom:25px;
font-size:24px;
position:relative;

}

.footer-column h3::after{

content:"";
position:absolute;
left:0;
bottom:-10px;
width:60px;
height:3px;
background:#c2171d;

}

.footer-column ul{

list-style:none;

}

.footer-column ul li{

margin-bottom:16px;

}

.footer-column ul li a{

text-decoration:none;
color:#ddd;
transition:.3s;

}

.footer-column ul li a:hover{

color:#fff;
padding-left:8px;

}

.contact-list li{

display:flex;
gap:15px;
line-height:28px;
color:#ddd;

}

.contact-list i{

color:#c2171d;
margin-top:6px;
font-size:18px;

}

.social-icons{

display:flex;
gap:12px;
margin-top:30px;

}

.social-icons a{

width:45px;
height:45px;
background:#123c85;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
text-decoration:none;
transition:.3s;

}

.social-icons a:hover{

background:#c2171d;
transform:translateY(-5px);

}

.footer-bottom{

border-top:1px solid rgba(255,255,255,.1);
padding:25px 0;

}

.copyright{

display:flex;
justify-content:space-between;
align-items:center;
color:#ccc;

}

.copyright a{

color:#fff;
text-decoration:none;

}

.copyright a:hover{

color:#c2171d;

}

@media(max-width:991px){

.footer-top-wrap{

flex-direction:column;
text-align:center;

}

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

.copyright{

flex-direction:column;
gap:15px;
text-align:center;

}

}

@media(max-width:768px){

.footer-grid{

grid-template-columns:1fr;

}

.footer-top h2{

font-size:30px;

}

.footer-btn{

width:100%;
text-align:center;

}

}

.about-banner{

position:relative;
height:500px;
background:url(images/about-banner.jpg) center center/cover no-repeat;
display:flex;
align-items:center;
overflow:hidden;

}

.about-banner .overlay{

position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(90deg,
rgba(18,60,133,.92),
rgba(194,23,29,.75));

}

.about-banner .container{

position:relative;
z-index:2;

}

.banner-content{

max-width:700px;
color:#fff;

}

.banner-content span{

display:inline-block;
padding:10px 22px;
background:#fff;
color:#123c85;
font-size:14px;
font-weight:600;
border-radius:40px;
letter-spacing:1px;
margin-bottom:25px;

}

.banner-content h1{

font-size:62px;
line-height:1.2;
margin-bottom:20px;
font-weight:700;

}

.banner-content p{

font-size:20px;
line-height:34px;
margin-bottom:35px;
color:#f5f5f5;

}

.breadcrumb{

display:flex;
align-items:center;
gap:12px;
font-size:16px;

}

.breadcrumb a{

color:#fff;
text-decoration:none;

}

.breadcrumb a:hover{

color:#ffd700;

}

.breadcrumb i{

font-size:14px;

}

.breadcrumb strong{

color:#ffd700;
font-weight:600;

}

@media(max-width:991px){

.about-banner{

height:400px;

}

.banner-content h1{

font-size:42px;

}

.banner-content p{

font-size:18px;

}

}

@media(max-width:767px){

.about-banner{

height:350px;

}

.banner-content h1{

font-size:32px;

}

.banner-content p{

font-size:16px;
line-height:28px;

}

.banner-content span{

font-size:12px;

}

}

.about-company{

padding:100px 0;
background:#fff;

}

.abouts-grids{

display:flex;
align-items:center;
justify-content:space-between;
gap:80px;
display: grid;
grid-template-columns: repeat(2,1fr);

}

.about-image{

width:100%;
position:relative;

}

.main-image{

overflow:hidden;
border-radius:20px;

box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.main-image img{

width:100%;
display:block;

}

.experience-box{

position:absolute;
right:-30px;
bottom:-40px;

background:#c2171d;

color:#fff;

padding:30px;

border-radius:20px;

text-align:center;

box-shadow:0 15px 35px rgba(194,23,29,.3);

}

.experience-box h2{

font-size:52px;

margin-bottom:5px;

}

.experience-box p{

font-size:16px;

}

.about-contents{

width:100%;

}

.section-subtitle{

display:inline-block;

padding:10px 24px;

background:#123c85;

color:#fff;

border-radius:40px;

font-size:14px;

margin-bottom:20px;

letter-spacing:1px;

}

.about-contents h2{

font-size:46px;

color:#123c85;

line-height:1.3;

margin-bottom:25px;

}

.about-contents p{

font-size:17px;

line-height:30px;

color:#666;

margin-bottom:20px;

}

.about-features{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

margin:40px 0;

}

.feature-box{

display:flex;

gap:15px;

}

.feature-box i{

font-size:24px;

color:#c2171d;

margin-top:5px;

}

.feature-box h4{

font-size:20px;

color:#123c85;

margin-bottom:8px;

}

.feature-box p{

font-size:15px;

margin:0;

line-height:24px;

}

.about-btn{

display:inline-block;

padding:16px 36px;

background:#c2171d;

color:#fff;

text-decoration:none;

border-radius:50px;

font-weight:600;

transition:.3s;

}

.about-btn:hover{

background:#123c85;

}


@media(max-width:991px){

.about-company .container{

flex-direction:column;

}

.about-image,
.about-content{

width:100%;

}

.about-features{

grid-template-columns:1fr;

}

.experience-box{

right:20px;

bottom:20px;

}

.about-content h2{

font-size:34px;

}

}


.mission-vision{

padding:100px 0;
background:#f7f9fc;

}

.mv-grid{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:40px;
margin-top:60px;

}

.mv-card{

background:#fff;
padding:50px 40px;
border-radius:25px;
box-shadow:0 20px 40px rgba(0,0,0,.08);
transition:.4s;
position:relative;
overflow:hidden;

}

.mv-card:hover{

transform:translateY(-12px);

}

.mv-card::before{

content:"";
position:absolute;
left:0;
top:0;
width:100%;
height:6px;
background:#123c85;

}

.mv-card.active::before{

background:#c2171d;

}

.mv-icon{

width:90px;
height:90px;
background:#123c85;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:30px;

}

.mv-card.active .mv-icon{

background:#c2171d;

}

.mv-icon i{

font-size:38px;
color:#fff;

}

.mv-card h3{

font-size:34px;
color:#123c85;
margin-bottom:20px;

}

.mv-card.active h3{

color:#c2171d;

}

.mv-card p{

font-size:17px;
line-height:30px;
color:#666;
margin-bottom:30px;

}

.mv-card ul{

list-style:none;

}

.mv-card ul li{

margin-bottom:15px;
font-size:16px;
color:#444;

}

.mv-card ul li i{

color:#c2171d;
margin-right:10px;

}

@media(max-width:991px){

.mv-grid{

grid-template-columns:1fr;

}

.mv-card{

padding:40px 30px;

}

.mv-card h3{

font-size:28px;

}

}

.counter-section{

    padding:100px 0;
    background:#123c85;
    position:relative;
    overflow:hidden;

}

.counter-section::before{

    content:"";
    position:absolute;
    top:-150px;
    right:-150px;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.05);
    border-radius:50%;

}

.counter-section::after{

    content:"";
    position:absolute;
    bottom:-180px;
    left:-180px;
    width:400px;
    height:400px;
    background:rgba(255,255,255,.04);
    border-radius:50%;

}

.section-title.light{

    text-align:center;
    margin-bottom:70px;
    position:relative;
    z-index:2;

}

.section-title.light span{

    display:inline-block;
    background:#ffffff;
    color:#123c85;
    padding:8px 22px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;

}

.section-title.light h2{

    font-size:46px;
    color:#fff;
    margin-bottom:20px;

}

.section-title.light h2 span{

    color:#ff5757;

}

.section-title.light p{

    color:#d7e4ff;
    max-width:700px;
    margin:auto;
    line-height:30px;

}

.counter-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    position:relative;
    z-index:2;

}

.counter-card{

    background:rgba(255,255,255,.08);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:20px;
    padding:40px 25px;
    text-align:center;
    transition:.4s;

}

.counter-card:hover{

    transform:translateY(-10px);
    background:#c2171d;

}

.counter-icon{

    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;

}

.counter-icon i{

    font-size:34px;
    color:#123c85;

}

.counter-card h3{

    font-size:52px;
    color:#fff;
    margin-bottom:10px;
    font-weight:700;

}

.counter-card p{

    color:#f3f3f3;
    font-size:18px;

}
@media(max-width:991px){

.counter-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.counter-grid{

grid-template-columns:1fr;

}

.section-title.light h2{

font-size:34px;

}

.counter-card h3{

font-size:42px;

}

}

.core-values{

padding:100px 0;
background:#f8f9fc;

}

.values-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:60px;

}

.value-card{

background:#fff;
padding:40px 30px;
border-radius:20px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.4s;
position:relative;
overflow:hidden;

}

.value-card::before{

content:"";
position:absolute;
left:0;
top:0;
width:100%;
height:5px;
background:#123c85;
transform:scaleX(0);
transition:.4s;

}

.value-card:hover::before{

transform:scaleX(1);

}

.value-card:hover{

transform:translateY(-10px);

}

.value-icon{

width:90px;
height:90px;
margin:auto;
margin-bottom:25px;
background:#123c85;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
transition:.4s;

}

.value-card:hover .value-icon{

background:#c2171d;
transform:rotateY(180deg);

}

.value-icon i{

font-size:38px;
color:#fff;

}

.value-card h3{

font-size:24px;
margin-bottom:15px;
color:#123c85;

}

.value-card p{

line-height:30px;
color:#666;

}

@media(max-width:991px){

.values-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.values-grid{

grid-template-columns:1fr;

}

}

.quality-section{

padding:100px 0;
background:#f8f9fc;

}

.quality-wrapper{

display:flex;
justify-content:space-between;
align-items:center;
gap:70px;
margin-top:60px;

}

.quality-content{

width:50%;

}

.quality-content h3{

font-size:42px;
color:#123c85;
margin-bottom:25px;
line-height:1.3;

}

.quality-content p{

color:#666;
line-height:30px;
margin-bottom:35px;

}

.quality-list{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;

}

.quality-item{

display:flex;
align-items:center;
gap:12px;
font-weight:600;
color:#123c85;

}

.quality-item i{

color:#c2171d;
font-size:20px;

}

.certificate-grid{

width:50%;

display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;

}

.certificate-card{

background:#fff;
padding:40px 25px;
text-align:center;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.4s;
border-top:5px solid transparent;

}

.certificate-card:hover{

transform:translateY(-10px);
border-color:#c2171d;

}

.certificate-card i{

width:90px;
height:90px;
background:#123c85;
color:#fff;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin:auto;
margin-bottom:25px;
font-size:38px;


}

.certificate-card:hover i{

background:#c2171d;

}

.certificate-card h4{

font-size:24px;
color:#123c85;
margin-bottom:12px;

}

.certificate-card p{

color:#666;
line-height:26px;

}

@media(max-width:991px){

.quality-wrapper{

flex-direction:column;

}

.quality-content,
.certificate-grid{

width:100%;

}

}

@media(max-width:768px){

.certificate-grid{

grid-template-columns:1fr;

}

.quality-list{

grid-template-columns:1fr;

}

.quality-content h3{

font-size:32px;

}

}

.faq-banner{

height:420px;
background:url(images/faq-banner.jpg) center/cover;
position:relative;
display:flex;
align-items:center;

}

.faq-banner .overlay{

position:absolute;
inset:0;
background:linear-gradient(90deg,
rgba(18,60,133,.9),
rgba(194,23,29,.75));

}

.faq-banner .container{

position:relative;
z-index:2;

}

.faq-banner h1{

font-size:58px;
color:#fff;
margin:20px 0;

}

.faq-banner p{

max-width:650px;
font-size:18px;
color:#f5f5f5;
line-height:30px;

}

.faq-section{

padding:100px 0;

}

.faq-section .container{

display:flex;
gap:60px;
align-items:flex-start;

}

.faq-left{

width:40%;

}
.faq-left h2{
        font-size: 46px;
    line-height: 1.3;
    margin-bottom: 25px;
}
.faq-left img{

width:100%;
margin-top:40px;
border-radius:20px;
/* box-shadow:0 15px 35px rgba(0,0,0,.1); */

}

.faq-right{

width:60%;

}

.faq-item{

background:#fff;
margin-bottom:20px;
border-radius:15px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
overflow:hidden;

}

.faq-question{

width:100%;
padding:22px 30px;
border:none;
background:#fff;
font-size:18px;
font-weight:600;
display:flex;
justify-content:space-between;
cursor:pointer;
color:#123c85;

}

.faq-answer{

display:none;
padding:25px 30px 25px;
line-height:30px;
color:#666;

}

.faq-item.active .faq-answer{

display:block;

}

.faq-item.active .faq-question{

background:#123c85;
color:#fff;

}

.faq-item.active span{

color:#fff;

}


.contact-banner{

position:relative;
height:450px;
background:url(images/contact-banner.jpg) center center/cover no-repeat;
display:flex;
align-items:center;

}

.banner-overlay{

position:absolute;
left:0;
top:0;
width:100%;
height:100%;
background:linear-gradient(90deg,
rgba(18,60,133,.92),
rgba(194,23,29,.75));

}

.contact-banner .container{

position:relative;
z-index:2;

}

.banner-content{

max-width:700px;
color:#fff;

}

.banner-content span{

display:inline-block;
padding:10px 25px;
background:#fff;
color:#123c85;
border-radius:30px;
font-size:14px;
font-weight:600;
margin-bottom:20px;

}

.banner-content h1{

font-size:58px;
line-height:1.2;
margin-bottom:20px;

}

.banner-content p{

font-size:18px;
line-height:30px;
margin-bottom:30px;
max-width:650px;

}

.breadcrumb{

display:flex;
align-items:center;
gap:12px;

}

.breadcrumb a{

color:#fff;
text-decoration:none;

}

.breadcrumb a:hover{

color:#ffd700;

}

.breadcrumb strong{

color:#ffd700;

}

@media(max-width:768px){

.contact-banner{

height:350px;

}

.banner-content h1{

font-size:34px;

}

.banner-content p{

font-size:16px;
line-height:28px;

}

}



.contact-section{

padding:100px 0;
background:#f8f9fc;

}

.contact-section .container{

display:flex;
gap:60px;

}

.contact-info{

width:40%;

}

.contact-info h2{
    font-size: 46px;
    color: #123c85;
    /* line-height: 1.3; */
    margin-bottom: 25px;
}
.contact-info p{
    font-size: 17px;
    line-height: 30px;
    color: #666;
    margin-bottom: 20px;
}
.contact-form{

width:60%;

background:#fff;

padding:45px;

border-radius:20px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.contact-form h3{

font-size:34px;

color:#123c85;

margin-bottom:30px;

}

.info-box{

display:flex;

gap:20px;

margin-bottom:30px;

padding:25px;

background:#fff;

border-radius:18px;

box-shadow:0 10px 30px rgba(0,0,0,.06);

transition:.4s;

}

.info-box:hover{

transform:translateY(-8px);

}

.icon{

width:65px;

height:65px;

background:#123c85;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

flex-shrink:0;

}

.icon i{

font-size:26px;

color:#fff;

}

.info-box:hover .icon{

background:#c2171d;

}

.info-box h4{

font-size:22px;

margin-bottom:8px;

color:#123c85;

}

.info-box p{

color:#666;

line-height:28px;

}

.form-row{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

margin-bottom:20px;

}

.contact-form input,
.contact-form textarea{

width:100%;

padding:16px 18px;

border:1px solid #ddd;

border-radius:12px;

font-size:16px;

outline:none;

margin-bottom:20px;

transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus{

border-color:#123c85;

}

.contact-form button{

padding:16px 40px;

background:#c2171d;

border:none;

border-radius:50px;

color:#fff;

font-size:17px;

font-weight:600;

cursor:pointer;

transition:.3s;

}

.contact-form button:hover{

background:#123c85;

}

@media(max-width:991px){

.contact-section .container{

flex-direction:column;

}

.contact-info,
.contact-form{

width:100%;

}

}

@media(max-width:768px){

.form-row{

grid-template-columns:1fr;

}

.contact-form{

padding:30px 20px;

}

.contact-form h3{

font-size:28px;

}

.info-box{

padding:20px;

}

}

.contact-map-section{

padding:100px 0;
background:#ffffff;

}

.map-content{

display:flex;
align-items:center;
gap:60px;

}

.office-details{

width:45%;

}

.google-map{

width:55%;

}

.google-map iframe{

width:100%;
height:520px;
border:0;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.1);

}

.office-details h2{

font-size:46px;
color:#123c85;
margin:20px 0;

}

.office-details p{

color:#666;
line-height:30px;
margin-bottom:35px;

}

.office-info{

display:flex;
flex-direction:column;
gap:25px;
margin-bottom:35px;

}

.office-box{

display:flex;
gap:20px;
padding:25px;
background:#f8f9fc;
border-radius:18px;
transition:.3s;

}

.office-box:hover{

background:#123c85;
transform:translateY(-5px);

}

.office-box:hover h4,
.office-box:hover p,
.office-box:hover i{

color:#fff;

}

.office-box i{

width:60px;
height:60px;
background:#c2171d;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
font-size:24px;
flex-shrink:0;

}

.office-box h4{

color:#123c85;
margin-bottom:8px;
font-size:22px;

}

.contact-buttons{

display:flex;
gap:20px;

}

.btn-blue,
.btn-red{

padding:16px 35px;
border-radius:50px;
text-decoration:none;
font-weight:600;
display:flex;
align-items:center;
gap:10px;
transition:.3s;

}

.btn-blue{

background:#123c85;
color:#fff;

}

.btn-red{

background:#c2171d;
color:#fff;

}

.btn-blue:hover,
.btn-red:hover{

transform:translateY(-5px);

}

@media(max-width:991px){

.map-content{

flex-direction:column;

}

.office-details,
.google-map{

width:100%;

}

}

@media(max-width:768px){

.office-details h2{

font-size:34px;

}

.contact-buttons{

flex-direction:column;

}

.google-map iframe{

height:400px;

}

}

.product-banner{

height:450px;
background:url(images/product-banner.jpg) center/cover;
position:relative;
display:flex;
align-items:center;

}

.product-banner .overlay{

position:absolute;
inset:0;
background:linear-gradient(90deg,
rgba(18,60,133,.92),
rgba(194,23,29,.75));

}

.product-banner .container{

position:relative;
z-index:2;

}

.product-banner h1{

font-size:60px;
color:#fff;
margin:20px 0;

}

.product-banner p{

max-width:650px;
color:#fff;
font-size:18px;
line-height:30px;

}
.product-category{

padding:40px 0;
background:#fff;

}

.category-list{

display:flex;
justify-content:center;
flex-wrap:wrap;
gap:15px;

}

.category-list a{

padding:14px 30px;
background:#f5f5f5;
border-radius:50px;
text-decoration:none;
color:#123c85;
font-weight:600;
transition:.3s;

}

.category-list a:hover,
.category-list .active{

background:#c2171d;
color:#fff;

}

.product-listing{

padding:100px 0;
background:#f8f9fc;

}

.product-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

.product-card{

background:#fff;
border-radius:20px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.4s;
padding: 15px;

}

.product-card:hover{

transform:translateY(-10px);

}
.product-cat{

display:inline-block;

padding:6px 14px;

background:#123c85;

color:#fff;

font-size:13px;

border-radius:20px;

margin-bottom:15px;

}

.product-card img{

width:100%;
height:auto;
object-fit:cover;
transition:.5s;

}

.product-card:hover img{

transform:scale(1.05);

}

.product-content{

padding:10px;

}

.product-content h3{

color:#123c85;
margin-bottom:15px;

}

.product-content p{

line-height:28px;
color:#666;

}

.product-content a{

display:inline-flex;
align-items:center;
gap:10px;
margin-top:20px;
text-decoration:none;
color:#c2171d;
font-weight:600;

}

.product-detail-banner{

height:420px;
background:url(images/product-banner.jpg) center/cover;
position:relative;
display:flex;
align-items:center;

}

.product-detail-banner .overlay{

position:absolute;
inset:0;
background:linear-gradient(90deg,
rgba(18,60,133,.92),
rgba(194,23,29,.75));

}

.product-detail-banner .container{

position:relative;
z-index:2;

}

.banner-content{

max-width:700px;
color:#fff;

}

.banner-content h1{

font-size:56px;
margin:20px 0;

}

.banner-content p{

font-size:18px;
line-height:30px;

}

.product-detail{

padding:100px 0;

}

.product-detail .container{

display:flex;
gap:60px;
align-items:flex-start;

}

.product-gallery{

width:50%;

}

.main-image{

border-radius:20px;
overflow:hidden;
box-shadow:0 15px 35px rgba(0,0,0,.1);

}

.main-image img{

width:100%;
display:block;

}

.thumb-gallery{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:15px;
margin-top:20px;

}

.thumb-gallery img{

width:100%;
height:120px;
object-fit:cover;
border-radius:12px;
cursor:pointer;
transition:.3s;

}

.thumb-gallery img:hover{

transform:scale(1.05);

}

.product-info{

width:50%;

}

.product-category{

display:inline-block;
padding:8px 18px;
background:#123c85;
color:#fff;
border-radius:30px;
margin-bottom:20px;

}

.product-info h2{

font-size:42px;
color:#123c85;
margin-bottom:20px;

}

.product-info p{

line-height:32px;
color:#666;
margin-bottom:35px;

}

.product-highlights{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
margin-bottom:40px;

}

.product-highlights div{

font-weight:600;

}

.product-highlights i{

color:#c2171d;
margin-right:10px;

}

.product-buttons{

display:flex;
gap:15px;
flex-wrap:wrap;

}

.btn-red,
.btn-blue,
.btn-whatsapp{

padding:15px 28px;
border-radius:50px;
text-decoration:none;
color:#fff;
font-weight:600;

}

.btn-red{

background:#c2171d;

}

.btn-blue{

background:#123c85;

}

.btn-whatsapp{

background:#25D366;

}

@media(max-width:991px){

.product-detail .container{

flex-direction:column;

}

.product-gallery,
.product-info{

width:100%;

}

}

@media(max-width:768px){

.thumb-gallery{

grid-template-columns:repeat(2,1fr);

}

.product-info h2{

font-size:34px;

}

.product-highlights{

grid-template-columns:1fr;

}

}

.product-detail{

padding:100px 0;

}

.product-detail .container{

display:flex;
gap:60px;
align-items:flex-start;

}

.product-gallery{

width:50%;

}

.main-image{

border-radius:20px;
overflow:hidden;
box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.main-image img{

width:100%;
display:block;

}

.thumb-gallery{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:15px;
margin-top:20px;

}

.thumb-gallery img{

width:100%;
height:120px;
object-fit:cover;
cursor:pointer;
border-radius:10px;
transition:.3s;

}

.thumb-gallery img:hover{

transform:scale(1.05);

}

.product-info{

width:50%;

}

.product-category{

display:inline-block;
padding:8px 20px;
background:#123c85;
color:#fff;
border-radius:30px;
margin-bottom:20px;

}

.product-info h2{

font-size:42px;
margin-bottom:20px;
color:#123c85;

}

.product-info p{

line-height:32px;
color:#666;
margin-bottom:30px;

}

.product-highlights{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:18px;
margin-bottom:35px;

}

.product-highlights div{

font-weight:600;

}

.product-highlights i{

color:#c2171d;
margin-right:8px;

}

.product-buttons{

display:flex;
gap:15px;
flex-wrap:wrap;

}

.btn-red,
.btn-blue,
.btn-whatsapp{

padding:15px 30px;
border-radius:50px;
text-decoration:none;
font-weight:600;
color:#fff;

}

.btn-red{

background:#c2171d;

}

.btn-blue{

background:#123c85;

}

.btn-whatsapp{

background:#25D366;

}

.specification-section{

padding:90px 0;

}

.spec-table{

width:100%;
border-collapse:collapse;
margin-top:40px;

}

.spec-table th{

background:#123c85;
color:#fff;
padding:18px;
width:280px;
text-align:left;

}

.spec-table td{

padding:18px;
border:1px solid #ddd;

}



.application-section{

padding:100px 0;
background:#f8f9fc;

}

.application-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
margin-top:50px;

}

.application-box{

background:#fff;
padding:40px;
text-align:center;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.3s;

}

.application-box:hover{

transform:translateY(-10px);

}

.application-box i{

font-size:45px;
color:#c2171d;
margin-bottom:20px;

}

.application-box h4{

color:#123c85;

}



.inquiry-section{

padding:100px 0;

}

.inquiry-wrapper{

display:flex;
gap:60px;
align-items:center;

}

.inquiry-wrapper .left{

width:40%;

}

.inquiry-wrapper .right{

width:60%;

}

.left span{

display:inline-block;
padding:8px 18px;
background:#123c85;
color:#fff;
border-radius:30px;

}

.left h2{

font-size:42px;
margin:20px 0;
color:#123c85;

}

.left p{

line-height:30px;
color:#666;

}

.left ul{

margin-top:30px;
padding:0;
list-style:none;

}

.left li{

margin-bottom:18px;
font-size:18px;

}

.left li i{

color:#c2171d;
margin-right:10px;

}

.right form{

background:#fff;
padding:40px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.row{

display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
margin-bottom:20px;

}

.right input,
.right textarea{

width:100%;
padding:16px;
border:1px solid #ddd;
border-radius:10px;
margin-bottom:20px;
outline:none;

}

.right button{

padding:16px 35px;
background:#c2171d;
border:none;
color:#fff;
border-radius:50px;
cursor:pointer;
font-size:16px;

}


@media(max-width:991px){

.inquiry-wrapper{

flex-direction:column;

}

.inquiry-wrapper .left,
.inquiry-wrapper .right{

width:100%;

}

.application-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.application-grid{

grid-template-columns:1fr;

}

.row{

grid-template-columns:1fr;

}

.left h2{

font-size:34px;

}

}

.related-products{

    padding:100px 0;
    background:#f8f9fc;

}

.related-products .section-title{

    text-align:center;
    margin-bottom:60px;

}

.related-products .section-title span{

    display:inline-block;
    padding:8px 20px;
    background:#123c85;
    color:#fff;
    border-radius:30px;
    font-size:14px;
    margin-bottom:15px;

}

.related-products .section-title h2{

    font-size:42px;
    color:#123c85;
    margin-bottom:15px;

}

.related-products .section-title p{

    max-width:700px;
    margin:auto;
    color:#666;
    line-height:30px;

}

.product-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.product-card{

    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.3s;

}

.product-card:hover{

    transform:translateY(-10px);

}

.product-card img{

    width:100%;
    height:280px;
    object-fit:contain;
    background:#fff;
    /* padding:20px; */

}

.product-content{

    padding:20px 10px 10px;

}

.product-cat{

    display:inline-block;
    background:#123c85;
    color:#fff;
    padding:6px 16px;
    border-radius:20px;
    font-size:13px;
    margin-bottom:15px;

}

.product-content h3{

    font-size:24px;
    color:#123c85;
    margin-bottom:15px;

}

.product-content p{

    color:#666;
    line-height:28px;
    margin-bottom:20px;

}

.product-content a{

    color:#c2171d;
    font-weight:600;
    text-decoration:none;

}

.product-content a i{

    margin-left:8px;
}

@media(max-width:991px){

.product-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.product-grid{

grid-template-columns:1fr;

}

.related-products{

padding:70px 0;

}

.related-products .section-title h2{

font-size:32px;

}

}

@media(max-width:767px){

    .hero-counter {
    justify-content: center;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(1,1fr);
}
.abouts-mains {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    flex-direction: column;
}
.banner-content h1 {
    font-size: 25px;
    margin: 20px 0;
}
.abouts-grids {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    display: grid;
    grid-template-columns: repeat(1,1fr);
}
.faq-section .container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-direction: column;

}
.faq-left {
    width: 100%;
}
.faq-right {
    width: 100%;
}
}

/* =========================================
   STICKY WHATSAPP BUTTON
========================================= */

.whatsapp-btn {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: #fff;

    border-radius: 50%;

    text-decoration: none;

    font-size: 30px;

    z-index: 99999;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);

    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    color: #fff;

    transform: translateY(-5px) scale(1.05);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}


/* Pulse Effect */

.whatsapp-btn::before {
    content: "";

    position: absolute;

    width: 100%;
    height: 100%;

    border-radius: 50%;

    border: 2px solid #25D366;

    animation: whatsappPulse 1.8s infinite;

    box-sizing: border-box;
}

@keyframes whatsappPulse {

    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.45);
        opacity: 0;
    }

    100% {
        transform: scale(1.45);
        opacity: 0;
    }

}


/* Mobile */

@media (max-width: 575px) {

    .whatsapp-btn {
        width: 52px;
        height: 52px;

        right: 18px;
        bottom: 18px;

        font-size: 27px;
    }

}