

*{
    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;
}
.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);
}

/*==============================
PAGE BANNER
===============================*/

.page-banner{
    position:relative;
    width:100%;
    max-width:1250px;
    height:310px;
    margin:30px auto;
    border-radius:20px;
    overflow:hidden;
    background:url("images/product-banner.png") center center/cover no-repeat;
}

/* Dark Overlay */

.page-banner-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.55),
        rgba(0,0,0,.18),
        rgba(0,0,0,.08)
    );
}

/* Content */

.page-banner-content{
    position:absolute;
    left:50px;
    top: 40%;
    z-index:2;
    width: 100%;
    text-align: center;
}

.page-banner-content h1{

    color:#fff;
    font-size:30px;
    font-weight:700;
    letter-spacing:2px;
    line-height:1;
    margin-bottom:10px;
    text-transform:uppercase;
}

/* Breadcrumb */

.page-breadcrumb{
    display:flex;
    align-items:center;
    justify-content: center;
    gap:10px;
    color:#fff;
    font-size:18px;
}

.page-breadcrumb a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.page-breadcrumb a:hover{
    color:#f3b316;
}

.page-breadcrumb i{
    margin-right:8px;
}

.page-breadcrumb .divider{
    color:#fff;
}
/*=====================================
PRODUCT DETAIL HERO RESPONSIVE
=====================================*/

@media (max-width:1200px){

.page-banner{

    max-width:calc(100% - 40px);
    height:280px;
    margin:25px auto;

}

.page-banner-content{

    left:20px;
    width:calc(100% - 40px);
    top:40%;

}

}


/*============== TABLET ==============*/

@media (max-width:992px){

.page-banner{

    max-width:calc(100% - 30px);
    height:250px;
    margin:20px auto;
    border-radius:16px;

}

.page-banner-content{

    left:15px;
    width:calc(100% - 30px);
    top:38%;
    padding:0 15px;

}

.page-banner-content h1{

    font-size:26px;
    line-height:1.35;
    letter-spacing:1px;

}

.page-breadcrumb{

    font-size:16px;
    gap:8px;
    flex-wrap:wrap;

}

}


/*============== MOBILE ==============*/

@media (max-width:768px){

.page-banner{

    max-width:calc(100% - 20px);
    height:220px;
    border-radius:14px;

}

.page-banner-content{

    left:0;
    width:100%;
    top:34%;
    padding:0 20px;

}

.page-banner-content h1{

    font-size:22px;
    line-height:1.4;
    letter-spacing:.5px;
    margin-bottom:8px;

}

.page-breadcrumb{

    justify-content:center;
    flex-wrap:wrap;
    gap:6px;
    font-size:14px;
    line-height:1.5;

}

.page-breadcrumb i{

    margin-right:5px;

}

}


/*============== SMALL MOBILE ==============*/

@media (max-width:576px){

.page-banner{

    max-width:calc(100% - 16px);
    height:190px;
    margin:15px auto;
    border-radius:12px;

}

.page-banner-content{

    top:30%;
    padding:0 15px;

}

.page-banner-content h1{

    font-size:18px;
    line-height:1.45;

}

.page-breadcrumb{

    font-size:13px;
    gap:5px;

}

}


/*============== EXTRA SMALL ==============*/

@media (max-width:375px){

.page-banner{

    height:175px;

}

.page-banner-content{

    top:28%;
    padding:0 12px;

}

.page-banner-content h1{

    font-size:16px;
    line-height:1.5;

}

.page-breadcrumb{

    font-size:12px;

}

}

/*==========================================
PRODUCT DETAILS SECTION
==========================================*/

.machine-details-section{
    width:100%;
    padding:40px 100px;
    background:#f5f5f5;
}

.machine-details-container{

    max-width:1250px;
    margin:auto;

    display:grid;
    grid-template-columns:42% 58%;

    gap:45px;

    align-items:flex-start;
}

/*==========================================
LEFT IMAGE
==========================================*/

.machine-details-image{

    background:#fff;

    border-radius:10px;

    overflow:hidden;
}

.machine-details-image img{

    width:100%;

    display:block;

    transition:.5s;

}

