

:root {
    --white-color: white;
    --blue-color: rgb(48 173 228);
    --yellow-color: rgb(245 178 35);
    --black: #333333;
    --bg-pink: #f8f8f8;
    --bg-light-white: #f8f8f8;
    --bg-light-blue: #f4f6ff;
}
* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Urbanist", sans-serif !important;
    box-sizing: border-box;
}
.text-yellow
{
    color:var(--yellow-color);
}
.text-white{
    color:var(--white-color);
}
.text-blue{
    color:var(--blue-color);
}
.bg-1{
    background-color:var(--bg-light-white);
}
.bg-2{
    background-color:var(--bg-pink);
}
.bg-3 {
    background-color:var(--bg-light-blue);
}
.br-10{
    border-radius:0px;
}
.fs-18
{
    font-size:18px !important;
}
.fs-34
{
   font-size:34px;
   color:var(--blue-color);
}
.btn-hover:hover {
    background-color: var(--white-color) !important;
    color: var(--blue-color) !important;
}
.hover-blue:hover{
    color:var(--blue-color);
    cursor
        :pointer;
}

.section-spacing {
    padding: 80px 0px;
}
.pt-80
{
    padding-top:80px;
}
p {
   
    opacity: .9;
   line-height:1.6;
    font-size: 17px;
}
a{
    text-decoration:none!important ;
    color:unset;
}
img{
    width:100%;
    height:auto;
    border-radius:0px;
}

.form-control
{
    border-radius:0px !important;
}
.main-title {
    font-size: 52px;
    line-height: 58px;
    font-weight: 700;

}
.title-2 {
    font-size: 40px;
    color: var(--black);
    font-weight: 700;
    margin-bottom:20px;
}
.title-3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom:10px;
}
.text-hover-underline:hover
{
    text-decoration:underline !important;
}
.product-img-box img {
    transition: .3s ease-in-out;
}
.product-img-box {
    overflow: hidden;
}
.product-img-box:hover img{
    transform:scale(1.1);

}
.product-img-box {
    position: relative;
    overflow: hidden;
}
    .product-img-box:hover::before {
        left: 125%;
    }
.product-img-box:before {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);
    transition-duration: .5s;
}
header {
    position: relative;
}

.navbar {
    background: white;
    
}



.sticky-navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: background-color 0.3s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}



.sticky-navbar {
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 1030;
}

.navbar-toggler-icon {
    filter: grayscale(100%) invert(1);
}

.navbar .nav-item a {
    margin: 0px 14px;
    color:var(--black);
    z-index:1;
}

.navbar .nav-item .active {
        color: var(--yellow-color);
}

.navbar .nav-item .nav-link {
    color: var(--black);
    font-size: 18px;
}

    .navbar .nav-item .nav-link:hover {
        color: var(--yellow-color);
        font-size: 18px;
    }

.navbar .navbar-btn {
    background-color: var(--blue-color) !important;
    border-radius: 0px;
    padding: 10px 30px;
    color: var(--white-color) !important;
    transition: all 0.3s ease;
}


    .navbar .navbar-btn:hover {
        background-color: var(--white) !important;
        color: var(--blue-color) !important;
        border: 2px solid var(--blue-color) !important;
    }



.navbar .navbar-brand img {
    width:250px;
    height: auto;
    object-fit: contain;
}

/*banner section css starts from here*/

.banner-section {
    position: relative;
    /*height: 100vh;*/
    background-image: url('../images/banner-image.png');
  /*  background-image: url('../images/archidply-new-banner/6.webp');*/
    background-size: cover; /* fills the screen neatly */
    background-position: center; /* centers the image */
    background-repeat: no-repeat; /* removes tiling */
    background-attachment: scroll; /* or "fixed" if you want parallax */
    color: white;
    padding: 13% 0PX;
  
}

    .banner-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.65); /* 0.25�0.55 depending on how dark you want */
    /*    background: rgba(0, 0, 0, 0.45);*/
        z-index: 1;
    }


    .banner-section > * {
        position: relative;
        z-index: 2;
    }

