@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');


*{
    --steelblue-1: #0082C7;
    --steelblue-2: #0272AF;
    --steelblue-3: #0069A1;
    --steelblue-4: #006094;
    --steelblue-5:#004C76;
    --gray-1:#848D90;
    /* fonts */
    /* font-style:; */
    /* font-family: 'Times New Roman', Times, serif; */
    /* font-family: 'Open Sans', sans-serif;
    font-weight: 600; */
    /* font-family:  Poppins; */
    font-family: 'Poppins', sans-serif;
    font-weight: 400;

}
.bg-white{
    background-color: white !important;
}
.bg-smoke{
    background-color:#F8FAFB !important;
}
.bg-steelblue{
    background-color: #0082C7 !important;
}
.bg-gray{
    background-color:#848D90 !important;
}
.bg-black{
    background-color: black !important;
}
.text-white{
    color: white !important;
}
.text-smoke{
    color: #F4F4F4 !important;
}
.text-steelblue{
    color: #0082C7 !important;
}
.text-gray{
    color:#848D90 !important;
}
.text-black{
    color: black !important;
}






.text-color{
    color: black ;

}

.section-heading{
    color: black;
    text-align: center;
    font-size: 28px;
    /* background-color: black; */
    /* background: none; */
    /* background: black; */
}
.text-color-black{
    color: black;
}
.text-color-grey{
    color: rgb(99,110,113);
}
.text-h6{
    font-size: 10px;
}
.text-h5{
    font-size: 13px;
}
.text-h4{
    font-size: 16px;
}
.text-h3{
    font-size: 19px;
}
.text-h2{
    font-size: 22px;
}
.text-h1{
    font-size: 35px;
}
.text-center{
    text-align: center;
}
.text-bold{
    font-weight: bold;
}
.text-decoration-none{
    text-decoration: none;
}
.mt-0{
    margin-top: 0px;
}
.mb-0{
    margin-bottom: 0px;
}
.mb-2{
    margin-bottom: 5%;
}
.flex{
    display: flex;
}
.justify-content-center{
    justify-self: center;
}
.align-items-center{
    align-items: center;
}
.gap-2{
    gap: 5px;
}
.gap-3{
    gap: 7.5px;
}

.invisible-scrollbar::-webkit-scrollbar {
    width: 0px; /* Set the width of the vertical scrollbar */
    height: 0px; 
    /* Set the height of the horizontal scrollbar */
    }

.homepage-our-collection-img{
    height: 500px;
    width: 600px;
}



.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    z-index: 1;
    height: 50px;
    width: 50px;
  }
  
  .scroll-btn:hover {
    background: rgba(0,0,0,0.8);
  }
  
  .scroll-btn.left-0 {
    left: 5px;
  }
  
  .scroll-btn.right-0 {
    right: 5px;
  }



#my-nav {
    /* background: #fff; */
    /* background-color: rgb(237,240,241); */
    background-color: white;
    padding: 8px 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    /* width: 100%; */
    z-index: 10;
    padding-left: 0px;
    width: 100vw;
    color: black !important;
    /* padding-left: 10%; */
    /* background-color: red; */
    /* padding-right: 20%; */
}

.logo {
    width: 120px;
    height: 120px;
    position: absolute;
    z-index: 1;
    /* background-color:rgb(237,240,241); */
    background-color: white;
    border: solid;
    /* border-color: var(--steelblue-1); */
    border-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    top: 15%;
    overflow: hidden;
    left: 2%;
    
}
.logo a{
    background-color: green;
    margin: auto;
    width: 100%;
    height: 100%;
    /* margin-top: 35%; */
}

.logo img {
    width: 80%;
    height: 80%;
    margin: auto;
}

.search-container {
    position: relative;
    margin: 0 20px;
    flex-grow: 1;
    max-width: 400px;
    margin-left: 15%;
}

.search-container input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    height: 40px;
}
#searchInput{
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    height: 40px;
}
.search-icon{
    display: none;
}

.search-dropdown {
    position: absolute;
    top: 10px;
    padding-top: 40px;
    left: 0;
    width: 99%;
    background-image: linear-gradient(rgb(237,240,241),white);
    border: 1px solid transparent;
    border-top: none;
    border-radius: 0 0 5px 5px;
    display: none;
    z-index: 1000;
    max-height: 350px;
    overflow: hidden;
    overflow-y: scroll;
   
    border-top-left-radius: 20px;
    /* border-top-right-radius: 20px; */
    border-top-right-radius: 20px !important;

}

