

   :root{
    --primary: #007BFF;          /* Bright Sarablue */
    --primary-dark: #005FCC;
    --primary-light: #4DA3FF;

    --secondary: #F8F9FA;        /* Light Gray */
    
    --accent: #FF6200;           /* Vibrant Orange */
    --accent-dark: #E55A00;

    --steel-gray: #2C3E50;
    --steel-gray-light: #455A6F;

    --white: #FFFFFF;
    --light-silver: #DDE4E9;

    --dark: #1F2937;
    --text: #4B5563;
}
    body{
    font-family:'Roboto',sans-serif;
    }
    
    h1,h2,h3,h4,h5{
    font-family:'Oswald',sans-serif;
    }
    
    /* HEADER */
    
    .custom-navbar{
    position:absolute;
    top:25px;
    left:0;
    right:0;
    z-index:999;
    }
    
    .nav-wrapper{
    background:#fff;
    border-radius:20px;
    padding:15px 25px;
    box-shadow:0 10px 40px rgba(0,0,0,.15);
    }
    
    .navbar-brand{
    font-family:'Oswald';
    font-size:28px;
    font-weight:700;
    color:var(--primary);
    }
    
    .nav-link{
    font-weight:600;
    color:var(--dark)!important;
    margin:0 12px;
    }
    
    .nav-link:hover{
    color:var(--accent)!important;
    }
    
    .brochure-btn{
    background:var(--accent);
    color:#fff;
    padding:12px 24px;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
    }
    
    /* HERO */
    
    .hero-section{
        min-height:100vh;
        padding-top:140px; /* header ki height se jyada */
        background:
        linear-gradient(rgba(0,48,135,.75),rgba(28,37,38,.80)),
        url('img/heroback.png');
        background-size:cover;
        background-position:center;
        background-repeat:no-repeat;
        display:flex;
        align-items:center;
    }
    
    .hero-content{
    color:#fff;
    }
    
    .hero-badge{
    display:inline-block;
    background:rgba(255,98,0,.15);
    border:1px solid rgba(255,98,0,.4);
    padding:10px 18px;
    border-radius:50px;
    color:#fff;
    margin-bottom:25px;
    font-size:14px;
    }
    
    .hero-title{
    font-size:72px;
    line-height:1.05;
    font-weight:700;
    margin-bottom:25px;
    }
    
    .hero-title span{
    color:var(--accent);
    }
    
    .hero-text{
    font-size:20px;
    max-width:700px;
    color:#d9d9d9;
    margin-bottom:35px;
    }
    
    .hero-btn{
    padding:15px 35px;
    border-radius:12px;
    font-weight:600;
    text-decoration:none;
    display:inline-block;
    }
    
    .btn-primary-custom{
    background:var(--accent);
    color:#fff;
    }
    
    .btn-secondary-custom{
    border:2px solid #fff;
    color:#fff;
    margin-left:15px;
    }
    
    .stats-box{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:20px;
    padding:25px;
    height:100%;
    }
    
    .stats-box h3{
    color:var(--accent);
    font-size:36px;
    }
    
    /* MOBILE MENU */
    
    .offcanvas{
    background:var(--primary);
    }
    
    .offcanvas .nav-link{
    color:#fff!important;
    font-size:20px;
    padding:12px 0;
    }
    
    @media(max-width:991px){
    
    .hero-title{
    font-size:48px;
    }
    
    .custom-navbar{
    top:15px;
    }
    
    .nav-wrapper{
    padding:12px 15px;
    }
    
    }
    
    @media(max-width:576px){
    
    .hero-title{
    font-size:38px;
    }
    
    .hero-text{
    font-size:16px;
    }
    
    .btn-secondary-custom{
    margin-left:0;
    margin-top:10px;
    }
    
    }
    
    
    @media(max-width:991px){
    
    .hero-section{
        padding-top:110px;
        min-height:auto;
        padding-bottom:60px;
    }
    
    }
    

    .about-section{
        background:#ECF0F1;
    }
    
    .about-badge{
        background:#fff;
        color:#FF6200;
        padding:10px 20px;
        border-radius:50px;
        font-weight:600;
        display:inline-block;
        margin-bottom:20px;
    }
    
    .about-title{
        font-family:'Oswald',sans-serif;
        font-size:55px;
        line-height:1.1;
        color:#1C2526;
        margin-bottom:25px;
    }
    
    .about-title span{
        color:#003087;
    }
    
    .about-text{
        font-size:18px;
        line-height:1.9;
        color:#555;
    }
    
    .about-main-img{
        border-radius:30px;
        width:100%;
        height:700px;
        object-fit:cover;
    }
    
    .about-image-wrap{
        position:relative;
    }
    
    .experience-card{
        position:absolute;
        bottom:30px;
        left:30px;
        background:#003087;
        color:#fff;
        padding:25px;
        border-radius:20px;
        width:250px;
    }
    
    .experience-card h2{
        font-size:60px;
        margin:0;
        color:#FF6200;
    }
    
    .feature-box{
        background:#fff;
        padding:20px;
        border-radius:15px;
        display:flex;
        gap:15px;
        align-items:flex-start;
        transition:.4s;
    }
    
    .feature-box:hover{
        background:#003087;
        color:#fff;
        transform:translateY(-5px);
    }
    
    .icon-box{
        width:55px;
        height:55px;
        background:#FF6200;
        color:#fff;
        border-radius:12px;
        display:flex;
        justify-content:center;
        align-items:center;
        font-size:22px;
    }
    
    .stat-box{
        background:#fff;
        padding:25px;
        border-radius:15px;
        text-align:center;
    }
    
    .stat-box h3{
        color:#003087;
        font-family:'Oswald';
        margin-bottom:5px;
    }
    
    .about-btn{
        display:inline-block;
        background:#FF6200;
        color:#fff;
        text-decoration:none;
        padding:15px 35px;
        border-radius:12px;
        font-weight:600;
    }
    
    @media(max-width:991px){
    
    .about-title{
        font-size:38px;
    }
    
    .about-main-img{
        height:450px;
    }
    
    .experience-card{
        width:180px;
    }
    
    }




    .services-section{
        background:#ECF0F1;
    }
    
    .section-badge{
        background:#fff;
        color:#FF6200;
        padding:10px 20px;
        border-radius:50px;
        font-weight:600;
        display:inline-block;
        margin-bottom:15px;
    }
    
    .section-title{
        font-family:'Oswald',sans-serif;
        font-size:55px;
        line-height:1.1;
        color:#1C2526;
    }
    
    .service-btn{
        background:#FF6200;
        color:#fff;
        padding:15px 28px;
        border-radius:10px;
        text-decoration:none;
        font-weight:600;
    }
    
    .service-card{
        background:#fff;
        border-radius:25px;
        padding:35px;
        height:100%;
        transition:.4s;
        border:1px solid #e5e5e5;
    }
    
    .service-card:hover{
        transform:translateY(-10px);
        background:#003087;
        color:#fff;
    }
    
    .service-card:hover h4,
    .service-card:hover p{
        color:#fff;
    }
    
    .service-icon{
        width:80px;
        height:80px;
        background:#FF6200;
        color:#fff;
        border-radius:18px;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:32px;
        margin-bottom:25px;
    }
    
    .service-card h4{
        font-weight:700;
        margin-bottom:15px;
    }
    
    .service-card p{
        color:#666;
        line-height:1.8;
    }
    
    .highlight-card{
        background:#003087;
        color:#fff;
        display:flex;
        flex-direction:column;
        justify-content:center;
    }
    
    .highlight-card h3{
        font-family:'Oswald';
        font-size:32px;
        margin-bottom:20px;
    }
    
    .highlight-card p{
        color:#ddd;
    }
    
    .highlight-card a{
        color:#FF6200;
        text-decoration:none;
        font-weight:700;
    }
    
    @media(max-width:991px){
    
    .section-title{
        font-size:38px;
    }
    
    }


    .services-section{
        background:#ECF0F1;
    }
    
    .service-badge{
        display:inline-block;
        padding:10px 25px;
        background:#fff;
        border-radius:50px;
        color:#FF6200;
        font-weight:600;
        margin-bottom:15px;
    }
    
    .service-title{
        font-size:55px;
        font-family:'Oswald',sans-serif;
        color:#1C2526;
    }
    
    .service-subtitle{
        max-width:700px;
        margin:auto;
        color:#666;
    }
    
    .service-box{
        position:relative;
        overflow:hidden;
        border-radius:25px;
        height:420px;
        cursor:pointer;
    }
    
    .small-box{
        height:420px;
    }
    
    .service-box img{
        width:100%;
        height:100%;
        object-fit:cover;
        transition:.8s;
    }
    
    .service-overlay{
        position:absolute;
        inset:0;
        padding:35px;
        display:flex;
        flex-direction:column;
        justify-content:flex-end;
    
        background:
        linear-gradient(
        to top,
        rgba(0,0,0,.90),
        rgba(0,0,0,.15)
        );
    
        transition:.5s;
    }
    
    .service-overlay span{
        width:60px;
        height:60px;
        background:#FF6200;
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        color:#fff;
        font-weight:700;
        margin-bottom:20px;
    }
    
    .service-overlay h3{
        color:#fff;
        font-size:32px;
        font-family:'Oswald';
    }
    
    .service-overlay p{
        color:#ddd;
        max-width:450px;
    }
    
    .service-box:hover img{
        transform:scale(1.12);
    }
    
    .service-box:hover{
        box-shadow:0 20px 50px rgba(0,48,135,.25);
    }
    
    .service-box::after{
        content:'';
        position:absolute;
        inset:0;
        border:4px solid transparent;
        transition:.5s;
    }
    
    .service-box:hover::after{
        border-color:#FF6200;
    }
    
    @media(max-width:991px){
    
    .service-title{
        font-size:38px;
    }
    
    .service-box,
    .small-box{
        height:350px;
    }
    
    }
    
    @media(max-width:576px){
    
    .service-box,
    .small-box{
        height:280px;
    }
    
    .service-overlay h3{
        font-size:24px;
    }
    
    }







    .why-choose-section{
        background:#ECF0F1;
        overflow:hidden;
    }
    
    .why-badge{
        display:inline-block;
        background:#fff;
        color:var(--accent);
        padding:10px 20px;
        border-radius:50px;
        font-weight:600;
        margin-bottom:20px;
    }
    
    .why-heading{
        font-family:'Oswald',sans-serif;
        font-size:58px;
        line-height:1.1;
        color:var(--dark);
        margin-bottom:25px;
    }
    
    .why-text{
        font-size:18px;
        color:#555;
        line-height:1.9;
        margin-bottom:35px;
    }
    
    /* USP */
    
    .usp-item{
        display:flex;
        gap:20px;
        background:#fff;
        padding:22px;
        border-radius:18px;
        margin-bottom:20px;
        transition:.4s;
    }
    
    .usp-item:hover{
        background:var(--primary);
        transform:translateX(10px);
    }
    
    .usp-item:hover h5,
    .usp-item:hover p{
        color:#fff;
    }
    
    .usp-icon{
        min-width:70px;
        height:70px;
        background:var(--accent);
        color:#fff;
        border-radius:18px;
        display:flex;
        justify-content:center;
        align-items:center;
        font-size:28px;
    }
    
    .usp-item h5{
        font-weight:700;
        margin-bottom:8px;
    }
    
    .usp-item p{
        margin:0;
        color:#666;
    }
    
    .why-btn{
        display:inline-block;
        background:var(--accent);
        color:#fff;
        text-decoration:none;
        padding:15px 35px;
        border-radius:12px;
        margin-top:15px;
        font-weight:600;
    }
    
    /* IMAGE */
    
    .why-image-wrapper{
        position:relative;
    }
    
    .why-main-image{
        width:100%;
        height:700px;
        object-fit:cover;
        border-radius:30px;
    }
    
    /* EXPERIENCE */
    
    .experience-card{
        position:absolute;
        top:30px;
        left:-30px;
        background:var(--primary);
        color:#fff;
        width:220px;
        padding:25px;
        border-radius:25px;
        text-align:center;
        box-shadow:0 20px 40px rgba(0,0,0,.2);
        height: 170px;
    }
    
    .experience-card h2{
        color:var(--accent);
        font-size:60px;
        margin:0;
    }
    
    /* STATS */
    
    .stats-card{
        position:absolute;
        bottom:30px;
        right:30px;
        background:#fff;
        border-radius:25px;
        padding:25px;
        display:flex;
        gap:40px;
        box-shadow:0 20px 50px rgba(0,0,0,.12);
    }
    
    .stat-item{
        text-align:center;
    }
    
    .stat-item h3{
        color:var(--primary);
        font-size:38px;
        margin-bottom:5px;
        font-family:'Oswald',sans-serif;
    }
    
    .stat-item span{
        color:#666;
    }
    
    /* MOBILE */
    
    @media(max-width:991px){
    
    .why-heading{
        font-size:40px;
    }
    
    .why-main-image{
        height:500px;
    }
    
    .experience-card{
        left:15px;
        top:15px;
        width:180px;
    }
    
    .stats-card{
        position:relative;
        right:auto;
        bottom:auto;
        margin-top:20px;
        flex-wrap:wrap;
        justify-content:center;
    }
    
    }
    
    @media(max-width:576px){
    
    .why-heading{
        font-size:32px;
    }
    
    .why-main-image{
        height:400px;
    }
    
    .usp-item{
        flex-direction:column;
        text-align:center;
    }
    
    }



    .strength-section{
        background:#ECF0F1;
    }
    
    .section-tag{
        display:inline-block;
        padding:10px 22px;
        background:#fff;
        color:#FF6200;
        border-radius:50px;
        font-weight:600;
        margin-bottom:15px;
    }
    
    .section-heading{
        font-family:'Oswald',sans-serif;
        font-size:55px;
        color:#1C2526;
        max-width:900px;
        margin:auto;
    }
    
    .strength-card{
        position:relative;
        overflow:hidden;
        border-radius:25px;
        height:550px;
        cursor:pointer;
    }
    
    .strength-card img{
        width:100%;
        height:100%;
        object-fit:cover;
        transition:.8s;
    }
    
    .strength-card::before{
        content:'';
        position:absolute;
        inset:0;
        background:linear-gradient(
            to top,
            rgba(0,0,0,.95),
            rgba(0,0,0,.15)
        );
        z-index:1;
    }
    
    .strength-content{
        position:absolute;
        bottom:30px;
        left:30px;
        right:30px;
        z-index:2;
    }
    
    .strength-content span{
        width:60px;
        height:60px;
        background:#FF6200;
        color:#fff;
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        font-weight:700;
        margin-bottom:20px;
    }
    
    .strength-content h3{
        color:#fff;
        font-size:32px;
        font-family:'Oswald',sans-serif;
        margin-bottom:15px;
    }
    
    .strength-content p{
        color:#ddd;
        line-height:1.8;
    }
    
    .strength-card:hover img{
        transform:scale(1.12);
    }
    
    .strength-card:hover{
        box-shadow:0 20px 60px rgba(0,48,135,.25);
    }
    
    .strength-card::after{
        content:'';
        position:absolute;
        bottom:0;
        left:0;
        width:0;
        height:5px;
        background:#FF6200;
        transition:.5s;
        z-index:3;
    }
    
    .strength-card:hover::after{
        width:100%;
    }
    
    @media(max-width:991px){
    
    .section-heading{
        font-size:38px;
    }
    
    .strength-card{
        height:450px;
    }
    
    }
    
    @media(max-width:576px){
    
    .strength-card{
        height:350px;
    }
    
    .section-heading{
        font-size:30px;
    }
    
    .strength-content h3{
        font-size:24px;
    }
    
    }




    .infra-section{
        position:relative;
        min-height:100vh;
        overflow:hidden;
        display:flex;
        align-items:center;
        padding:120px 0;
    }
    
    /* PARALLAX IMAGE */
    
    .parallax-bg{
        position:absolute;
        top:-15%;
        left:0;
    
        width:100%;
        height:130%;
    
        background:url('img/factory.jpg');
        background-size:cover;
        background-position:center;
    
        z-index:1;
    
        will-change:transform;
    }
    
    /* DARK OVERLAY */
    
    .infra-overlay{
        position:absolute;
        inset:0;
        background:rgba(5,15,35,.82);
        z-index:2;
    }
    
    /* CONTENT */
    
    .infra-section .container{
        position:relative;
        z-index:3;
    }
    
    /* BADGE */
    
    .infra-badge{
        display:inline-block;
        background:rgba(255,255,255,.12);
        color:#fff;
        padding:10px 24px;
        border-radius:50px;
        margin-bottom:25px;
        backdrop-filter:blur(10px);
    }
    
    /* TITLE */
    
    .infra-title{
        color:#fff;
        font-size:68px;
        line-height:1.05;
        font-family:'Oswald',sans-serif;
        margin-bottom:25px;
    }
    
    /* DESCRIPTION */
    
    .infra-desc{
        color:#ddd;
        font-size:18px;
        line-height:1.9;
        margin-bottom:35px;
    }
    
    /* BUTTON */
    
    .infra-btn{
        display:inline-block;
        background:var(--accent);
        color:#fff;
        text-decoration:none;
        padding:16px 34px;
        border-radius:12px;
        font-weight:600;
        transition:.4s;
    }
    
    .infra-btn:hover{
        background:#ff7a2a;
        color:#fff;
    }
    
    /* FEATURE BOX */
    
    .infra-box{
        position:relative;
        padding-left:95px;
    }
    
    .infra-box h4{
        color:#fff;
        font-size:30px;
        font-weight:700;
        margin-bottom:15px;
    }
    
    .infra-box p{
        color:#d5d5d5;
        line-height:1.8;
    }
    
    /* CIRCLE */
    
    .circle{
        position:absolute;
        left:0;
        top:0;
    
        width:70px;
        height:70px;
    
        border:4px solid var(--accent);
        border-radius:50%;
    
        display:flex;
        justify-content:center;
        align-items:center;
    
        color:#fff;
        font-weight:700;
        font-size:18px;
    }
    
    /* CENTER LINE */
    
    .infra-section::after{
        content:'';
        position:absolute;
        left:50%;
        top:0;
        height:100%;
        background:rgba(255,255,255,.12);
        z-index:2;
    }
    
    /* RESPONSIVE */
    
    @media(max-width:991px){
    
    .infra-section{
        min-height:auto;
        padding:80px 0;
    }
    
    .infra-title{
        font-size:42px;
    }
    
    .infra-box{
        padding-left:85px;
    }
    
    .infra-section::after{
        display:none;
    }
    
    }
    
    @media(max-width:576px){
    
    .infra-title{
        font-size:32px;
    }
    
    .infra-box h4{
        font-size:22px;
    }
    
    }






    .products-section{
        background:#ECF0F1;
        overflow:hidden;
    }
    
    .section-badge{
        display:inline-block;
        padding:10px 22px;
        border-radius:50px;
        background:#fff;
        color:#FF6200;
        font-weight:600;
        margin-bottom:15px;
    }
    
    .section-title{
        font-size:60px;
        font-family:'Oswald',sans-serif;
        color:#1C2526;
        line-height:1.1;
    }
    
    .section-text{
        color:#555;
        font-size:18px;
        line-height:1.9;
    }
    
    .product-card{
        position:relative;
        overflow:hidden;
        border-radius:25px;
        height:550px;
    }
    
    .product-card img{
        width:100%;
        height:100%;
        object-fit:cover;
        transition:.8s;
    }
    
    .product-info{
        position:absolute;
        left:15px;
        right:15px;
        bottom:15px;
    
        background:#fff;
        padding:30px;
        border-radius:20px;
        z-index:2;
    }
    
    .product-info span{
        color:#FF6200;
        font-weight:600;
    }
    
    .product-info h4{
        margin-top:12px;
        font-size:30px;
        font-weight:700;
        color:#1C2526;
    }
    
    .overlay{
        position:absolute;
        inset:0;
        background:rgba(0,48,135,.75);
    
        display:flex;
        justify-content:center;
        align-items:center;
    
        opacity:0;
        transition:.4s;
        z-index:1;
    }
    
    .overlay a{
        width:120px;
        height:120px;
    
        background:#FF6200;
        color:#fff;
        text-decoration:none;
    
        border-radius:50%;
    
        display:flex;
        justify-content:center;
        align-items:center;
    
        font-weight:700;
    }
    
    .product-card:hover img{
        transform:scale(1.1);
    }
    
    .product-card:hover .overlay{
        opacity:1;
    }
    
    .swiper-pagination-bullet{
        width:14px;
        height:14px;
    }
    
    .swiper-pagination-bullet-active{
        background:#FF6200 !important;
    }