.container-content-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
        
}
.new-style1 {
    font-size: 22px !important;
    font-style: italic;
    position: relative;
    
}
.EnquiryForm {
    width: 90%;
    margin-left: auto;
    background: white;
    background: #e7eef7;

    background-color: #eef4fb;
    padding: 20px 25px;
    border-radius: 0px;
    color: black;
}
.EnquiryForm {
    width: 90%;
    margin-left: auto;
    background-color: #eef4fb;
    padding: 25px 30px;
    border: 1px solid #dbe6f3; /* soft border */
    border-radius: 0px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    color: #222;
}

.enquiry-submit {
    background-color: var(--blue-color) !important;
    border-color: var(--blue-color) !important;
    border-radius:0px !important;
}
/*endof the hero section */

/*about us section css starts from here*/

/*endof aboutus section css*/
.product-desciption {
    background-image: url('../images/banner-product-desc.png');
    background-position:centerl;
    background-size:cover;
    background-repeat:no-repeat;
  
}
.desc-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    background-color: var(--blue-color);
   /*background-color:var(--bg-light-blue);*/
    max-height: 150px;
   
    padding: 25px;
    border-radius: 0px;
    color: var(--white-color);
   /*color:var(--black);*/
    width:90%;
    margin:0 auto;
    margin-top:20px;
}
.icon-wrap i {
    color: #FFD700;
}
.desc-box .img {
    margin-top: -100px;
}

.product-content p
{
    font-weight:600;
}

.desc-box .img img {
    width: 300px;
    height: auto;
}
.product-desc a{
    color:var(--black);
}

.product-card img {
    width: 100%;
    border-radius: 0px;
    object-fit: cover;
}
/* Swiper Navigation Buttons */
.swiper-buttons {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.swiper-button-prev,
.swiper-button-next {
    position: static !important;
    width: 40px;
    height: 20px;
    margin: 0;
    border-radius: 0px;
    color: white;
    padding: 20px;
    background:var(--blue-color);
 
}

    .swiper-button-prev:after,
    .swiper-button-next:after {
        display: none;
    }

   
 /*   .swiper-button-prev:before {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        content: "\f053";
        font-size: 16px;
        color: white;
    }

    .swiper-button-next:before {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        content: "\f054";
        font-size: 16px;
        color: white;
    }*/
    .swiper-button-prev i,
    .swiper-button-next  i{
       
        font-size: 16px;
        color: white;
    }

 
    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        background: var(--white-color);
        border:1px solid var(--blue-color);
        border-color:var(--blue-color);
    }
        .swiper-button-prev:hover i,
        .swiper-button-next:hover i {
            color: var(--blue-color) !important;
        }


        .ms-2 {
            margin-left: 0.5rem;
        }


.fas {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

/*end-of our-product-css*/
.benifit-box {
    border: 1px solid #f0f0f0;
    transition :0.5s ease;
}
    .benifit-box:hover {
        transform: translateY(-10px);
       
    }
    .why-use-content-box {
        margin-left: -50px;
        border-radius: 0px;
    }
.applicability-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
}

    .applicability-grid li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    .applicability-grid i {
        font-size: 28px;
        color: var(--blue-color);
        flex-shrink: 0;
       
    }

    .applicability-grid h4 {
        margin: 0 0 4px;
        font-size: 16px;
        font-weight: 600;
    }

    .applicability-grid p {
        margin: 0;
        font-size: 14px;
        line-height: 1.5;
        opacity: .9;
    }

.fqa-section .accordion-button {
    font-weight: 600;
}

    .fqa-section .accordion-button:not(.collapsed) {
        background-color: #f4f6ff;
        color: var(--blue-color);
    }

.fqa-section .accordion-item {
    border: none;
    border-bottom: 1px solid #e2e2e2;
    overflow: hidden;
    margin-bottom: 10px;
}
.accordion-button:focus {
    z-index: 3;
    outline: 0;
     box-shadow: none !important; 
}
.accordion-item:last-of-type
{
    border-radius:0!important;
}
accordion-header {
    border-radius: 0px !important;
    border: none !important;
}
.footer {
    background: #dfedf3;
    padding: 60px 0 10px;
    color: var(--black)
}
/*.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    gap: 50px;
}*/

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
    color: black;
}