/* Chrome, Edge, Safari scrollbar styling */
.search-dropdown::-webkit-scrollbar {
    width: 0px !important;               /* scrollbar width */
  }
  
  .search-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;       /* track background */
    border-radius: 10px;
  }
  
  .search-dropdown::-webkit-scrollbar-thumb {
    background: #b3b3b3;       /* scrollbar color */
    border-radius: 10px;
  }
  
  .search-dropdown::-webkit-scrollbar-thumb:hover {
    background: #888;          /* hover color */
  }
  
  /* Firefox scrollbar styling */
  .search-dropdown {
    scrollbar-width: thin !important;             /* "auto" or "thin" */
    scrollbar-color: #b3b3b3 #f1f1f1;  /* thumb and track color */
  }

.search-dropdown.active {
    display: block;
}
.suggestion-item{
    /* background-color: red; */
    /* margin-top: 8px; */
    padding-left: 10px;
    padding-right: 5px;
    border-bottom: solid;
    border-width: 1px;
    border-color: rgba(128, 128, 128, 0.538);
    cursor: pointer;
    /* margin-top: 8px; */
    padding-bottom: 10px;
    padding-top: 10px;
}
.suggestion-item:hover{
    background-color: rgb(180, 178, 178);
}
.search-dropdown a {
    padding: 10px;
    display: block;
    color: #333;
    text-decoration: none;
}

.search-dropdown a:hover {
    background: #f5f5f5;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: 8%;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    position: relative;
    padding: 5px;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown:hover .arrow-icon{
    transform: rotate(180deg);
}
.dropdown-content a {
    padding: 10px;
    display: block;
    /* cursor: pointer; */
}
.dropdown-content span{
    padding: 10px;
    display: block;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 30px;
    margin-right: 10px;
    /* background-color: red; */
}

.sidebar {
    position: fixed;
    top: 0;
    /* right: -300px; */
    /* left: -300px; */
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    /* background-color: red; */
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
    transition: 0.3s;
    z-index: 1001;
    padding: 20px;
    display: none;
}

.sidebar.active {
    display: block;
    right: 0;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    font-size: 24px;
}


.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    /* left: 50%; */
    /* top: 50%; */
    /* transform: translate(-50%,-50%); */
    /* padding: 5%; */
}

.popup-form {
    background-color: white;
    /* background-color: red; */
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-height: 80vh;
    max-width: 500px;
    position: absolute;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.form-header {
    text-align: center;
    margin-bottom: 10px;
}

.form-header h2 {
    color: #0066cc;
    margin-bottom: 5px;
}

.form-header img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 8px;
    /* background-color: blue; */
}

.form-group label {
    display: block;
    margin-bottom: 2px;
    color: #333;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 96%;
    padding: 8px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    transition: border-color 0.3s;

}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0066cc;
    outline: none;
}

.error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #0066cc;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #0052a3;
}

.catalogue-download-form-box{
    overflow-y: auto;
}
@media (max-width: 968px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .search-container {
        max-width: 300px;
    }

    .sidebar .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 50px;
    }

    .sidebar .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
        padding-left: 20px;
    }

    .sidebar .dropdown.active .dropdown-content {
        display: block;
    }
}



