*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
}

/* Top Bar */

.shivam-topbar{
    background:#df0000;
    padding:12px 0;
}

.shivam-contact-info{
    display:flex;
    gap:10px;
    align-items:center;
}

.shivam-contact-info a,
.shivam-contact-info span{
    color:#fff;
    text-decoration:none;
    font-size:14px;
}

.shivam-contact-info i{
    margin-right:8px;
}

.shivam-social-links{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:10px;
}

.shivam-social-links span{
    color:#fff;
    font-size:14px;
}

.shivam-social-links a{
    width:36px;
    height:36px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
}

.shivam-social-links a:hover{
    background:#fff;
    color:#df0000;
}

/* Main Header */

.shivam-main-header{
    background:#fff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
}

.shivam-main-header .row{
    min-height:95px;
}






/* Mobile */

@media (max-width:991px){

    .shivam-contact-info{
        flex-direction:column;
        gap:10px;
        text-align:center;
        margin-bottom:15px;
    }

    .shivam-social-links{
        justify-content:center;
    }

    .shivam-logo-box{
        text-align:center;
        margin-bottom:15px;
    }

   
}





/* ==========================
   HERO SLIDER
========================== */

.shivam-hero-slider{
    position:relative;
}

.shivam-hero-slider .carousel-item{
    position:relative;
}

.shivam-hero-slider .carousel-item img{
    height:650px;
    object-fit:cover;
}

.shivam-slider-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.55);
}

.shivam-slider-content{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:10;
    max-width:650px;
    color:#fff;
}

.shivam-slider-content span{
    color:#d4a437;
    font-size:24px;
    font-weight:500;
    letter-spacing:1px;
}

.shivam-slider-content .one{
    font-size:90px;
    font-weight:700;
    line-height:1;
    margin:15px 0;
}

.shivam-slider-content .one strong{
    color:#e00000;
}

.shivam-slider-content p{
    font-size:24px;
    margin-bottom:35px;
}

.shivam-slider-btns{
    display:flex;
    gap:20px;
}

.shivam-btn-primary{
    background:#e00000;
    color:#fff;
    padding:15px 35px;
    text-decoration:none;
    border-radius:4px;
    font-weight:600;
}

.shivam-btn-primary:hover{
    color:#fff;
}

.shivam-btn-outline{
    border:2px solid #fff;
    color:#fff;
    padding:15px 35px;
    text-decoration:none;
    border-radius:4px;
    font-weight:600;
}

.shivam-btn-outline:hover{
    background:#fff;
    color:#000;
}

.carousel-indicators{
    bottom:30px;
}

.carousel-indicators button{
    width:12px !important;
    height:12px !important;
    border-radius:50%;
}

/* Mobile */

@media(max-width:991px){

    .shivam-hero-slider .carousel-item img{
        height:500px;
    }

    .shivam-slider-content{
        text-align:center;
        left:15px;
        right:15px;
    }

    .shivam-slider-content .one{
        font-size:48px;
    }

    .shivam-slider-content p{
        font-size:18px;
    }

    .shivam-slider-btns{
        flex-direction:column;
    }

}

.shivam-products-section{
    padding:80px 0;
    background:#f8f8f8;
}

.shivam-section-title{
    text-align:center;
    margin-bottom:40px;
}

.shivam-section-title .two{
    font-size:36px;
    font-weight:700;
    margin-bottom: .5rem;
}

.shivam-product-card{
    background:#fff;
  
    border-radius:8px;
    text-align:center;
    border:1px solid #eee;
    transition:.3s;
}

.shivam-product-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.1);
}

.shivam-product-card img{
    height:140px;
    width:auto;
    margin:auto;
    object-fit:contain;
}

.shivam-product-card a {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    display: block;
    padding: 6px 10px 7px 10px;
    background: #df0000;
}

.shivam-view-btn{
    background:#d60000;
    color:#fff;
    padding:14px 35px;
    display:inline-block;
    text-decoration:none;
    border-radius:4px;
    font-weight:600;
}

.shivam-view-btn:hover{
    color:#fff;
}

/* Arrows */

.shivam-product-slider .owl-nav{
    display:block !important;
}

.shivam-product-slider .owl-prev,
.shivam-product-slider .owl-next{
    position:absolute;
    top:40%;
    width:45px;
    height:45px;
    border-radius:50% !important;
    background:#fff !important;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.shivam-product-slider .owl-prev{
    left:-25px;
}

.shivam-product-slider .owl-next{
    right:-25px;
}