.footer-logo-img img{
    width:250px;
    padding-bottom:20px;
}
.footer-description {
    line-height: 1.7;
   color:var(--black);
    margin-bottom: 25px;
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
}

    .social-links a {
        width: 40px;
        height: 40px;
        background:var(--black);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ffffff;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        text-decoration:none;
    }

        .social-links a:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-3px);
            color: var(--black);
        }
.address-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
    color:black;
}

.address-icon {
    width: 40px;
    height: 40px;
 /*   background: rgba(255, 255, 255, 0.15);*/
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color:black;
}
.address-content p {
    color: var(--black);
    line-height: 1.6;
    font-size: 14px;
}

.address-content a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}

    .address-content a:hover {
        color: var(--blue-color);
    }
.quick-links {
    list-style: none;
    padding-left:0px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
}

    .quick-links li {
        margin-bottom: 12px;
    }
    .quick-links a {
        color: var(--black);
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

        .quick-links a:before {
            content: "\2192";
            opacity: 1;
         
            transition: all 0.3s ease;
        }

        .quick-links a:hover {
            color: var(--blue-color);
            padding-left: 10px;
        }

            .quick-links a:hover:before {
                opacity: 1;
                transform: translateX(0);
            }

/* Footer Bottom */
.footer-bottom {
    max-width: 1200px;
    margin: 0px auto 0;
    padding: 25px 20px 0;
    border-top: 1px solid #d6d6d6ad;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    color: var(--blue-color);
    font-weight: 700;
}
    .footer-bottom a {
        text-decoration: none;
        color: var(--blue-color);
    }

    .footer-bottom .nextwebi {
        color: rgb(245 178 35);
        text-decoration: none;
        font-weight: 600;
    }




@media (max-width: 768px) {
    .applicability-grid {
        grid-template-columns: 1fr;
    }
}


/*responsive css starts from here*/
@media (max-width: 1599px) {
    /* for screen 1440px  */
}

@media (max-width: 1439px) {
    /* for screen 1366px  */
    .who-choose .img-box img{
        height:100%;
    }
}

@media (max-width: 1365px) {
    /* for screen 1200px  */
}

@media (max-width: 1199px) {
    /* for screen 992px  */
    .desc-box 
    {
        max-height:175px;
    }
}

@media (max-width: 991px) {
    /* for screen 768px  */
    .main-title {
        font-size: 42px;
        line-height: 58px;
        font-weight: 700;
    }

    .title-2 {
        font-size: 30px;
        color: var(--black);
        font-weight: 700;
        margin-bottom: 20px;
    }

    .title-3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    .EnquiryForm {
        margin-left: 0;
        width:100%;
    }
    .form-container
    {
        margin-top:30px;
    }
    .content-box 

    {
        margin-top:20px;
    }
    .desc-box 
    {
        flex-direction:column;
        max-height:200px;
    }
    .desc-box .img{
        display:none;
    }
        .desc-box
        {
           max-height:max-content;
        }
        .why-use-content-box {
            margin-left: 0px;
        }
    .icon-wrap
    {
        margin-bottom:10px;
    }
    .footer-column {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    /* for screen 576px  */
    .navbar .navbar-brand img 
    {
        width:200px;
    }
    }

@media (max-width: 576px) {
    /* for screen mobile  */
    .navbar .navbar-brand img {
        width: 150px;
    }
    p{
        line-height:1.5;
    }
    .main-title {
        font-size: 32px;
       line-height:1.5;
        font-weight: 700;
        
    }

    .title-2 {
        font-size: 24px;
        color: var(--black);
        font-weight: 700;
        margin-bottom: 20px;
        line-height:1.5;
    }

    .title-3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px;
        line-height: 1.5;
    }
    .below-content.mt-4
    {
        margin-top:0px !important;
    }
    .section-spacing {
        padding: 40px 0px;
    }
    .my-5.why-use-content-box
    {
    margin-top:20px !important;
    margin-bottom:10px !important;
    }
    .banner-section::before {
  
        background: rgba(0, 0, 0, 0.65);
        
    }
    .footer-bottom p{
        font-size:14px;
    }
}
.logo img{
  width: 250px;
  height: 75px !important;
  margin-left: -264px;
  object-fit: contain;
}