* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter';

}

:root {
    --blue: #5C9544;
    --orange: #E5CA4A;
    --white: #fff;
    --black: #000;
    --gray: #E7E8E8;
}



/* Headings */
.heading-1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
}

.heading-2 {
    font-size: 34px;
    font-weight: 700;
    line-height: 36px;

}

.heading-3 {
    font-size: 26px;
    font-weight: 700;
    line-height: 30px;
}

.heading-4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
}

.sub-heading-1 {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
}

.para-1 {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}

.btn-1 {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    border: none;
    background: none;
    cursor: pointer;
}

/* Download Button */
.btn-download {
    padding: 8px 30px;
    border-radius: 90px;
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: 0.3s ease;
    margin: 10px;

    font-family: "Inter";
    font-weight: 700;
    font-size: 15.09px;
    line-height: 22.63px;
    text-align: center;


}

.btn-download.orange {
    background-color: #5C9544;
}

.btn-download.orange:hover {
    background-color: var(--blue);
}

/* Submit Button */
.btn-submit {
    display: block;
    padding: 10px 30px;
    border-radius: 5px;
    border: none;
    color: var(--white);
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
    margin: 10px 0;
    width: 100%;
}

.btn-submit.orange {
    background-color: var(--blue);
}

.btn-submit.orange:hover {
background-color: var(--orange);
}

/* custom css start */



/* header start */


.navbar input[type="checkbox"],
.navbar .hamburger-lines {
    display: none;
}



.navbar {
    box-shadow: 0px 2px 8px 0px #0000001A;
    position: fixed;
    width: 100%;
    background: #fff;
    color: #000;
    opacity: 0.85;
    z-index: 100;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    height: 55px;
    align-items: center;
    padding: 0 60px;
    width: 100%;


}

.navbar-container  ul {margin-bottom: 0rem !important;}
.menu-items {
    order: 2;
    display: flex;
}

.logo {
    order: 1;
    font-size: 2.3rem;
}

.menu-items li {
    list-style: none;
    margin-left: 1.5rem;
    font-family: "inter";
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 24px;


}

.navbar a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

.navbar a:hover {
    color: var(--blue);
}

.navbar a:active {
    color: var(--blue);
}