.shivam-product-slider .owl-prev span,
.shivam-product-slider .owl-next span{
    font-size:30px;
    line-height:35px;
}

/*==============================
 WHY CHOOSE SECTION
===============================*/

.shivam-whychoose-section{
    background:#021b46 url('images/pattern.png');
    background-size:cover;
    padding:70px 0;
    position:relative;
}

.shivam-why-title{
    text-align:center;
    margin-bottom:50px;
}

.shivam-why-title .two{
    color:#fff;
    font-size:42px;
    font-weight:700;
    margin:0;
    margin-bottom: .5rem;
}

.shivam-why-title span{
    color:#e31b23;
}

.shivam-why-box{
    text-align:center;
    padding:20px 15px;
    border-right:1px solid rgba(255,255,255,.15);
    height:100%;
    transition:.4s;
}

.shivam-last-box{
    border-right:none;
}

.shivam-why-box i {
    font-size: 30px;
    color: #d6a64f;
    margin-bottom: 20px;
    width: 65px;
    height: 65px;
    background: white;
    line-height: 65px;
    border-radius: 50%;
}

.shivam-why-box:hover i{
    background-color: #d6a64f;
    color: #fff;

}

.shivam-why-box .four{
    color:#fff;
    font-size:20px;
    font-weight:600;
    margin-bottom:12px;
}

.shivam-why-box p{
    color:#d7d7d7;
    font-size:15px;
    line-height:26px;
    margin:0;
}

.shivam-why-box:hover{
    transform:translateY(-8px);
}



/* Responsive */

@media(max-width:991px){

    .shivam-why-title .two{
        font-size:30px;
    }

    .shivam-why-box{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,.15);
        margin-bottom:20px;
    }

    .shivam-why-box i{
        font-size:45px;
    }

    .shivam-why-box .four{
        font-size:18px;
    }

}

/*=========================
 ESTABLISHED SECTION
=========================*/

.shivam-about-section {
    padding: 80px 0;
    background: #e3e3e378;
    overflow: hidden;
}

.shivam-about-content{
    padding-right:30px;
}

.shivam-est-text{
    color:#d81f26;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    display:block;
    margin-bottom:15px;
}

.shivam-about-content .two{
    font-size:35px;
    font-weight:700;
    color:#111;
    line-height:1.2;
    margin-bottom:25px;
}

.shivam-about-content .two span{
    color:#d81f26;
}

.shivam-about-content p{
    color:#555;
    line-height:32px;
    font-size:16px;
    margin-bottom:35px;
}

.shivam-counter-row{
    margin-bottom:35px;
}

.shivam-counter-box{
    text-align:center;
}

.shivam-counter-box i{
    font-size:40px;
    color:#777;
    margin-bottom:12px;
}

.shivam-counter-box .four{
    font-size:34px;
    font-weight:700;
    color:#111;
    margin-bottom:5px;
}

.shivam-counter-box span{
    color:#666;
    font-size:14px;
}

.shivam-about-btn{
    background:#d81f26;
    color:#fff;
    padding:15px 35px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    border-radius:4px;
    font-weight:600;
    transition:.3s;
}

.shivam-about-btn:hover{
    background:#111;
    color:#fff;
}

.shivam-about-image{
    position:relative;
}

.shivam-about-image img{
    width:100%;
    border-radius:0 0 0 120px;
    object-fit:cover;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}
/*==========================
 CUSTOM MADE SECTION
===========================*/

.shivam-custom-section{
    padding:70px 0;
    background:#fff;
}

.shivam-custom-title{
    text-align:center;
    margin-bottom:50px;
}

.shivam-custom-title .two{
    font-size:42px;
    font-weight:700;
    color:#111;
    margin-bottom:15px;
}

.shivam-custom-title span{
    width:60px;
    height:3px;
    background:#d71920;
    display:block;
    margin:auto;
    position:relative;
}

.shivam-custom-title span:before{
    content:'';
    width:10px;
    height:10px;
    background:#d71920;
    border-radius:50%;
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
}

.shivam-custom-box{
    text-align:center;
    padding:15px 25px;
    border-right:1px dashed #d9d9d9;
    height:100%;
}

.shivam-no-border{
    border-right:none;
}

