
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'oxanium',sans-serif;
    background:#f5f5f5;
}

/* Container */


/* Floating Rounded Header Styling */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 8px 15px rgba(95, 94, 94, 0.08);
    position: sticky;
    top: 15px; /* Upar se thoda chhod kar float karega */
    z-index: 1000;
    width: 92%; /* Pura stretch na hokar dono taraf se gap dega */
    max-width: 1250px;
    margin: 8px auto; /* Center align karega */
    border-radius: 12px; /* Rounded corners */
    padding: 5px 0;
}

.header-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Styling */
.header-logo img {
    height: 90px;
    width: auto;
    display: block;
}

/* Navigation Links */
.header-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 0;
    padding: 0;
}

.header-nav ul li a {
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    color: #232323;
    transition: color 0.3s ease;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-nav ul li a:hover,
.header-nav ul li a.active {
    color: #b91c1c;
}

.header-nav ul li a i {
    font-size: 11px;
}

/* Dropdown Menu Styling */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 177%;
    left: 0;
    background-color: #111827;
    min-width: 270px;
    list-style: none;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 0 !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a{
    display: block !important;
    width: 100% !important;

    font-size: 15px !important;
    padding: 10px 20px 10px 20px !important;
    font-weight: 600 !important;

    color: #fff !important;
    background: #0E0C1B !important;
}
/* Active Dropdown Menu */
.dropdown-menu li a.active-submenu{

    background:#c31612 !important;

    color:#fff !important;

    font-weight:700 !important;

}

.dropdown-menu li a.active-submenu:hover{

    background:#c31612 !important;

    color:#fff !important;

}
.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: rgba(185, 28, 28, 0.2);
    color: #ef4444 !important;
}

/* Enquiry Button Styling */
.enquiry-now-btn {
    background-color: #ff0000;
    color: #ffffff;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.enquiry-now-btn:hover {
    background-color: #dc2626;
    transform: translateY(-2px);
}
/*=========================================
 HERO SECTION
=========================================*/

.hero-section{
    width:100%;
    position:relative;
    overflow:hidden;
    background:#fff;
    
}

.heroSwiper{
    width:100%;
    height:calc(100vh - 95px);
}

.heroSwiper .swiper-wrapper{
    width:100%;
    height:100%;
}

.heroSwiper .swiper-slide{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    overflow:hidden;
}

.heroSwiper .swiper-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
    user-select:none;
    -webkit-user-drag:none;
    pointer-events:none;
}
/* Desktop */
.desktop-banner{
    display:block !important;
}

.mobile-banner{
    display:none !important;
}

/* Mobile */
@media screen and (max-width:768px){

    .desktop-banner{
        display:none !important;
    }

    .mobile-banner{
        display:block !important;
    }

}



/*=========================================
 LARGE LAPTOP
=========================================*/

@media (max-width:1400px){

.heroSwiper{
    height:calc(100vh - 90px);
}

}

/*=========================================
 LAPTOP
=========================================*/

@media (max-width:1200px){

.hero-section{
    margin-top:90px;
}

.heroSwiper{
    height:70vh;
    min-height:500px;
}

.heroSwiper .swiper-slide img{
    object-position:center;
}

}

/*=========================================
 TABLET
=========================================*/

@media (max-width:992px){

.hero-section{
    margin-top:85px;
}

.heroSwiper{
    height:60vh;
    min-height:420px;
}

.heroSwiper .swiper-slide img{
    object-fit:cover;
    object-position:center;
}

}

/*=========================================
 MOBILE
=========================================*/

@media (max-width:768px){

.heroSwiper{
    width:100%;
    height:auto !important;
    min-height:auto !important;
}

.heroSwiper .swiper-wrapper{
    height:auto !important;
}

.heroSwiper .swiper-slide{
    height:auto !important;
}

.heroSwiper .swiper-slide img{
    width:100%;
    height:auto !important;
    object-fit:contain;
    display:block;
}

}

/*=========================================
 SMALL MOBILE
=========================================*/

@media (max-width:576px){

.hero-section{
    margin-top:75px;
}

.heroSwiper{
    height:42vh;
    min-height:250px;
}

}

/*=========================================
 EXTRA SMALL MOBILE
=========================================*/

@media (max-width:375px){

.heroSwiper{
    height:70vh;
    min-height:520px;
}

}

/*=========================
    ABOUT SECTION
=========================*/

.about-home{
    width:100%;
    padding:50px 100px;
    background:#f7f7f7;
}