@media (max-width: 768px) {
    .popup-form {
        padding: 20px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px;
    }
}
@media (max-width: 768px) {
    .input-form {
        width: 50%;
        /* Full width on smaller screens */
    }

    .catalogueForm {
        width: 100%;
        height: 80vh;
    }

    .modalContent {
        width: 90%;
    }

    .modal-title {
        font-size: 18px;
    }

    .form-label {
        font-size: 12px;
    }

    .catalogue-form-control {
        height: 18px;
    }

   

}


  /* Nested Dropdown */
  .nested-dropdown {
    position: relative;
  }

  .nested-dropdown-content {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: white;
    min-width: 180px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    max-height: 300px;
    overflow: scroll;

    /* margin-left: 5%; */
  }

  .nested-dropdown:hover .nested-dropdown-content {
    display: block;
  }

  .nested-dropdown a {
    display: block;
    padding: 10px;
    color: black;
  }

  .nested-dropdown-content a:hover {
    /* background: #f1f1f1; */
    background-color: var(--steelblue-1);
    color: white;
  }
  #location-path-container{
    /* background-color: red; */
    /* margin-top: 5%; */
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 20px;
    margin-top: 1%;
    margin-bottom: 1%;
    /* color: var(--gray-1); */

  }
  #location-path-container img{
    width: 25px;
    height: 25px;
    /* color: var(--gray-1); */
   
  }
  .products{
    display: flex ;
    justify-content: space-between;
    align-items: center;
    /* background-color: red; */
    margin-bottom: 5px;
    flex-direction: row;
    margin-top: 0px;
    color: black;
    padding-left: 10px;
    font-size: 16px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .products:hover{
    /* background-color: red; */
    /* background-color: rgb(239, 238, 238); */
    background-color: var(--steelblue-1);
    color: white;
    cursor: pointer;
    
  }
  .products:hover svg {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
    color: white;
    
  }
  
  .search-icon{
    display: block;
  }
  .search-container{
    margin-left: 30%;
    /* background-color: red; */
    float: right;
    /* overflow: hidden; */
    display: flex;
    gap: 5;
    /* background-color: red; */
    /* margin-left: 0px; */
    /* justify-content: start; */
    justify-content: end;

}
#searchInput{
    /* width: 99%; */
    width: 0px;
    display: none;
    height: 40px;
    margin: 0px;
    transition: all 1s;
    z-index: 100000;
    /* float: right; */
   
}
.search-icon{
    /* background-color: green; */
    display: block;
    float: right;
    display: flex;
    justify-items: center;
    align-items: center;
}
/* Extra Small Devices (Phones, less than 576px) */
@media (max-width: 575.98px) {
    .nested-dropdown-content{
        position:static;
        box-shadow: none;
        margin-left: 5%;

    }
    .logo{
        /* display: none; */
        width: 80px;
        height: 80px;
    }
    .search-container{
        margin-left: 30%;
        /* background-color: red; */
        float: right;
        /* overflow: hidden; */
        display: flex;
        gap: 5;
        /* background-color: red; */
        /* margin-left: 0px; */
        /* justify-content: start; */
        justify-content: end;

    }
    #my-nav{
        /* background-color: red; */
        /* justify-content: start; */

    }
    #searchInput{
        /* width: 99%; */
        width: 0px;
        display: none;
        height: 40px;
        margin: 0px;
        transition: all 1s;
        /* float: right; */
       
    }
    .search-icon{
        /* background-color: green; */
        display: block;
        float: right;
        display: flex;
        justify-items: center;
        align-items: center;
    }
}

/* Small Devices (Tablets, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .nested-dropdown-content{
        /* position: b; */
        position:static;
        box-shadow: none;
        margin-left: 5%;
        /* background-color: red; */
        
    }
    .search-container{
        margin-left: 30%;
    }
  
}

/* Medium Devices (Desktops, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .nested-dropdown-content{
        /* position: b; */
        position:static;
        box-shadow: none;
        margin-left: 5%;
        /* background-color: red; */
        
    }
    .search-container{
        margin-left: 30%;
    }
    

}

/* Large Devices (Large Desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  
}

/* Extra Large Devices (Extra Large Desktops, 1200px and up) */
@media (min-width: 1200px) {
   
}




#logo-png{
    height: 50px;
}


#customer-support{
    display: flex;
    gap: 4%;
    justify-content: space-evenly;
    /* padding:0 5% 0 5%; */
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 1%;
    padding-top: 1%;
    /* background-color: var(--gray-1); */
    background-color:rgb(237,240,241) !important;
    /* font-size: 10px !important; */
  }
  #customer-horizontal-line{
    background-color: var(--steelblue-1);
    height: 2px;
    width: 30%;
    transition:all 1s;
  }
  #customer-support :hover #customer-horizontal-line{
    /* background-color: var(--steelblue-1); */
    width: 90%;
  }
  #customer-support div:nth-child(1){
    border-left-style: solid;
    padding-left: 5%;
  }
  #customer-support div{
    /* width: ; */
    border: solid;
    border-style: none;
    border-right-style: solid;
    border-color: rgb(185, 185, 185);
    padding-right: 2%;
  }
  #customer-support div h2{
    margin-top: 0px;
  }
  #customer-support div span{
    color: var(--steelblue-3);
  }
  
  @media (max-width: 575.98px) {
    #customer-support{
      display: block;
    }
    #customer-support div{
      border-style: none;
      border-right-style: solid;
      border-left-style: solid;
      padding-left: 5%;
    }
    #customer-support div:nth-child(1){
      border-style: none;
      border-right-style: solid;
      border-left-style: solid;
    }

  }
  @media (min-width: 576px) and (max-width: 767.98px) {
    #customer-support{
      display: block;
    }
    #customer-support div{
      border-style: none;
      border-right-style: solid;
      border-left-style: solid;
      padding-left: 5%;
    }
    #customer-support div:nth-child(1){
      border-style: none;
      border-right-style: solid;
      border-left-style: solid;
    }

  }
  @media (min-width: 768px) and (max-width: 991.98px) {
  }
  @media (min-width: 992px) and (max-width: 1199.98px) {
  }
  @media (min-width: 1200px) {
 
}