.dm-footer{
    background:#1C2526;
    overflow:hidden;
    padding:90px 0 25px;
}

.dm-footer::before{
    content:'';
    inset:0;
    background:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size:40px 40px;
    opacity:.4;
}

.dm-footer-left h2{
    font-family:'Oswald',sans-serif;
    font-size:72px;
    font-weight:700;
    color:#fff;
    line-height:1;
    margin-bottom:40px;
}

.dm-social{
    display:flex;
    gap:15px;
    margin-bottom:60px;
}

.dm-social a{
    width:52px;
    height:52px;
    border:1px solid rgba(255,255,255,.2);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.dm-social a:hover{
    background:#FF6200;
    border-color:#FF6200;
    transform:translateY(-3px);
}

.dm-footer-box{
    background:linear-gradient(135deg,#2C3E50,#1C2526);
    border-radius:25px;
    padding:50px;
    border:1px solid rgba(255,255,255,.08);
}

.dm-newsletter{
    display:flex;
    gap:10px;
}

.dm-newsletter input{
    flex:1;
    height:60px;
    border:none;
    border-radius:10px;
    background:rgba(255,255,255,.08);
    color:#fff;
    padding:0 20px;
}

.dm-newsletter input:focus{
    outline:none;
}

.dm-btn{
    width:60px;
    height:60px;
    border:none;
    border-radius:10px;
    background:#FF6200;
    color:#fff;
    font-size:20px;
}

.dm-divider{
    height:1px;
    background:rgba(255,255,255,.08);
    margin:40px 0;
    position:relative;
}

.dm-divider::after{
    content:'';
    width:14px;
    height:14px;
    border-radius:50%;
    background:#FF6200;
    position:absolute;
    left:75%;
    top:-6px;
}

.dm-title{
    color:#fff;
    font-size:28px;
    font-family:'Oswald',sans-serif;
    margin-bottom:25px;
}

.dm-links{
    list-style:none;
    padding:0;
    margin:0;
}

.dm-links li{
    margin-bottom:14px;
}

.dm-links a{
    color:#ECF0F1;
    text-decoration:none;
    transition:.3s;
}

.dm-links a:hover{
    color:#FF6200;
    padding-left:6px;
}

.dm-links li::before{
    content:'•';
    color:#FF6200;
    margin-right:10px;
}

.dm-contact p{
    color:#ECF0F1;
    margin-bottom:20px;
    line-height:1.8;
}

.dm-contact strong{
    color:#fff;
}

.dm-logo{
    margin-top:80px;
}

.dm-logo h3{
    color:#fff;
    font-family:'Oswald',sans-serif;
    margin:0;
}

.dm-logo span{
    color:#FF6200;
}

.dm-copyright{
    text-align:center;
    color:#ECF0F1;
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:40px;
    padding-top:25px;
}

.dm-copyright a{
    color:#FF6200;
    text-decoration:none;
}

@media(max-width:991px){

.dm-footer-left{
    margin-bottom:40px;
}

.dm-footer-left h2{
    font-size:48px;
}

.dm-footer-box{
    padding:30px;
}

}

@media(max-width:576px){

.dm-newsletter{
    flex-direction:column;
}

.dm-btn{
    width:100%;
}

.dm-footer-left h2{
    font-size:40px;
}

}






.clients-section{
    background:#ECF0F1;
}

.client-badge{
    display:inline-block;
    padding:10px 22px;
    background:#fff;
    border-radius:50px;
    color:#FF6200;
    font-weight:600;
    margin-bottom:15px;
}

.client-heading{
    font-size:55px;
    font-family:'Oswald',sans-serif;
    color:#1C2526;
    line-height:1.1;
}

.client-text{
    font-size:18px;
    color:#555;
    line-height:1.9;
}

.client-card{
    background:#fff;
    height:180px;
    border-radius:20px;

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

    border:1px solid #e5e5e5;

    transition:.4s;
}

.client-card img{
    max-width:170px;
    max-height:80px;
    object-fit:contain;

    filter:grayscale(100%);
    transition:.4s;
}

.client-card:hover{
    transform:translateY(-10px);
    border-color:#FF6200;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.client-card:hover img{
    filter:grayscale(0%);
}

.swiper-pagination-bullet{
    width:12px;
    height:12px;
}

.swiper-pagination-bullet-active{
    background:#FF6200 !important;
}

@media(max-width:991px){

.client-heading{
    font-size:38px;
}

.client-card{
    height:140px;
}

}





.testimonial-section{
    background:linear-gradient(
    135deg,
    #003087,
    #1C2526);
    overflow:hidden;
}

.testimonial-badge{
    display:inline-block;
    background:rgba(255,255,255,.12);
    color:#fff;
    padding:10px 22px;
    border-radius:50px;
    margin-bottom:15px;
}

.testimonial-title{
    color:#fff;
    font-size:58px;
    line-height:1.1;
    font-family:'Oswald',sans-serif;
}

.testimonial-text{
    color:#dcdcdc;
    line-height:1.9;
    font-size:18px;
}

.testimonial-card{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);

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

    border-radius:25px;

    padding:40px;

    height:100%;

    transition:.4s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    border-color:#FF6200;
}

.quote-icon{
    width:70px;
    height:70px;

    background:#FF6200;
    color:#fff;

    border-radius:50%;

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

    font-size:24px;

    margin-bottom:25px;
}

.stars{
    color:#FF6200;
    font-size:22px;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#f1f1f1;
    line-height:1.9;
    min-height:150px;
}

.client-info{
    display:flex;
    align-items:center;
    margin-top:25px;
}

.client-info img{
    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
    margin-right:15px;
}

.client-info h5{
    color:#fff;
    margin-bottom:5px;
}

.client-info span{
    color:#ccc;
    font-size:14px;
}

.swiper-pagination-bullet{
    width:12px;
    height:12px;
}

.swiper-pagination-bullet-active{
    background:#FF6200 !important;
}

@media(max-width:991px){

.testimonial-title{
    font-size:38px;
}

}