.about-home .container{
    max-width:1400px;
    width:100%;
    margin:auto;

    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:40px;
    align-items:center;
}

/*=========================
LEFT
=========================*/

.about-left{
    background:#fff;
    padding:50px;
    border-radius:10px;
}

.about-left h1{

    font-size:30px;
    font-weight:700;
    color:#ff1b00;
    text-transform:uppercase;
    margin-bottom:8px;
    line-height:1;

}

.about-left h2{

    font-size:25px;
    color:#121212;
    margin-bottom:10px;
    line-height:1.1;
    font-weight:700;

}

.about-left p{

    font-size:16px;
    line-height:1.6;
    color:#666;
    margin-bottom:25px;

}


/*=========================
BUTTON
=========================*/

.about-btn{

    display:inline-block;
    padding:10px 30px;
    background:#AF1810;
    color:#fff;
    border-radius:5px;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:.35s;
}

.about-btn:hover{
    background:#54595F;
}


/*=========================
FEATURE BOX
=========================*/

.about-features{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:30px;

}

.feature-box{

    display:flex;
    gap:20px;
    padding:15px;
    border-radius:10px;
    transition:.35s;
}

.feature-box:hover{

    transform:translateY(-8px);

}

.red{
    background:#AF1810;
    color:#fff;
}

.dark{
    background:#585d65;
    color:#fff;
}

.feature-icon{

    min-width:50px;
    width:45px;
    height:45px;
    background:#fff;
    border-radius:5px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    color:#AF1810;

}

.feature-box h3{
    font-size:19px;
    margin-bottom:5px;
    line-height:1.3;

}

.feature-box p{
    color:#fff;
    font-size:16px;
    line-height:1.3;
    margin:0;

}


/*=========================
RIGHT IMAGE
=========================*/

.about-right{
    display:flex;
    justify-content:center;
}

.about-right img{
    width:100%;

    border-radius:10px;
}

/*=====================================
ABOUT RESPONSIVE ONLY
=====================================*/

@media (max-width:992px){

.about-home{
    padding:50px 30px;
}

.about-home .container{

    grid-template-columns:1fr;

    gap:35px;

}

.about-right{

    order:-1;

}

.about-right img{

    max-width:650px;

    margin:auto;

}

}


@media (max-width:768px){

.about-home{

    padding:40px 20px;

}

.about-left{

    padding:35px;

}

.about-left h6{

    font-size:22px;

}

.about-left h2{

    font-size:22px;

}

.about-features{

    grid-template-columns:1fr;

}

}


@media (max-width:576px){

.about-home{

    padding:30px 15px;

}

.about-left{

    padding:25px;

}

.about-left h6{

    font-size:18px;

}

.about-left h2{

    font-size:20px;

}

.about-left p{

    font-size:15px;

}

.about-btn{

    width:100%;

    text-align:center;

}

.feature-box{

    gap:15px;

}

.feature-box h3{

    font-size:17px;

}

.feature-box p{

    font-size:14px;

}

}


/* Section Styling */
.stands-out-section {
    background-color: #54595F; /* Dark grey background as shown in image */
    padding: 50px 100px;
    color: #ffffff;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.sub-heading {
    color:#ff9f9a; /* Red color matching the image */
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 35px;
    font-weight: 600;
    color: #ffffff;
}

/* Cards Grid Layout */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Individual Card Styling */
.standout-card {
    background-color: #fff; /* Off-white / Light grey card background */
    color: #2c3e50;
    padding: 30px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.standout-card:hover {
    transform: translateY(-5px);
}

/* Icon Styling */
.card-icon {
    font-size: 35px;
    color: #b91c1c; /* Deep red icon color */
    margin-bottom: 15px;
}

/* Card Typography */
.standout-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
}

.card-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 5px;
}

.card-desc {
    font-size: 15px;
    line-height: 1.5;
    color: #4b5563;
}
/*=====================================
WHY VS ENGINEERS RESPONSIVE
=====================================*/

@media (max-width:1200px){

.stands-out-section{

    padding:50px 40px;

}

.cards-grid{

    gap:25px;

}

.standout-card{

    padding:25px;

}

}


/*============== TABLET ==============*/