.shivam-custom-icon{
    width:85px;
    height:85px;
    margin:auto auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.shivam-custom-icon i{
    font-size:50px;
    color:#d71920;
}

.shivam-custom-box .four{
    font-size:22px;
    font-weight:600;
    margin-bottom:15px;
    color:#111;
}

.shivam-custom-box p{
    font-size:16px;
    line-height:28px;
    color:#666;
    margin:0;
}

.shivam-custom-box:hover .shivam-custom-icon{
    transform:translateY(-8px);
    transition:.4s;
}
.shivam-custom-section{
    padding:80px 0;
    background:#050505;
    position:relative;
}

.shivam-custom-title .two{
    color:#fff;
}

.shivam-custom-title span{
    background:#d71920;
}

.shivam-custom-box{
    text-align:center;
    padding:15px 25px;
    border-right:1px dashed rgba(255,255,255,0.15);
    height:100%;
}

.shivam-custom-box .four{
    color:#fff;
    font-size:22px;
    font-weight:600;
    margin-bottom:15px;
}

.shivam-custom-box p{
    color:#cfcfcf;
    font-size:16px;
    line-height:28px;
}

.shivam-custom-icon i{
    color:#d71920;
    font-size:52px;
}

.shivam-custom-box:hover{
    transform:translateY(-8px);
    transition:.4s;
}



.shivam-no-border{
    border-right:none;
}
.shivam-custom-title span{
    color:#d71920;
}

/*==========================
 CUSTOM MADE SECTION
===========================*/

.shivam-custom-section{
    padding:70px 0;
    background:#fff;
}

.shivam-custom-title{
    text-align:center;
    margin-bottom:50px;
}

.shivam-custom-title .two{
    font-size:42px;
    font-weight:700;
    color:#111;
    margin-bottom:15px;
}

.shivam-custom-title span{
    width:60px;
    height:3px;
    background:#d71920;
    display:block;
    margin:auto;
    position:relative;
}

.shivam-custom-title span:before{
    content:'';
    width:10px;
    height:10px;
    background:#d71920;
    border-radius:50%;
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
}

.shivam-custom-box {
    text-align: center;
    padding: 15px 25px;
    border-right: 1px dashed #d9d9d9;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.shivam-no-border{
    border-right:none;
}

.shivam-custom-icon{
    width:85px;
    height:85px;
    margin:auto auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.shivam-custom-icon i{
    font-size:50px;
    color:#d71920;
}

.shivam-custom-icon:hover i{
    color: red;
}

.shivam-custom-box .four{
    font-size:22px;
    font-weight:600;
    margin-bottom:15px;
    color:#111;
}

.shivam-custom-box p{
    font-size:16px;
    line-height:28px;
    color:#666;
    margin:0;
}

.shivam-custom-box:hover .shivam-custom-icon{
    transform:translateY(-8px);
    transition:.4s;
}

/*=========================
 OUR GALLERY
==========================*/

.shivam-gallery-section{
    background:#021538;
    background-image:
    linear-gradient(rgba(2,21,56,.90),rgba(2,21,56,.90)),
    url('images/pattern-bg.jpg');
    background-size:cover;
    padding:60px 0;
}

.shivam-gallery-title{
    text-align:center;
    margin-bottom:30px;
}

.shivam-gallery-title .two{
    color:#fff;
    font-size:42px;
    font-weight:700;
    margin:0;
}

.shivam-gallery-title .two span{
    color:#e11b22;
}
.shivam-gallery-title .ss {
    color: #e11b22;
    width: 60px;
    height: 3px;
    background: #d71920;
    display: block;
    margin: auto;
    position: relative;
    margin-top: 15px;
}
.shivam-gallery-title .ss::after{

    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d71920;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

}



.shivam-gallery-item{
    display:block;
    overflow:hidden;
    position:relative;
}
.gallery-box {
    overflow: hidden;
      display:block;
    overflow:hidden;
    position:relative;
}
.gallery-box img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.5s;
}

.gallery-box:hover img{
    transform:scale(1.08);
}

.gallery-box::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.25);
    opacity:0;
    transition:.4s;
    z-index:1;
}

.gallery-box::before{
    opacity:1;
}

 .gallery-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
}
.gallery-box:hover .gallery-overlay {
    opacity: 1;
}
.shivam-gallery-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    border:1px solid rgba(255,255,255,.4);
    color:#fff;
    padding:12px 30px;
    text-decoration:none;
    border-radius:4px;
    font-weight:600;
    transition:.3s;
}


.shivam-gallery-btn:hover{
    background:#e11b22;
    border-color:#e11b22;
    color:#fff;
}
/*=========================
 TESTIMONIAL SECTION
=========================*/

.shivam-testimonial-section{
    padding:20px 0;
    background:#f8f8f8;
}