@media (max-width: 768px) {
    .navbar {
        opacity: 0.95;
    }

    .navbar-container input[type="checkbox"],
    .navbar-container .hamburger-lines {
        display: block;
    }

    .navbar-container {
        display: block;
        position: relative;
        height: 64px;
    }

    .navbar-container input[type="checkbox"] {
        position: absolute;
        display: block;
        height: 32px;
        width: 30px;
        top: 20px;
        right: 20px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
    }

    .navbar-container .hamburger-lines {
        display: block;
        height: 28px;
        width: 35px;
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .navbar-container .hamburger-lines .line {
        display: block;
        height: 5px;
        width: 35px;
        border-radius: 10px;
        background: #F07C00;
    }

    .navbar-container .hamburger-lines .line1 {
        transform-origin: 0% 0%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar-container .hamburger-lines .line2 {
        transition: transform 0.2s ease-in-out;
    }

    .navbar-container .hamburger-lines .line3 {
        transform-origin: 0% 100%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar .menu-items {

        padding-top: 100px;
        background: #fff;
        height: 100vh;
     
        transform: translate(-150%);
        display: flex
;
        flex-direction: column;

        transition: transform 0.5s ease-in-out;

        overflow: scroll;
    }
    .navbar a {

    font-size: 26px;
}

    

    .navbar .menu-items li {
        margin-bottom: 1.8rem;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .logo {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 2.5rem;
    }

    .navbar-container input[type="checkbox"]:checked~.menu-items {
        transform: translateX(0);
    }

    .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line1 {
        transform: rotate(45deg);
    }

    .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line2 {
        transform: scaleY(0);
    }

    .navbar-container input[type="checkbox"]:checked~.hamburger-lines .line3 {
        transform: rotate(-45deg);
    }

}

@media (max-width: 500px) {
    .navbar-container input[type="checkbox"]:checked~.logo {
        display: none;
    }
}


/* header end  */

.custom-container-1 {
    padding: 0 100px;
}

.custom-container {
    padding: 0 100px;
}



/* counter strat */

.countdown-box-wrapper {
    background: #373535;
    border-radius: 2px;
    padding: 12px 20px;
    margin: 20px 0;
}

.time-box {
width: 40px;
    height: 40px;
    background: #e6e6e6;
    color: #000;
    border-radius: 2px;
    font-size: 20px;
    font-weight: bold;
    line-height: 24px;
    position: relative;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;                                                
}



.time-label {
    margin-top: 5px;
    font-size: 11px;
    color: var(--orange);
    font-weight: 600;
}


/* counter end */

.section-title {
    max-width: 750px;
    margin: 0 auto 35px;
}

.section-title h1 {
    font-family: "Inter";
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    text-align: center;
    color: var(--blue);

}

.section-title h2 {
    font-family: "Inter";
    font-weight: 700;
    font-size: 34px;
    line-height: 36px;
    text-align: center;
    color: var(--blue);
    text-transform: uppercase;

}


.lr-pra {
    font-family: "Inter";
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: #515151;

}


.top-margin-lr {
    padding-top: 60px;
}

.ltr-padding {
    padding: 50px 62px 40px;
}

.ltr-padding-top {
    padding: 60px 62px 0px;
}

.ltr--catalog-padding {
    padding: 54px 50px 54px;
}



/* ===========================
       LOGO SLIDER
=========================== */

.logo-slider {
    width: 100%;
    overflow: hidden;
    background: #fff;
    padding: 10px 0;
    position: relative;
}

.logo-track {
    display: flex;
    gap: 60px;
    width: 100%;
}

.logo-track img {
    height: 100px;
    flex-shrink: 0;
}


/* multi border */


.multi-border {
    display: flex;
    height: 39px;
    width: 100%;
}

.multi-border .blue {
    background: var(--blue);
    flex: 3;
}

.multi-border .white {
    background: #ffffff;
    flex: 0.2;
}

.multi-border .orange {
    background: var(--orange);
    flex: 1;
}



/*  */



.machine-card {
    text-align: center;
    margin-bottom: 30px;
    padding: 0 !important;
    margin: 0 !important;
}

.machine-card img {
    width: 90%;
    display: inline-block;
}

.machine-card h5 {
    margin-top: 12px;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #164578;
}

@media(max-width:768px) {

    .machine-card img {
        max-width: 100%;
    }
    .wel-mobile
{
        width: 255px;
}

    .machine-card h5 {
        font-size: 1rem;
    }
}


.ltr-padding-1 {
    position: relative;
}

.patti-wrapper {
    position: relative;

}

.img__bg {
    background: #fff;     
    display: inline-block; 
    padding: 15px 30px;            
}

.img__bg img {
    height: 50px;
   
    display: block;
}

/* ORANGE BASE */
.orange-patti {
    background: var(--blue);
    width: 85.6%;
    margin: 0 auto;
    padding: 20px 0rem 40px;
    position: relative;
}

/* BLUE LAYER */
.blue-patti {
    background: var(--orange);
    width: calc(100% + 106px);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    top: 2rem;
    z-index: 2;
    left: -3rem;
}

/* GRAY LAYER */
.gray-patti {
    background: var(--gray);
    width: calc(100% + 70px);
    margin: 0 auto;
    padding: 2rem 2rem 2rem 4.5rem;
    position: relative;
    top: -2rem;
    z-index: 3;
    left: -4rem;
}

.blue-patti-1 {
    background: var(--orange);
    width: calc(100% + 106px);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    top: 2rem;
    z-index: 2;
    left: -5rem;
}

/* GRAY LAYER */
.gray-patti-1 {
    background: var(--gray);
    width: calc(100% + 70px);
    margin: 0 auto;
       padding: 2rem 3.9rem 2rem 3rem;
    position: relative;
    top: -2rem;
    z-index: 3;
    left: 0rem;
}

/* Content inside gray */
.gray-patti h3 {
    color: var(--blue);
    font-weight: 700;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.gray-patti img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}



.marging-blr {
    margin-top: 80px !important;
}

/* Responsive fix */
@media (max-width: 768px) {



    .blue-patti {
        top: -1rem;
    }

    .gray-patti {
        top: -2rem;
    }
}


.custom-grid {
    padding: 30px;
}

.custom-grid .grid-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    display: block;
}






.product-title {
    font-weight: 700;
    color: #1f4b8e;
    text-align: center;
    margin-bottom: 10px;
}

.product-subtitle {
    text-align: center;
    color: #444;
    margin-bottom: 40px;
    font-size: 15px;
}

.product-card {
    border-radius: 10px;
    background: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 0;
    overflow: hidden;
    height: 100%;
}

.product-card img {
    width: 100%;
    /* height: 159px; */
    object-fit: contain;
    padding: 5px;
}

.product-card-body {
    text-align: center;
    padding: 10px 15px 10px;
}

.product-card-body h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;


    font-family: "Inter";
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #1F2937;
    text-align: center;


}

.product-download-btn {
    background-color: #f26522;
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    padding: 8px 30px;
}

.product-download-btn:hover {
    background-color: #d9531e;
    color: #fff;
}

.custom-gallery {
    padding: 0 10rem;
}







.footer {
    background: #111827;
    color: #ABCAFF;
    font-size: 14px;
    padding: 32px 0;

    font-family: "Inter";
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    text-align: center;


}

.footer a {
    color: #fff;
    text-decoration: none;
}

.container-fluid {
    padding: 0 3rem !important;
}


.contact-section {
    background-color: var(--arm-blue);
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;


  

    background-size: 15% 30%;
    background-repeat: repeat;
}


.contact-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    background-color: transparent;
    border-radius: 10px;
    overflow: hidden;
    padding: 20px 0;
}



.contact-info-block h2 {
    font-family: "Inter";
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    color: var(--white);

    margin-bottom: 0.5rem;
}

.contact-info-block p {
    font-family: "Inter";
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: var(--white);

    margin-bottom: 2rem;
}

.contact-info-block .details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-block .detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.contact-info-block .detail-item svg {
    fill: var(--white);
    width: 24px;
    height: 24px;
}

/* Right Column (Form) */
.contact-form-block {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


.contact-form-block h3 {
    text-align: center;
    color: var(--blue);
    font-family: "Inter";
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0%;
    text-align: center;


    margin-bottom: 1.5rem;
}

.detail-item span {
    color: #fff;
    width: 258;
    height: 30;
    top: 8213px;
    font-family: "Inter";
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;


    opacity: 1;

}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--arm-blue);
}