.footer {
    background: linear-gradient(135deg, #1a1c20 0%, #2c3e50 100%);
    color: #fff;
    padding: 10px 0 20px;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
    overflow: hidden;
    padding-top: 0px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--steelblue-1),var(--steelblue-5));
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* padding: 0px; */
}

.footer-content {
    display: grid;
    grid-template-columns: 6fr 5fr;
    gap: 40px;
    margin-bottom: 50px;

}

.footer-about h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-about h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--steelblue-1);
}

.footer-about p {
    color: #b4b4b4;
    line-height: 1.8;
    margin-bottom: 20px;
}

.l-products-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.l-product-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.l-category-header {
    padding: 0px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.l-category-header:hover {
    background: rgba(255, 255, 255, 0.1);
}

.l-category-header h4 {
    font-size: 1.1em;
    color: #fff;
    /* background-color: red; */
    margin: 0px;
    padding: 0px;
    margin: 5px;
    padding: 5px;
}

.l-category-header .arrow {
    transition: transform 0.3s ease;
    color: white;
}

.l-category-header.active .arrow {
    transform: rotate(180deg);
}

.l-category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.l-category-content.active {
    max-height: 500px;
}

.l-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 15px 20px;
}

.l-product-link {
    color: #b4b4b4;
    text-decoration: none;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.l-product-link:hover {
    color: #00d2ff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.footer-contact {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
}

.footer-contact h4 {
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    /* background: #00d2ff; */
    background: var(--steelblue-1);
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #b4b4b4;
}

.contact-info svg {
    margin-right: 10px;
    min-width: 20px;
}

.newsletter-form {
    display: flex;
    margin: 20px 0;
    gap: 10px;
}

/* .newsletter-form input { */
    /* flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px;
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    color: #fff; */
/* } */
/* 
.newsletter-form button {
    padding: 12px 25px;
    border: none;
    background: #00d2ff;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
} */
/* 
.newsletter-form button:hover {
    background: #0099cc;
} */

.success-message {
    display: none;
    color: #00d2ff;
    margin-top: 10px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #b4b4b4 !important;
    font-size: 0.9em;
}
#durity-short-links{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    text-align: center;
    padding-bottom: 10px;

}
#durity-social-links{
    display: flex;
    /* justify-self: ; */
    justify-content: space-evenly;
    align-items: center;
    /* background-color: red; */
    
}
#durity-short-links a{
    color:rgb(180,180,180);
}
#footer-logo-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: solid;
    /* width: 100vw; */
    margin-bottom: 2%;
    /* background-color: green; */
    /* margin-left: 0px; */
    /* justify-content: center; */
    /* align-items: center; */
    /* gap: 10px; */
    /* margin-bottom: 20px; */
    padding-left: 2%;
    padding-right: 2%;
    background-color: white;
    color:rgb(35,44,55);
    padding-top: 18px;
    padding-bottom: 10px;
    /* padding-bottom: 5px; */
}
#footer-logo-section img{
    width: 150px;
}
#footer-logo-section div{
    /* width: 150px; */
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    color:var(--steelblue-4);
}
.footer-nav-vertical-line{
    /* height: 50px; */
background-color:rgb(180,180,180);;
width: 2px;
height: 35px;

}

@media (max-width:768px) {
    .footer-nav-vertical-line{
        display: none;
    }
}
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .products-section {
        grid-column: span 2;
        order: 3;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .products-section {
        grid-column: span 1;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}


.social-links{
    text-decoration: none;
    /* background-color: #035f94; */
    color: #035f94;
}