.shivam-testimonial-title{
    text-align:center;
    margin-bottom:50px;
}

.shivam-testimonial-title .two{
    font-size:40px;
    font-weight:700;
    color:#111;
    margin-bottom:15px;
}

.shivam-testimonial-title span{
    width:60px;
    height:3px;
    background:#d71920;
    display:block;
    margin:auto;
    position:relative;
}

.shivam-testimonial-title span:before{
    content:'';
    width:10px;
    height:10px;
    border-radius:50%;
    background:#d71920;
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
}

.shivam-testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:10px;
    display:flex;
    align-items:center;
    position:relative;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
    min-height:230px;
}

.shivam-client-img img{
    width:90px !important;
    height:90px;
    border-radius:50%;
    object-fit:cover;
}

.shivam-client-content{
    padding-left:25px;
}

.shivam-client-content .four{
    font-size:22px;
    font-weight:700;
    margin-bottom:5px;
}

.shivam-client-content span{
    color:#666;
    display:block;
    margin-bottom:12px;
}

.shivam-rating{
    color:#ffb400;
    margin-bottom:15px;
}

.shivam-client-content p{
    color:#555;
    line-height:28px;
    margin:0;
}

.shivam-quote{
    position:absolute;
    right:35px;
    top:50%;
    transform:translateY(-50%);
}

.shivam-quote i{
    font-size:70px;
    color:#efefef;
}

/* Dots */

.shivam-testimonial-slider .owl-dots{
    text-align:center;
    margin-top:30px;
}

.shivam-testimonial-slider .owl-dot span{
    width:12px;
    height:12px;
    background:#ccc !important;
}

.shivam-testimonial-slider .owl-dot.active span{
    background:#d71920 !important;
}

/*=========================
 FAQ SECTION
==========================*/

.shivam-faq-section{
    padding:35px 0;
    background:#f8f8f8;
}

.shivam-faq-title{
    margin-bottom:30px;
    text-align:center;
}

.shivam-faq-title .two{
    font-size:40px;
    font-weight:700;
    color:#111;
}

.shivam-faq-title span{
    color:#d71920;
}

.shivam-faq-accordion .accordion-item{
    border:none;
    margin-bottom:10px;
    border-radius:0;
    overflow:hidden;
}

.shivam-faq-accordion .accordion-button{
    background:#fff;
    color:#111;
    font-weight:600;
    box-shadow:none;
    padding:18px 25px;
}

.shivam-faq-accordion .accordion-button:not(.collapsed){
    background:#d71920;
    color:#fff;
}

.shivam-faq-accordion .accordion-body{
    background:#fff;
    color:#555;
    line-height:28px;
}

.shivam-faq-image img{
    width:100%;
    border-radius:10px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}
@media(max-width:991px){

    .shivam-faq-section{
        padding:60px 0;
    }

    .shivam-faq-title .two{
        font-size:30px;
    }

    .shivam-faq-image{
        margin-top:40px;
    }

}
/*=========================
 NEWSLETTER
==========================*/

.shivam-newsletter-section{
    background:#d8181f;
    padding:20px 0;
}

.shivam-newsletter-content{
    display:flex;
    align-items:center;
    gap:15px;
}

.shivam-newsletter-content i{
    font-size:40px;
    color:#fff;
}

.shivam-newsletter-content .four{
    color:#fff;
    margin:0;
    font-size:22px;
}

.shivam-newsletter-content p{
    color:#fff;
    margin:0;
    font-size:14px;
}

.shivam-newsletter-form{
    display:flex;
}

.shivam-newsletter-form input{
    flex:1;
    height:55px;
    border:none;
    padding:0 20px;
    border-radius:4px 0 0 4px;
}

.shivam-newsletter-form button{
    background:#081a45;
    color:#fff;
    border:none;
    padding:0 35px;
    border-radius:0 4px 4px 0;
    font-weight:600;
}

/*=========================
 FOOTER
==========================*/

.shivam-footer {
    background: #02102f;
    color: #fff;
    padding-top: 73px;
}
/*
.shivam-footer .container{
    padding:70px 0;
}
*/
.shivam-footer-logo{
    max-width:180px;
    margin-bottom:20px;
}

.shivam-footer-widget .four{
    font-size:20px;
    margin-bottom:25px;
    color:#fff;
    font-weight: 500;
    line-height: 1.2;
}

.shivam-footer-widget p{
    color:#cfcfcf;
    line-height:28px;
}