.form-group textarea {
    resize: vertical;
    height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--arm-orange);
    color: var(--text-light);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #d84f00;
}
.menu-logo{
    display: none;
}
.menu-logo-desk img{width: 40%;}
.menu-logo-desk{
    display: block;
}





 /* Hero Section */
        .hero {
         height: calc(100vh - 72px);
            background: linear-gradient(rgb(0 0 0 / 31%), rgb(0 0 0 / 43%)), url(hero.png);
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            padding: 0 20px;
        }

     .hero h1 {
    font-size: 40px;

    margin-bottom: 40px;
    line-height: 51px;
}
        .hero p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 2rem; color: var(--text-gray); }




.bg-overlay {     
    position: fixed;              
    top: 0;     
    left: 0;     
    width: 100%;     
    height: 100vh;     
    background-color: rgba(0, 0, 0, 0.5);      
    display: flex;     
    justify-content: center;     
    align-items: center;     
    z-index: 9999;   
}    

.loader {
    width: 60px;
    height: 60px;
    border: 6px solid #f3f3f3;
    border-top: 6px solid #E5CA4A;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}





@media (max-width: 768px) {
    .hero h1 {
        padding: 20px 0 0 0;
    font-size: 26px;
    margin-bottom: 40px;
    line-height: 37px;
}
         .hero {
         height: 100% !important;
         }

        }

/* Desktop Layout (Flexbox) */
@media (min-width: 768px) {
       
    .contact-container {
        flex-direction: row;

        border-radius: 10px;
    }

    .contact-info-block {
        flex: 1;

        background-color: transparent;
    }

    .contact-form-block {
        flex: 1;
        background-color: #fff;
        margin: 0 40px;
    }
}


@media (max-width: 580px) {
    .countdown-timer {
        position: absolute;
        bottom: 80% !important;
        left: 51%;
        padding: 9px 9px;
    }
}

@media (max-width: 400px) {
    .countdown-timer {
        position: absolute;
        bottom: 74% !important;
        left: 51%;
        padding: 9px 9px;
    }
}
@media (max-width:768px) {
  .multi-border {
    display: flex
;
    height: 15px;
    width: 100%;
}
    .orange-patti {
    background: var(--orange);
    width: 85%;
    margin: 0 auto;
    padding: 20px 0rem 0px;
    position: relative;
}
    .footer-wrap{
        display: flex;
        flex-direction: column;
    }
    .footer-wrap .footer-span{
        padding: 10px 0;
        border-bottom: 0.5px solid #ffffff8f;
        margin: 10px 0;
      
    }
    .container-fluid {
    padding: 0 15px !important;
}
     .btn-submit {margin: auto 0%;
    width: 100%;}
    .ltr--catalog-padding {
    padding: 54px 2px 45px;
}
    .machine-card img {
    width: 100%;

}
.custom-container-1 {
    padding: 0 0px;
}
.contact-info-block h2 {

    font-size: 26px;
    line-height: 28px;

}
.contact-info-block p

 {

    font-size: 16px;
    line-height: 18px;
    margin-bottom: 2rem;
}
.detail-item span {
 
    top: 8213px;

    font-size: 20px;
    line-height: 30px;

}
.contact-info-block .details {

    margin-bottom: 32px;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 0.75rem

}
.contact-form-block {

    padding: 35px;
    width: 100%;

}
.blue-patti {
        width: calc(100% + 20px);
        padding: 0 1.5rem;
        top: 0rem;
        left: 0rem;
    
}

    .gray-patti {
        width: calc(100% + 59px);
        padding: 1rem 1rem 3rem;
        top: -0.7rem;
        z-index: 3;
        left: -2.8rem;
    }
    .gray-patti-1 {
        width: calc(100% + 59px);
        margin: 0 auto;
    padding: 1rem 1rem 3rem;
        top: -0.7rem;
        left: -2.7rem;
    }
    .marging-blr {
    margin-top: 35px !important;
}
    .section-title {
    max-width: 750px;
    margin: 0 auto 30px;
}
    .section-title h2 {

    font-size: 22px;
    line-height: 26px;

}


.carousel-indicators [data-bs-target] {

    width: 16px !important;
    height: 16px !important;
background-color: #F07F1B !important;
    border-radius: 50% !important;
}

.carousel-indicators {

    bottom: -60px !important;

}
    .ltr-padding-crosule {
        padding: 25px 15px 69px !important;
    }
.carousel-item h5{
    margin-top: 15px;
    font-family: "Inter";
font-weight: 700;
font-size: 20px;
line-height: 24px;
text-align: center;
color: #164578;


}
    .menu-logo{
          display: block;
        z-index: -1;
        position: absolute;
        top: 10px;
}

    .ltr-padding {
        padding: 25px 15px 25px;
    }
    .menu-logo-desk{
          display: none;
        z-index: -1;
        position: absolute;
      
}
.logo-track {

    gap: 0px;
 
}
.logo-track img {
    height: 58px;

}
.menu-logo img{
        width: 149px;
}
.navbar-container {
padding: 0 0px;
        /* display: flex; */
        align-items: center;

}
    .custom-gallery {
        padding: 0 0rem;
    }
    .section-title h1 {
  
    font-size: 26px;
    line-height: 28px;
 
}
.top-margin-lr {
    padding-top: 38px;
}

.lr-pra {

    font-size: 16px;
    line-height: 18px;

}
    .custom-container {
        padding: 0 15px;
    }
}



@media (max-width:1220px) {
.countdown-timer {
    position: absolute;
    bottom: 60%;
    left: 80%;
}
.countdown-box {
  
    font-size: 30px;
    width: 60px;
    height: 60px;
}
}

@media (max-width:991px) {
    .countdown-box {
        font-size: 24px;
        width: 45px;
        height: 45px;
    }
}
@media (max-width:768px) {
.countdown-wrapper {
   
    padding: 100px 0 0;
}
.countdown-timer {

        position: absolute;
        bottom: 84%;
        left: 51%;
        padding: 9px 9px;
    
}



}