.machine-details-image:hover img{

    transform:scale(1.05);

}

/*==========================================
RIGHT CONTENT
==========================================*/

.machine-details-content h2{

    font-size:35px;

    color:#b31713;
    margin-bottom: 5px;
    font-weight:700;

}

.machine-details-content h4{

    font-size:22px;

    margin-bottom:15px;

    color:#111;

    text-transform:uppercase;

    font-weight:600;

    line-height:1.4;

}

/*==========================================
TABLE
==========================================*/

.machine-table-box{

    width:100%;

    max-height:290px;

    overflow-y:auto;

    border:1px solid #ddd;

    margin-bottom:30px;

}

.machine-table-box table{

    width:100%;

    border-collapse:collapse;

}

.machine-table-box th{

    background:#fff;

    color:#444;

    font-size:16px;

    font-weight:700;

    padding:12px;

    text-align:left;

    border:1px solid #ddd;

    position:sticky;

    top:0;

}

.machine-table-box td{

    padding:12px;

    border:1px solid #ddd;

    font-size:16px;

    color:#555;

}

.machine-table-box::-webkit-scrollbar{

    width:8px;

}

.machine-table-box::-webkit-scrollbar-thumb{

    background:#b31713;

}

.machine-table-box::-webkit-scrollbar-track{

    background:#f3f3f3;

}

/*==========================================
FORM
==========================================*/
.contact-form-box{
    width:58%;
}

.contact-form-box form{
    width:100%;
}

/*====================================
ROW
====================================*/

.form-row{
    display:flex;
    gap:25px;
}

.form-row .input-group{
    width:50%;
}

/*====================================
INPUT
====================================*/

.input-group{
    margin-bottom:20px;
}

.input-group input,
.input-group textarea{

    width:100%;
    padding:13px 20px;

    border:1px solid #d5d5d5;

    outline:none;

    font-size:17px;

    color:#333;

    background:#fff;

    transition:.3s;

    box-sizing:border-box;

    font-family:inherit;
}

.input-group input{
    height:54px;
}

.input-group textarea{

    resize:none;

    min-height:150px;

    padding-top:15px;
}

.input-group input::placeholder,
.input-group textarea::placeholder{

    color:#9b9b9b;

}

/*====================================
CAPTCHA
====================================*/

.captcha-box{

    margin-bottom:20px;

}

/*====================================
BUTTON
====================================*/

.submit-btn{

    background:#5ac864;

    color:#fff;

    border:none;

    padding:12px 30px;

    font-size:20px;

    cursor:pointer;

    transition:.3s;

    border-radius:4px;

    font-weight:600;

    font-family:inherit;

}

.submit-btn:hover{

    background:#198754;

    transform:translateY(-2px);

}


/*=========================================
PRODUCT DESCRIPTION
=========================================*/

.machine-description-section{
    width:100%;
    padding:0 100px;
    background:#f5f5f5;
}

.machine-description-container{

    max-width:1250px;
   padding-bottom: 10px;
    margin:0 auto;

}

/*==============================
HEADING
==============================*/

.machine-description-container h2{

    font-size:30px;

    color:#111;

    line-height:1.1;

    font-weight:700;

    margin-bottom:10px;

}

/*==============================
SUB HEADINGS
==============================*/

.machine-description-container h3{

    font-size:25px;

    color:#111;

    margin-top:20px;

    margin-bottom:10px;

    font-weight:700;

}

/*==============================
PARAGRAPH
==============================*/

.machine-description-container p{

    font-size:16px;

    color:#232323;

    line-height:28px;

    margin-bottom:10px;

    text-align:justify;

}

/*==============================
RED TEXT
==============================*/

.machine-description-container span{

    color:#c31612;

    font-weight:700;

}

.machine-description-container strong{

    color:#111;

    font-weight:700;

}

/*==============================
ORDER LIST
==============================*/

.machine-description-container ol{

    padding-left:28px;

    margin-top:10px;

}

.machine-description-container ol li{

    margin-bottom:10px;

    color:#232323;

    font-size:16px;

    line-height:28px;

}

.machine-description-container ol li strong{

    display:block;

    margin-bottom:8px;

    font-size:18px;

}