.shivam-footer-widget ul{
    list-style:none;
    padding:0;
    margin:0;
}

.shivam-footer-widget ul li{
    margin-bottom:10px;
}

.shivam-footer-widget ul li a{
    color:#cfcfcf;
    text-decoration:none;
    transition:.3s;
}

.shivam-footer-widget ul li a:hover{
    color:#d8181f;
}

.shivam-footer-social{
    display:flex;
    gap:10px;
    margin-top:20px;
    margin-bottom: 20px;
}

.shivam-footer-social a{
    width:40px;
    height:40px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration: none;
}

.shivam-footer-social a:hover{
    background: #d71920;
}

.shivam-contact-list li{
    display:flex;
    gap:12px;
    color:#cfcfcf;
}

.shivam-contact-list i{
    color:#d8181f;
    margin-top:5px;
}

ul.bot-p {
    column-count: 2;
}
a.anchr-a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
}

.shivam-footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    padding:29px 0;
    color:#cfcfcf;
}
.shivam-footer-bottom p{
 margin: 0;
 text-align: center;
}

.shivam-footer-bottom p a{
   color: #fff;
}
.shivam-footer-bottom p a:hover{
   color: #d8181f;
}
.shivam-footer-widget img {
    background: #fff;
}


@media(max-width:567px){

    .shivam-contact-info {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    margin-bottom: 15px;
    display: grid;
    grid-template-columns: 3fr 2fr;
}
.shivam-product-slider .owl-prev, .shivam-product-slider .owl-next {
    position: absolute;
    top: 94%;
 
}
.shivam-product-slider .owl-next {
    right: 0px;
}
.shivam-product-slider .owl-prev {
    left: 0px;
}
.shivam-newsletter-form button {
    padding: 17px 41px;

    width: 100%;
}
.shivam-newsletter-form {
    display: block;
    margin-top: 10px;
}
.shivam-newsletter-form input {

    width: 100%;
}
.shivam-slider-content .one {
    font-size: 33px;
}
.shivam-products-section {
    padding: 40px 0;
   
}
.shivam-section-title h2 {
    font-size: 26px;

}
.shivam-why-title .two {
    font-size: 25px;
}
.shivam-whychoose-section {
 
    padding: 35px 0;
   
}
.shivam-why-title {

    margin-bottom: 24px;
}
.shivam-about-section {
    padding: 40px 0;
    
}
.shivam-about-content .two {
    font-size: 31px;

    margin-bottom: 15px;
}
.shivam-about-content {
    padding-right: 0;
}
.shivam-counter-box .four {
    font-size: 24px;

}
.shivam-about-content p {
    color: #555;
    line-height: 32px;
    font-size: 15px;
    margin-bottom: 13px;
    margin-top: 17px;
}
.shivam-custom-section {
    padding: 25px 0;

}
.shivam-custom-title {
   
    margin-bottom: 35px;
}
.shivam-custom-title .two {
    font-size: 25px;
 
}
.shivam-custom-box {
  
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.shivam-gallery-section {

    padding: 30px 0;
}
.shivam-gallery-title .two {

    font-size: 25px;

}
.shivam-testimonial-title .two {
    font-size: 25px;

}
.shivam-testimonial-card {
    padding: 13px;
    display: block;
    text-align: center;

}
.shivam-client-img {
    height: 100px;
    width: 100px;
    margin: auto;
}
.shivam-testimonial-slider .owl-dots {

    display: none;
}
.shivam-faq-section {
    padding: 12px 0 30px;
}

.shivam-faq-title .two {
    font-size: 25px;
}
.shivam-faq-accordion .accordion-button {
   
    padding: 18px 10px;
}
.shivam-faq-accordion .accordion-body {
    background: #fff;
    color: #555;
    line-height: 23px;
    font-size: 14px;
    text-align: justify;
}
.contact-form .two {
    font-size: 23px;
}
.shivam-footer {
   
    padding-top: 40px;
}
.shivam-footer-logo {
    max-width: 100%;
    margin-bottom: 20px;
    width: 100%;
}

.shivam-footer-bottom p {
    margin: 0;
    text-align: center;
    margin-bottom: 34px;
}


}

.quote-btnsd {
    background: #2b130f;
    color: white;
    padding: 10px 15px;
    margin: 0 5px;
    margin-top: 19px;
    display: inline-block;
    width: 45%;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
}
.quote-btnsd.bs {
    background-color: #25d366;
}

@media(max-width:567px){
.quote-btnsd {
    width: 100%;
}

}