@media (max-width:992px){

.stands-out-section{

    padding:45px 30px;

}

.cards-grid{

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.section-header{

    margin-bottom:40px;

}

.section-header h2{

    font-size:32px;

}

}


/*============== MOBILE ==============*/

@media (max-width:768px){

.stands-out-section{

    padding:40px 20px;

}

.cards-grid{

    grid-template-columns:1fr;

    gap:20px;

}

.section-header{

    margin-bottom:35px;

}

.section-header h2{

    font-size:28px;

}

.sub-heading{

    font-size:16px;

}

.standout-card{

    padding:25px;

}

.standout-card h3{

    font-size:20px;

}

.card-subtitle{

    font-size:15px;

}

.card-desc{

    font-size:15px;

}

}


/*============== SMALL MOBILE ==============*/

@media (max-width:576px){

.stands-out-section{

    padding:35px 15px;

}

.section-header h2{

    font-size:24px;

}

.standout-card{

    padding:22px;

}

.card-icon{

    font-size:30px;

}

.standout-card h3{

    font-size:18px;

}

.card-subtitle{

    font-size:14px;

}

.card-desc{

    font-size:14px;

    line-height:1.6;

}

}


/*============== EXTRA SMALL ==============*/

@media (max-width:375px){

.section-header h2{

    font-size:22px;

}

.sub-heading{

    font-size:14px;

}

.standout-card{

    padding:20px;

}

.card-icon{

    font-size:28px;

}

}
/*=================================================
        ABOUT COMPANY SECTION
==================================================*/

.about-company-section{
    width:100%;
    padding:50px 100px;
    background:#ffffff;
}

.about-company-container{
    width:100%;
    max-width:1400px;
    margin:0 auto;

    display:grid;
    grid-template-columns:48% 52%;
    align-items:center;
    gap:20px;
}


/*=================================================
LEFT IMAGE
==================================================*/

.about-company-image-box{
    width:100%;
}

.about-company-image-box img{
    width:100%;
    border-radius:10px;
}



/*=================================================
RIGHT CONTENT
==================================================*/
.about-company-section{
    padding: 50px 100px;
}
.about-company-content{
    width:100%;

}

.about-company-subtitle{

    display:inline-block;
    font-size:20px;
    font-weight:700;
    color:#e30613;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:5px;
}

.about-company-heading{

    font-size:35px;
    color:#111827;
    line-height:1.2;
    font-weight:700;
    margin-bottom:10px;

}

.about-company-description{
    font-size:17px;
    line-height:1.6;
    color:#6b7280;
    margin-bottom:5px;
}

.about-company-description strong{
    color:#4b5563;
    font-weight:700;
}

.about-company-list-heading{
    margin-top:10px;
    margin-bottom:10px;
    font-size:20px;
    color:#111827;
    font-weight:600;
}

.about-company-list{
    margin:0;
    padding-left:20px;
}

.about-company-list li{
    font-size:16px;
    color:#6b7280;
    line-height:2;

}

.about-company-list li strong{

    color:#4b5563;

}

.about-company-list li::marker{

    color:#e30613;

}
/*=========================================
ABOUT COMPANY RESPONSIVE
=========================================*/

@media (max-width:1200px){

.about-company-section{

    padding:50px 40px;

}

.about-company-container{

    gap:35px;

}

}


/*============== TABLET ==============*/

@media (max-width:992px){

.about-company-section{

    padding:45px 30px;

}

.about-company-container{

    grid-template-columns:1fr;

    gap:35px;

}

.about-company-image-box{

    max-width:650px;

    margin:0 auto;

}

.about-company-content{

    width:100%;

}

}


/*============== MOBILE ==============*/

@media (max-width:768px){

.about-company-section{

    padding:40px 20px;

}

.about-company-heading{

    font-size:30px;

}

.about-company-subtitle{

    font-size:18px;

}

.about-company-description{

    font-size:16px;

}

.about-company-list-heading{

    font-size:18px;

}

.about-company-list li{

    font-size:15px;

    line-height:1.8;

}

}


/*============== SMALL MOBILE ==============*/

@media (max-width:576px){

.about-company-section{

    padding:35px 15px;

}

.about-company-heading{

    font-size:24px;

    line-height:1.3;

}

.about-company-subtitle{

    font-size:16px;

}

.about-company-description{

    font-size:15px;

    line-height:1.7;

}

.about-company-list-heading{

    font-size:17px;

}

.about-company-list{

    padding-left:18px;

}

.about-company-list li{

    font-size:14px;

    line-height:1.7;

}

}


/*============== EXTRA SMALL ==============*/

@media (max-width:375px){

.about-company-heading{

    font-size:22px;

}

.about-company-subtitle{

    font-size:15px;

}

.about-company-description{

    font-size:14px;

}

.about-company-list li{

    font-size:13px;

}

}
/*==================================================
        VS PRODUCTS SECTION
==================================================*/

.vs-products-section{
    width:100%;
    padding:50px 100px;
    background:#f7f7f7;
}

.vs-products-container{
    width:100%;
    max-width:1400px;
    margin:auto;
}

/*==================================================
        HEADING
==================================================*/

.vs-products-heading{
    text-align:center;
    margin-bottom:40px;
}


.vs-products-heading h2{
    font-size:35px;
    font-weight:700;
    color:#222;
    margin-bottom:5px;
}

/*==================================================
        DIVIDER
==================================================*/

.vs-products-divider{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:5px;
}

.divider-line{
    width:70px;
    height:1px;
    background:#d42027;
}

.divider-icon{
    width:25px;
    height:25px;
    border-radius:50%;
    border:1px solid #d42027;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#54595F;
    font-size:15px;
    background:#fff;
}

/*==================================================
        PRODUCTS GRID
==================================================*/

.vs-products-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:15px;
}