.machine-description-container ol li p{

    margin:0;

    color:#232323;

}

/*==============================
UNORDER LIST
==============================*/

.machine-application-list{

    padding-left:28px;

    margin-top:10px;

    margin-bottom:10px;

}

.machine-application-list li{

    font-size:16px;

    color:#232323;

    margin-bottom:10px;

    line-height:28px;

}

/*==============================
HOVER
==============================*/

.machine-description-container h3{

    transition:.3s;

}

.machine-description-container h3:hover{

    color:#c31612;

}


/*==================================================
PRODUCT DETAILS RESPONSIVE - PART 1
==================================================*/

/* ---------- 1200px ---------- */

@media (max-width:1200px){

    .machine-details-section,
    .machine-description-section{
        padding:40px;
    }

    .machine-details-container{
        grid-template-columns:45% 55%;
        gap:30px;
    }

}


/* ---------- 992px ---------- */

@media (max-width:992px){

    .machine-details-section,
    .machine-description-section{
        padding:35px 25px;
    }

    .machine-details-container{
        grid-template-columns:1fr;
        gap:35px;
    }

    .machine-details-image{
        max-width:650px;
        width:100%;
        margin:auto;
    }

    .machine-details-image img{
        width:100%;
        height:auto;
        display:block;
    }

    .machine-details-content h2{
        font-size:30px;
    }

    .machine-details-content h4{
        font-size:20px;
        line-height:1.5;
    }

}


/* ---------- 768px ---------- */

@media (max-width:768px){

    .machine-details-section,
    .machine-description-section{
        padding:25px 18px;
    }

    .machine-details-container{
        display:block;
    }

    .machine-details-image{
        width:100%;
        margin-bottom:25px;
        border-radius:10px;
        overflow:hidden;
    }

    .machine-details-image img{
        width:100%;
        height:auto;
        display:block;
        transform:none !important;
    }

    .machine-details-content h2{
        font-size:25px;
        line-height:1.4;
    }

    .machine-details-content h4{
        font-size:17px;
        line-height:1.6;
        margin-bottom:18px;
    }

    /* TABLE */

    .machine-table-box{
        width:100%;
        overflow-x:auto;
        overflow-y:hidden;
        -webkit-overflow-scrolling:touch;
    }

    .machine-table-box table{
        min-width:720px;
    }

    .machine-table-box th,
    .machine-table-box td{
        white-space:nowrap;
        font-size:14px;
        padding:10px;
    }

    /* FORM */

    .form-row{
        display:block;
    }

    .form-row .input-group{
        width:100%;
    }

    .input-group input,
    .input-group textarea{
        font-size:15px;
    }

    .submit-btn{
        width:100%;
    }

    /* DESCRIPTION */

    .machine-description-container{
        width:100%;
        max-width:100%;
    }

    .machine-description-container h2{
        font-size:24px;
        line-height:1.5;
    }

    .machine-description-container h3{
        font-size:20px;
        line-height:1.5;
    }

    .machine-description-container p,
    .machine-description-container li{
        font-size:15px;
        line-height:28px;
        text-align:left;
    }

    .machine-description-container ol,
    .machine-application-list{
        padding-left:20px;
    }

}


/* ---------- 576px ---------- */

@media (max-width:576px){

    .machine-details-section,
    .machine-description-section{
        padding:20px 15px;
    }

    .machine-details-content h2{
        font-size:22px;
    }

    .machine-details-content h4{
        font-size:16px;
    }

    .machine-description-container h2{
        font-size:22px;
    }

    .machine-description-container h3{
        font-size:19px;
    }

    .machine-description-container p,
    .machine-description-container li{
        font-size:14px;
    }

    .machine-table-box table{
        min-width:680px;
    }

}


/* ---------- 375px ---------- */

@media (max-width:375px){

    .machine-details-content h2{
        font-size:20px;
    }

    .machine-details-content h4{
        font-size:15px;
    }

    .machine-description-container h2{
        font-size:20px;
    }

    .machine-description-container h3{
        font-size:18px;
    }

}


 .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;
}

/* 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;

}

}