/*==================================================
        PRODUCT CARD
==================================================*/

.vs-product-card{
    background:#fff;
    border:1px solid #e6e6e6;
    border-radius:5px;
    overflow:hidden;
    transition:.35s;
    cursor:pointer;
    position:relative;
}

/*==================================================
        IMAGE
==================================================*/

.vs-product-image{
    height:300px;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:10px;
    background:#fff;
}

.vs-product-image img{
    width:100%;
    max-height:250px;
    object-fit:contain;
    transition:.4s;
}

/*==================================================
        TITLE
==================================================*/

.vs-product-title{
    background:linear-gradient(to bottom,#4a4a4a,#1f1f1f);
    padding:10px 10px;
    text-align:center;
}

.vs-product-title h3{
    color:#fff;
    font-size:16px;
    line-height:25px;
    font-weight:500;
    margin:0;
}
/*=========================================
        HOVER EFFECTS
=========================================*/

.vs-product-card:hover{
    transform:translateY(-5px);
    border-color:#d42027;
}


.vs-product-card:hover .vs-product-title{
    background:linear-gradient(135deg,#d42027,#8c1015);
}

.vs-product-card:hover .vs-product-title h3{
    color:#fff;
}


/*=========================================
        IMAGE ANIMATION
=========================================*/

.vs-product-image{
    position:relative;
    overflow:hidden;
}

.vs-product-image::before{
    content:"";
    position:absolute;
    top:-120%;
    left:-50%;
    width:30%;
    height:300%;
    background:rgba(255,255,255,.35);
    transform:rotate(25deg);
    transition:.8s;
}

.vs-product-card:hover .vs-product-image::before{
    left:150%;
}

/*=========================================
        CARD TRANSITION
=========================================*/

.vs-product-card,
.vs-product-image img,
.vs-product-title,
.vs-product-title h3{
    transition:.4s ease;
}
/* Product Card Link Fix */
.vs-product-link{
    display: block;
    text-decoration: none !important;
    color: inherit !important;
}

.vs-product-link:hover,
.vs-product-link:focus,
.vs-product-link:visited,
.vs-product-link:active{
    text-decoration: none !important;
    color: inherit !important;
}

.vs-product-link *{
    text-decoration: none !important;
    color: inherit;
}
/*=========================================
        PRODUCTS RESPONSIVE
=========================================*/

@media (max-width:1200px){

.vs-products-section{

    padding:50px 40px;

}

.vs-products-grid{

    grid-template-columns:repeat(4,1fr);

    gap:18px;

}

}


/*============== TABLET ==============*/

@media (max-width:992px){

.vs-products-section{

    padding:45px 30px;

}

.vs-products-grid{

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

.vs-product-image{

    height:260px;

}

.vs-product-image img{

    max-height:220px;

}

}


/*============== SMALL TABLET ==============*/

@media (max-width:768px){

.vs-products-section{

    padding:40px 20px;

}

.vs-products-heading h2{

    font-size:30px;

}

.divider-line{

    width:50px;

}

.vs-products-grid{

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.vs-product-image{

    height:240px;

}

.vs-product-image img{

    max-height:200px;

}

}


/*============== MOBILE ==============*/

@media (max-width:576px){

.vs-products-section{

    padding:35px 15px;

}

.vs-products-heading{

    margin-bottom:30px;

}

.vs-products-heading h2{

    font-size:24px;

}

.divider-line{

    width:35px;

}

.vs-products-grid{

    grid-template-columns:1fr;

    gap:20px;

}

.vs-product-card{

    max-width:360px;

    width:100%;

    margin:auto;

}

.vs-product-image{

    height:250px;

}

.vs-product-image img{

    max-height:210px;

}

.vs-product-title h3{

    font-size:15px;

    line-height:22px;

}

}


/*============== EXTRA SMALL ==============*/

@media (max-width:375px){

.vs-products-heading h2{

    font-size:22px;

}

.vs-product-image{

    height:220px;

}

.vs-product-image img{

    max-height:180px;

}

.vs-product-title{

    padding:12px 8px;

}

.vs-product-title h3{

    font-size:14px;

}

}


/*=============================
 WHY CHOOSE US
==============================*/

.why-choose{
    position:relative;
    padding:50px 100px;
    background:url("images/bg.webp") center center/cover no-repeat;
    overflow:hidden;
}

.why-choose .overlay{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(58,5,5,.65);
}

.why-choose .container{
    position:relative;
    z-index:2;
    width:100%;
    max-width:1400px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:30px;
}

.section-title h2{
    color:#fff;
    font-size:35px;
    font-weight:600;
    margin-bottom:1px;

}

.section-title span{
    width:170px;
    height:1px;
    background:#fff;
    display:inline-block;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.why-box{

    background:#b50c0c;
    border-radius:8px;
    padding:40px;
    transition:.4s;
    box-shadow:0 15px 25px rgba(0,0,0,.20);
}

.why-box:hover{

    transform:translateY(-8px);
    background:#8b0909;
}

.why-head{

    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:10px;
}


.why-head svg{
    fill:#fff;
    color:#fff;
    font-size: 25px;
}

.why-head h3{
    color:#fff;
    font-size:20px;
    font-weight:600;
    margin:0;
    line-height:1.1;
}

.why-box p{
    color:#fff;
    font-size:17px;
    line-height:1.5;
    margin:0;
    opacity:.95;
}

/*=====================================
WHY CHOOSE US RESPONSIVE
=====================================*/

@media (max-width:1200px){

.why-choose{

    padding:50px 40px;

}

.why-grid{

    gap:25px;

}

.why-box{

    padding:35px;

}

}


/*============== TABLET ==============*/

@media (max-width:992px){

.why-choose{

    padding:45px 30px;

}

.why-grid{

    grid-template-columns:1fr 1fr;

    gap:25px;

}

.section-title h2{

    font-size:32px;

}

.why-box{

    padding:30px;

}

.why-head{

    gap:15px;

}

.why-head h3{

    font-size:18px;

}

.why-box p{

    font-size:16px;

}

}


/*============== MOBILE ==============*/

@media (max-width:768px){

.why-choose{

    padding:40px 20px;

}

.section-title{

    margin-bottom:25px;

}

.section-title h2{

    font-size:28px;

}

.section-title span{

    width:120px;

}

.why-grid{

    grid-template-columns:1fr;

    gap:20px;

}

.why-box{

    padding:25px;

}

.why-head{

    gap:12px;

}

.why-head svg{

    font-size:22px;

}

.why-head h3{

    font-size:18px;

    line-height:1.3;

}

.why-box p{

    font-size:15px;

    line-height:1.7;

}

}


/*============== SMALL MOBILE ==============*/

@media (max-width:576px){

.why-choose{

    padding:35px 15px;

}

.section-title h2{

    font-size:24px;

}

.section-title span{

    width:90px;

}

.why-box{

    padding:20px;

}

.why-head{

    flex-direction:column;

    align-items:flex-start;

    gap:10px;

}

.why-head svg{

    font-size:20px;

}

.why-head h3{

    font-size:17px;

}

.why-box p{

    font-size:14px;

    line-height:1.6;

}

}


/*============== EXTRA SMALL ==============*/

@media (max-width:375px){

.section-title h2{

    font-size:22px;

}

.why-box{

    padding:18px;

}

.why-head h3{

    font-size:16px;

}

.why-box p{

    font-size:13px;

}

}
/*=========================================
        REVIEWS SECTION
=========================================*/

.reviews-section{
    padding:50px 100px;
    background:#ffffff;
    overflow:hidden;
}

.reviews-heading{
    text-align:center;
    margin-bottom:40px;
}

.reviews-heading h2{
    font-size:35px;
    font-weight:700;
    color:#1d1d1d;
}

.heading-line{
    width:100px;
    height:2px;
    background:#b10f0f;
    margin:0 auto;
}

/*=========================================
        SWIPER
=========================================*/

.reviewSwiper{
    width:100%;
    padding:20px 5px 80px;
}

.reviewSwiper .swiper-wrapper{
    align-items:stretch;
}

.reviewSwiper .swiper-slide{
    height:auto;
    display:flex;
}

/*=========================================
        REVIEW CARD
=========================================*/

.review-card{

    width:100%;
    border-radius:8px;
    overflow:hidden;
    padding:40px;
    position:relative;
    transition:.4s;
    border-bottom:4px solid #b10f0f;

    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.review-card:hover{

    transform:translateY(-5px);

}

/*=========================================
        WHITE CARD
=========================================*/

.white-card{

    background:#FBFBFB;
}

.white-card h3{

    color:#222;
}

.white-card p{

    color:#666;
}

/*=========================================
        RED CARD
=========================================*/

.red-card{

    background:#8e0d0d;
}

.red-card h3,
.red-card p{

    color:#fff;
}

/*=========================================
        TEXT
=========================================*/

.review-card h3{

    font-size:22px;
    margin-bottom:15px;
    font-weight:600;
}

.review-card p{

    font-size:17px;
    line-height:1.6;
    margin-bottom:20px;
}

/*=========================================
        STARS
=========================================*/

.review-stars{

    display:flex;
    gap:8px;
}

.review-stars i{

    color:#c60b0b;
    font-size:15px;
}

.red-card .review-stars i{

    color:#ffb400;
}
/*=========================================
        SWIPER NAVIGATION
=========================================*/

.reviewSwiper{
    position: relative;
    overflow: hidden;
    padding: 20px 0 80px;
}
.reviewSwiper .swiper-wrapper{
    overflow: visible;
}

/*=====================================
REVIEWS SECTION RESPONSIVE
=====================================*/

@media (max-width:1200px){

.reviews-section{

    padding:50px 40px;

}

.reviewSwiper{

    padding:20px 0 70px;

}

.review-card{

    padding:35px;

}

}


/*============== TABLET ==============*/

@media (max-width:992px){

.reviews-section{

    padding:45px 30px;

}

.reviews-heading{

    margin-bottom:35px;

}

.reviews-heading h2{

    font-size:32px;

}

.reviewSwiper{

    padding:20px 0 60px;

}

.review-card{

    padding:30px;

}

.review-card h3{

    font-size:20px;

}

.review-card p{

    font-size:16px;

}

}


/*============== MOBILE ==============*/

@media (max-width:768px){

.reviews-section{

    padding:40px 20px;

}

.reviews-heading{

    margin-bottom:30px;

}

.reviews-heading h2{

    font-size:28px;

}

.heading-line{

    width:80px;

}

.reviewSwiper{

    padding:15px 0 50px;

}

.review-card{

    padding:25px;

}

.review-card h3{

    font-size:18px;

}

.review-card p{

    font-size:15px;

    line-height:1.7;

}

.review-stars{

    gap:6px;

}

.review-stars i{

    font-size:14px;

}

}


/*============== SMALL MOBILE ==============*/

@media (max-width:576px){

.reviews-section{

    padding:35px 15px;

}

.reviews-heading h2{

    font-size:24px;

}

.heading-line{

    width:60px;

}

.reviewSwiper{

    padding:10px 0 45px;

}

.review-card{

    padding:22px;

}

.review-card h3{

    font-size:17px;

}

.review-card p{

    font-size:14px;

    line-height:1.6;

}

.review-stars{

    justify-content:center;

}

}


/*============== EXTRA SMALL ==============*/

@media (max-width:375px){

.reviews-heading h2{

    font-size:22px;

}

.review-card{

    padding:18px;

}

.review-card h3{

    font-size:16px;

}

.review-card p{

    font-size:13px;

}

.review-stars i{

    font-size:13px;

}

}

/*=========================================
        OUR CLIENTS SECTION
=========================================*/

.clients-section{
    padding:50px 100px;
    background:#ffffff;
    overflow:visible;
}

.clients-heading{
    text-align:center;
    margin-bottom:40px;
}

.clients-heading h2{
    font-size:35px;
    font-weight:700;
    color:#1d1d1d;
    margin-bottom:5px;
}

.clients-heading .heading-line{
    width:90px;
    height:2px;
    background:#b10f0f;
    margin:0 auto;
}

/*=========================================
        SLIDER
=========================================*/

.clients-slider{

    position:relative;

    padding:15px 55px;

    overflow:visible;

}
.clientsSwiper{
    width:100%;
    overflow:hidden;
    padding:15px 0 60px;
}

.clientsSwiper .swiper-wrapper{
    align-items:center;
    display: flex;
}

.clientsSwiper .swiper-slide{
    display:flex;
    justify-content:center;
    align-items:center;
    height:auto;
}

/*=========================================
        CLIENT CARD
=========================================*/

.client-card{

    width:95%;
    height:130px;

    background:#fff;

    border:1px solid #ececec;
    border-radius:10px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:10px;

    transition:.35s ease;
}

.client-card:hover{

    transform:translateY(-5px);

    border-color:#b10f0f;
}

.client-card img{

    max-width:150px;
    max-height:80px;

    width:auto;
    height:auto;

    object-fit:contain;

    transition:.35s ease;
}

.client-card:hover img{

    transform:scale(1.05);
}
/*=========================================
        SWIPER NAVIGATION
=========================================*/

.clients-prev,
.clients-next{

    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:30px;
    height:30px;

    background:#b10f0f;
    color:#fff;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    transition:.35s ease;

    z-index:20;
}

.clients-prev{
    left:20px;
}

.clients-next{
    right:20px;
}

.clients-prev i,
.clients-next i{

    color:#fff;

    font-size:15px;

    line-height:1;

}

.clients-prev:hover,
.clients-next:hover{

    background:#000;
}

/*=========================================
        PAGINATION
=========================================*/

.clientsSwiper .swiper-pagination{

    bottom:0;
}

.clientsSwiper .swiper-pagination-bullet{

    width:10px;
    height:10px;

    background:#cfcfcf;

    opacity:1;

    transition:.3s;
}

.clientsSwiper .swiper-pagination-bullet-active{

    width:20px;

    border-radius:20px;

    background:#b10f0f;
}

/*=====================================
OUR CLIENTS RESPONSIVE
=====================================*/

@media (max-width:1200px){

.clients-section{

    padding:50px 40px;

}

.clients-slider{

    padding:15px 45px;

}

.client-card{

    height:120px;

}

.client-card img{

    max-width:130px;

    max-height:70px;

}

}


/*============== TABLET ==============*/

@media (max-width:992px){

.clients-section{

    padding:45px 30px;

}

.clients-heading{

    margin-bottom:35px;

}

.clients-heading h2{

    font-size:32px;

}

.clients-slider{

    padding:15px 40px;

}

.client-card{

    height:115px;

}

.client-card img{

    max-width:120px;

    max-height:65px;

}

.clients-prev{

    left:10px;

}

.clients-next{

    right:10px;

}

}


/*============== MOBILE ==============*/

@media (max-width:768px){

.clients-section{

    padding:40px 20px;

}

.clients-heading{

    margin-bottom:30px;

}

.clients-heading h2{

    font-size:28px;

}

.clients-heading .heading-line{

    width:70px;

}

.clients-slider{

    padding:10px 35px;

}

.client-card{

    height:105px;

    padding:10px;

}

.client-card img{

    max-width:110px;

    max-height:60px;

}

.clients-prev,
.clients-next{

    width:35px;

    height:35px;

}

.clients-prev{

    left:0;

}

.clients-next{

    right:0;

}

}


/*============== SMALL MOBILE ==============*/

@media (max-width:576px){

.clients-section{

    padding:35px 15px;

}

.clients-heading h2{

    font-size:24px;

}

.clients-heading .heading-line{

    width:55px;

}

.clients-slider{

    padding:10px 25px;

}

.client-card{

    height:95px;

}

.client-card img{

    max-width:90px;

    max-height:50px;

}

.clients-prev,
.clients-next{

    width:30px;

    height:30px;

}

.clients-prev i,
.clients-next i{

    font-size:13px;

}

}


/*============== EXTRA SMALL ==============*/

@media (max-width:375px){

.clients-heading h2{

    font-size:22px;

}

.clients-slider{

    padding:10px 20px;

}

.client-card{

    height:85px;

}

.client-card img{

    max-width:80px;

    max-height:45px;

}

.clients-prev,
.clients-next{

    width:28px;

    height:28px;

}

}

.site-footer {
    background-color: #333638;
    color: #ffffff;
    padding-top: 50px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px 40px 20px;
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #ffffff;
    border-bottom: 2px solid transparent;
}

.footer-col p {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ff0000;
}

.icon-hand {
    color: #ff0000;
    margin-right: 8px;
    font-size: 12px;
}

.contact-info li {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.contact-icon {
    margin-right: 10px;
    color: #ff0000;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #AF1810;
    color: #ffffff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 15px;
}
.social-icon,
.social-icon:link,
.social-icon:visited,
.social-icon:hover,
.social-icon:active{
    color: #ffffff !important;
    text-decoration: none !important;
}

.social-icon i{
    color: #ffffff !important;
}
/* Bottom Bar */
.footer-bottom {
    background-color: #222425;
    text-align: center;
    padding: 13px 20px;
    font-size: 15px;
    color: #aaaaaa;

}

.brand-red {
    color: #ff0000;
}

/*=====================================
FOOTER RESPONSIVE
=====================================*/

@media (max-width:1200px){

.site-footer{

    padding-top:50px;

}

.footer-container{

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    padding:0 40px 40px;

}

}


/*============== TABLET ==============*/

@media (max-width:992px){

.footer-container{

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    padding:0 30px 35px;

}

.footer-col h3{

    font-size:19px;

}

.footer-col p,
.footer-col ul li a,
.contact-info li{

    font-size:15px;

}

}


/*============== MOBILE ==============*/

@media (max-width:768px){

.site-footer{

    padding-top:40px;

}

.footer-container{

    grid-template-columns:1fr;

    gap:30px;

    padding:0 20px 30px;

}

.footer-col{

    text-align:left;

}

.footer-social{

    justify-content:flex-start;

}

.footer-bottom{

    padding:15px;

    font-size:14px;

    line-height:1.6;

}

}


/*============== SMALL MOBILE ==============*/

@media (max-width:576px){

.site-footer{

    padding-top:35px;

}

.footer-container{

    padding:0 15px 25px;

    gap:25px;

}

.footer-col h3{

    font-size:18px;

    margin-bottom:15px;

}

.footer-col p,

.footer-col ul li a,

.contact-info li{

    font-size:14px;

    line-height:1.7;

}

.social-icon{

    width:34px;

    height:34px;

    font-size:14px;

}

.footer-bottom{

    font-size:13px;

    padding:14px 12px;

}

}


/*============== EXTRA SMALL ==============*/

@media (max-width:375px){

.footer-col h3{

    font-size:17px;

}

.footer-col p,

.footer-col ul li a,

.contact-info li{

    font-size:13px;

}

.footer-bottom{

    font-size:12px;

    line-height:1.6;

}

.social-icon{

    width:32px;

    height:32px;

    font-size:13px;

}

}


/*====================================
RESPONSIVE HEADER
====================================*/

.mobile-toggle{
    display:none;
    width:48px;
    height:48px;
    background:#c31612;
    color:#fff;
    border-radius:8px;
    cursor:pointer;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

/*============== 1200 ==============*/

@media (max-width:1200px){

.site-header{

    width:96%;
    top:10px;

}

.header-container{

    padding:0 20px;

}

.header-nav ul{

    gap:28px;

}

.header-logo img{

    height:75px;

}

.enquiry-now-btn{

    padding:13px 24px;
    font-size:15px;

}

.hero-section{

    height:auto;

}

.heroSwiper img{

    width:100%;
    height:auto;
    display:block;

}

}

/*============== 992 ==============*/

@media (max-width:992px){

.mobile-toggle{

    display:flex;

}

.header-btn{

    display:none;

}

.header-logo img{

    height:65px;

}

.header-nav{

    position:absolute;
    left:0;
    top:100%;
    width:100%;
    background:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,.08);

    max-height:0;
    overflow:hidden;

    transition:.35s;

}

.header-nav.show-menu{

    max-height:700px;

}

.header-nav ul{

    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:15px 0;

}

.header-nav ul li{

    width:100%;

}

.header-nav ul li a{

    width:100%;
    padding:15px 25px;

    border-bottom:1px solid #eee;

}

.dropdown-menu{

    position:static;

    opacity:1;
    visibility:visible;

    transform:none;

    display:none;

    width:100%;

    box-shadow:none;

    background:#f8f8f8;

}

.dropdown:hover .dropdown-menu{

    display:block;

}

.hero-section{

    margin-top:10px;

}

}

/*============== 768 ==============*/

@media (max-width:768px){

.site-header{

    width:95%;
    border-radius:10px;

}

.header-container{

    padding:12px 18px;

}

.header-logo img{

    height:55px;

}

.heroSwiper img{

    min-height:250px;
    object-fit:cover;

}

}

/*============== 576 ==============*/

@media (max-width:576px){

.header-logo img{

    height:48px;

}

.mobile-toggle{

    width:42px;
    height:42px;
    font-size:18px;

}

.heroSwiper img{

    min-height:220px;

}

}

/*============== 375 ==============*/

@media (max-width:375px){

.header-container{

    padding:10px 15px;

}

.header-logo img{

    height:42px;

}

}