@font-face {
    font-family: Poppins-Regular;
    src: url(../Fonts/Poppins-Regular.ttf);
}
@font-face {
    font-family: Poppins-Medium;
    src: url(../Fonts/Poppins-Medium.ttf);
}
@font-face {
    font-family: Poppins-Semibold;
    src: url(../Fonts/Poppins-Semibold.ttf);
}
@font-face {
    font-family: Poppins-Bold;
    src: url(../Fonts/Poppins-Bold.ttf);
}
@font-face {
    font-family: Poppins-Italic;
    src: url(../Fonts/Poppins-Italic.ttf);
}
@font-face {
    font-family: BebasNeue-Regular;
    src: url(../Fonts/BebasNeue-Regular.ttf);
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body{
    font-family: Poppins-Regular;
    background-color: #f2f2f2;
}

a, a:hover{
    text-decoration: none;
}


/* HEADER */

.top-bar{
    width: 100%;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 35px;
    background: #2e185f;
    z-index: 99;
}
.top-bar span{
    color: #fff;
}
.top-bar ul{
    list-style: none;
    display: flex;
    font-size: 12px;
}
.top-bar li{
    margin: 10px 15px;
}
.top-bar a{
    color: #fff;
}
.top-bar a:hover{
    color: #f8ab0f !important;
}

/* TOP NAVIGATION */

nav{
    top: 38px;
    position: fixed;
    width: 100%;
    background: #f2f2f2;
    padding: 0px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
    
}

nav a{
    color:#383636;
}
nav .active {
    color: #f8ab0f;
    background: none;
    font-family: Poppins-Bold;
}
nav a:hover{
    color: #f8ab0f !important;
}
.logo {
    flex: 1;
}
.logo a{
    display: flex;
}
.logo img{
    height: 140px;
    width: 270px;
    margin-top: -30px;
    margin-bottom: -20px;

}
.menu{
    display: flex;
    align-items: center;
    list-style: none;
}
.menu li{
    padding: 0px 10px;
    font-size: 16px;
    justify-content: center;
    font-family: Poppins-Bold;
    background-color: transparent;
}
.toggle{
    font-size: 30px;
    display: none;
    z-index: 90;
}

@media (max-width: 500px) {
    nav{
        display: block;
        position: relative;
        padding: 15px 20px;
    }
    .top-bar ul li a {
        display: block;
        position: relative;
        font-size: 10px;
    }
    .logo img{
        margin-top: 10px;
        margin-bottom: -10px;
        height: 80px;
        width: 150px;
    }
    .menu {
        display: none;
    }
    .menu li {
        margin-bottom: 10px;
    }
    .menu.active, .toggle{
        display: block;
    }
    .toggle{
        position: absolute;
        top: 45px;
        right: 20px;
    }
}
@media (max-width: 700px) {
    nav{
        display: block;
        position: relative;
        padding: 15px 20px;
    }
    .top-bar ul li a {
        display: block;
        position: relative;
        font-size: 10px;
    }
    .logo img{
        height: 80px;
        width: 150px;
    }
    .menu {
        display: none;
    }
    .menu.active, .toggle{
        display: block;
    }
}


/* Product Container */
.product-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  /*  margin: 20px; */
    padding: 20px;
   /* border: 1px solid #ccc; 
    border-radius: 8px; 
    background-color: #f2f2f2; */
}


.product-container2 {

    margin: 0px; 
    padding: 29px;
   /* border: 1px solid #ccc; 
    border-radius: 8px; 
    background-color: #f2f2f2; */
}

/* Product Image */
.product-image {
    flex: 1;
    min-width: 200px;
    max-width: 40%;
    margin-right: 20px;
    
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 3px;
   /* margin-left: 60px; */
}

/* Product Details */
.product-details {
    flex: 2;
    min-width: 300px;
    margin-top: 0px; /* to be revise */
}

.product-details { /*h2 */
    margin-bottom: 10px;
    font-size: 45px;
    color: #351E67;
}

.product-name {
    margin-bottom: 10px;
    font-size: 20px;
    color: #351E67;
    font-family: Poppins-Bold;
}

.product-type p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #383636;
     font-family: Poppins-Bold;
}

.type-value {
    margin-left: 85px;
    font-family: Poppins-Regular;
    font-size: 16px; /*bullet text */
}

.product-description p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #383636;
     font-family: Poppins-Bold;
}

.product-details ul {
    list-style-type: disc;
    padding-left: 20px;
    line-height: .9;
}

.product-description ul li { /* styling bullet section */
    margin-bottom: 8px;
    font-size: 16px;
    color: #383636;
    font-family: Poppins-Regular;
    
}

.inner-list {
    list-style-type: disc; /* Add bullets to the inner list */
    padding-left: 3px; /* Indent the inner list */
    margin-left: 30px;
    margin-top: 5px; /* Space between title and inner list */
    font-size: 16px;
    font-family: Poppins-Regular;
}

.inner-list-text {
    list-style-type: disc; /* Add bullets to the inner list */
    padding-left: 3px; /* Indent the inner list */
    margin-left: 90px;
    margin-top: 10px; /* Space between title and inner list */
    text-transform: none;
    line-height: 1.3;
}

.product-size p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #383636;
    font-family: Poppins-Bold;
}

.type-value-size {
    margin-left: 130px;
    display: block;
    font-size: 16px;
    font-family: Poppins-Regular;


}

.product-application p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #383636;
    font-family: Poppins-Bold;
}

.product-application ul {
    list-style-type: disc;
    padding-left: 20px;
    line-height: .9;
}

.product-application ul li { /* styling bullet section */
    margin-bottom: 8px;
    font-size: 16px;
    color: #383636;
    font-family: Poppins-Regular;
    
}



/* COLORS AVAILABLE */

.colors-available {
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

.colors-available p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #383636;
    font-family: Poppins-Bold;
}


.color-container {
    display: flex;
    justify-content: center; /* Center the items horizontally */
    margin-top: 20px;
    margin-left: 10px;
}

.color-item {
    display: flex;
    flex-direction: column; /* Arrange color box and text vertically */
    align-items: center;
    margin: 0 20px; /* Adjust spacing between color items */
}

.color-box {
    width: 30px;
    height: 30px;
    border-radius: 50%; /* Make the color box round */
    display: inline-block; /* Ensure it stays inline with the text */
    transition: all 0.3s ease; /* Smooth transition for size changes */
}

.color-box {
    background-color: black;
}

.color-container span {
    margin-top: 5px;
    color: black;
    font-size: 14px;
    text-transform: uppercase;
}

.other-products-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0px 120px;

}

/* SHOP LINK */


.shop-links {
    margin: -10px;
    color: #351E67;

}

.shop-links p {
    margin-bottom: 10px; /* Adjust spacing as needed */
    font-size: 18px;
    font-family: Poppins-Bold; 
    text-transform: uppercase;
}

.shop-links a {
    margin: 0 5px; /* Adjust spacing between icons as needed */
    display: inline-block; /* Ensure links are inline */
}

.shop-links img {
    width: 30px; /* Adjust size as needed */
    height: auto; /* Maintain aspect ratio */
}

.separator {
    width: 100%; /* Make the separator responsive */
    max-width: 1200px; /* Set the maximum width */
    height: 3px; /* Set the height to 3px */
    background-color: #383636; /* Adjust color as needed */
    margin: 10px auto; /* 50px margin-top and margin-bottom, auto for left and right margins */
}

.other-products {
    margin: 0px;
}

.other-products h2 {
    color: #351E67;
    text-align: left;
    font-family: Poppins-Bold; 
    font-size: 25px;
    text-transform: uppercase; 
}


/* product slider */

.slider-wrapper {
    position: relative;
    width: 90%; /* Set width for entire slider including buttons */
    margin: 0 auto; /* Center the slider */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -100px;
    margin-bottom: -100px;
}

.slider {
    overflow: hidden;
    width: 100%; /* Ensure slider is within bounds */
}

.ourProducts-container {
    display: flex;
    transition: transform 0.5s ease;
    width: calc(100% * 5.5 / 3); /* Set width to fit all products in one row, calculated to fit 6 items */
    padding-bottom: 100px;
    margin: 50px 0px;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.ourProducts-link {
    text-decoration: none; /* Remove default underline */
    color: inherit; /* Inherit text color */
    display: block; /* Ensure link wraps the entire content */
    width: 100%; /* Match the width of ourProducts-content */
    box-sizing: border-box;
    margin: 15px; /* Add margin for spacing */
}

.ourProducts-content {
    width: 100%;
    margin: 15px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 20px;
    cursor: pointer;
    padding-top: 10px;
    transition: .4s;
    background-image: url("../Images/Product-Details/products-bg.png");
}

.ourProducts-content:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16),
    0 3px 6px rgba(0, 0, 0, .23);
    transform: translate(0px, -8px);
}

.wireName {
    font-size: 25px;
    text-align: center;
    justify-content: center;
    color: #383636;
    margin-right: 10px;
}

.OPimages {
    width: 200px;
    height: 300px;
    text-align: center;
    margin: 0 auto;
    display: block;
}

.viewDetails {
    background: #3b2071;
    text-align: 24px;
    color: #fff;
    width: 100%;
    padding: 15px;
    border: 0;
    outline: none;
    cursor: pointer;
    margin-top: 5px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.viewDetails:hover {
    color: #f8ab0f;
}

button.prev, button.next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 8px 12px; /* Decrease padding for smaller buttons */
    cursor: pointer;
    font-size: 14px;
    z-index: 1;
    border-radius: 50%; /* Optional: makes the buttons circular */
}

button.prev {
    left: -60px;
}

button.next {
    right: -60px;
}


/*MEDIA QUERY */


/* Large devices (desktops, 1200px and up) */
@media (min-width: 1200px) {
    .product-container {
        flex-direction: row;
        max-width: 1200px;
        margin: 0px auto;
    }

    .shop-links {
        margin-top: 20px; /* Space between colors available and shop links */
        order: 4; /* Ensures shop links are after colors available */
    }

    

    .separator {
        width: 100%; /* Make the separator responsive */
        max-width: 1200px; /* Set the maximum width */
        height: 3px; /* Set the height to 3px */
        background-color: #383636; /* Adjust color as needed */
        margin: 10px auto; /* 50px margin-top and margin-bottom, auto for left and right margins */
    }


    .other-products-section {
        max-width: 1200px;
        margin: 0 auto;
    }
    


}

/* Medium devices (tablets, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .product-container {
        flex-direction: row;
    }

    .product-image {
        max-width: 45%;
    }

    .product-details {
        max-width: 55%;
    }
    .shop-links {
        margin-top: 20px; /* Space between colors available and shop links */
        order: 4; /* Ensures shop links are after colors available */
    }

    .separator {
        width: 100%; /* Make the separator responsive */
        max-width: 900px; /* Set the maximum width */
        height: 3px; /* Set the height to 3px */
        background-color: #383636; /* Adjust color as needed */
        margin: 50px auto; /* 50px margin-top and margin-bottom, auto for left and right margins */
    }

    .other-products-section {
        flex-direction: row;
    }
    
    .color-container {
        flex-wrap: wrap; /* Allow items to wrap to the next line */
    }

    .color-box, .color-box2, .color-box3, .color-box4, .color-box5, .color-box6 {
        width: 25px;
        height: 25px;
    }

    .color-item {
        margin: 0 10px;
    }

}

/* Small devices (landscape phones, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .product-container {
        flex-direction: row;
    }

    .product-image {
        max-width: 50%;
    }

    .product-details {
        max-width: 50%;
    }
    .shop-links {
        margin-top: 20px; /* Space between colors available and shop links */
        order: 4; /* Ensures shop links are after colors available */
    }

    .separator {
        width: 100%; /* Make the separator responsive */
        max-width: 700px; /* Set the maximum width */
        height: 3px; /* Set the height to 3px */
        background-color: #383636; /* Adjust color as needed */
        margin: 10px auto; /* 50px margin-top and margin-bottom, auto for left and right margins */
    }

    .other-products-section {
        flex-direction: row;
    }

    .color-container {
        flex-wrap: wrap; /* Allow items to wrap to the next line */
    }

    .color-box, .color-box2, .color-box3, .color-box4, .color-box5, .color-box6 {
        width: 25px;
        height: 25px;
    }

    .color-item {
        margin: 0 10px;
    }

    
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .product-container {
        flex-direction: column;
    }

    .product-image,
    .product-details {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .product-details ul {
        padding-left: 15px;
    }

    .product-details h2 {
        font-size: 20px;
    }

    .product-details ul li {
        font-size: 16px;
    }

    .other-products-section {
        flex-direction: column;
    }


    .shop-links {
        margin-top: 20px; /* Space between colors available and shop links */
        order: 4; /* Ensures shop links are after colors available */
    }

    .shop-links p {
        margin-bottom: 10px; /* Adjust spacing as needed */
        font-size: 18px;
        font-family: Poppins-Bold; 
        text-transform: uppercase;
        margin-left: 0px;
    }
    
    .shop-links a {
        margin: 0 5px; /* Adjust spacing between icons as needed */
        display: inline-block; /* Ensure links are inline */
    }
    
    .shop-links img {
        width: 30px; /* Adjust size as needed */
        height: auto; /* Maintain aspect ratio */
    }

    .separator {
        width: 100%; /* Make the separator responsive */
        max-width: 320px; /* Set the maximum width */
        height: 3px; /* Set the height to 3px */
        background-color: #383636; /* Adjust color as needed */
        margin: 10px auto; /* 50px margin-top and margin-bottom, auto for left and right margins */
    }

    .color-container {
        flex-wrap: wrap; /* Allow items to wrap to the next line */
    }

    .color-box, .color-box2, .color-box3, .color-box4, .color-box5, .color-box6 {
        width: 25px;
        height: 25px;
    }

    .color-item {
        margin: 0 10px;
    }



}



/* OUR PRODUCTS */

.slider-wrapper {
    position: relative;
    width: 70%; /* Set width for entire slider including buttons */
    margin: 0 auto; /* Center the slider */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -70px;
    margin-bottom: -70px;
}

.slider {
    overflow: hidden;
    width: 100%; /* Ensure slider is within bounds */
}

.ourProducts-link {
    text-decoration: none; /* Remove default underline */
    color: inherit; /* Inherit text color */
    display: block; /* Ensure link wraps the entire content */
    width: 100%; /* Match the width of ourProducts-content */
    box-sizing: border-box;
    margin: 15px; /* Add margin for spacing */
}
    
.ourProducts-container {
    display: flex;
    transition: transform 0.5s ease;
    width: calc(100% * 5.9 / 3); /* Set width to fit all products in one row, calculated to fit 6 items */
    padding-bottom: 100px;
    margin: 50px 0px;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.ourProducts-content {
    width: 100%;
    margin: 15px;
    box-sizing: border-box;
    float: center;
    text-align: center;
    border-radius: 20px;
    cursor: pointer;
    padding-top: 10px;
    /*box-shadow: 0 14px 28px rgba(0, 0, 0, .25),
    0 10px 10px rgba(0, 0, 0, .22);*/
   /* transition: .4s ease; */
    background-image: url("../Images/Home/products-bg.png");
}

.ourProducts-content:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16),
    0 3px 6px rgba(0, 0, 0, .23) !important;
    transform: scale(1.1) !important;

}

.wireName {
    font-size: 25px;
    text-align: center;
    justify-content:center;
    color:#383636;
    margin-right: 10px;
}

.OPimages {
    width: 200px;
    height: 300px;
    text-align: center;
    margin: 0 auto;
    display: block;
}



.viewDetails {
    background: #3b2071;
    text-align: 24px;
    color:#fff;
    width: 100%;
    padding: 15px;
    border: 0;
    outline: none;
    cursor: pointer;
    margin-top: 5px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}
.viewDetails:hover{
    color: #f8ab0f !important;
}

button.prev, button.next {
    position: absolute;
    top: 33%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 8px 12px; /* Decrease padding for smaller buttons */
    cursor: pointer;
    font-size: 14px;
    z-index: 1;
    border-radius: 50%; /* Optional: makes the buttons circular */
}

button.prev {
    left: -60px;
}

button.next {
    right: -60px;
}

@media (max-width: 992px) {
    .ourProducts-heading {
        font-size: 48px;
    }

    .ourProducts-tagline {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .ourProducts-heading {
        font-size: 40px;
    }

    .ourProducts-tagline {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .ourProducts-heading {
        font-size: 35px;
    }

    .ourProducts-tagline {
        font-size: 16px;
    }

    .ourProducts-container {
        flex-direction: row;
        width: 70%;
    }
}

/* View All Button Container */

.viewAllContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -120px;
    margin-bottom: 50px;
    text-align: center;
}

.viewAllButton {
    text-align: center;
    width: 23%;
    margin-top: 40px;
    padding: 10px 20px;
    color: #383636;
    border-radius: 5px;
    font-size: 20px;
    outline-color: #717171;
    outline-style: auto;
    cursor: pointer;
    transition: 0.3s ease;
}

.viewAllButton:hover {
    color: #fff;
    background-color: #3b2071 !important;
    transform: scale(1.1) !important;
}
@media (max-width: 600px) {
    .viewAllButton {
        width: 60%;
        margin-top: -20px;
        padding: 5px 10px;
        font-size: 14px;
    }
}





/* SCROLL TO TOP */

#myBtn {
    position: fixed;
    bottom: 120px;
    right: 20px;
    background-color: #f8ab0f;
    color: #fff;
    border: none;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    padding: 5px 15px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

#myBtn i {  
    font-size: 45px;
    text-align: center;
    color: #fff;
}

#myBtn:hover {
    transform: scale(1.03) !important;
}

/* Media Queries */

/* Medium devices (tablets, 992px and up) */
@media (max-width: 992px) {
    #myBtn {
        bottom: 100px;
        right: 15px;
        padding: 5px 12px;
        font-size: 16px;
    }

    #myBtn i {
        font-size: 40px;
    }
}

/* Small devices (landscape phones, 768px and up) */
@media (max-width: 768px) {
    #myBtn {
        bottom: 100px;
        right: 15px;
        padding: 5px 10px;
        font-size: 16px;
    }

    #myBtn i {
        font-size: 35px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 576px) {
    #myBtn {
        bottom: 80px;
        right: 10px;
        padding: 5px 8px;
        font-size: 14px;
    }

    #myBtn i {
        font-size: 30px;
    }
}



/* Contact Form Button */

/* Styles for the floating button */
.contact-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background:#1877F2;
    border: none;
    border-radius: 50%;  /* Circular button */
    padding: 12px;       /* Increase padding for size */
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-button i {
    font-size: 50px;  /* Icon size consistent with "Scroll to Top" */
    text-align: center;
    color: #fff;
}

.contact-button:hover {
    background-color: #9F33FF !important;
    transform: scale(1.03) !important;
}

/* Media Queries */

/* Medium devices (tablets, 992px and up) */
@media (max-width: 992px) {
    .contact-button {
        bottom: 15px;
        right: 15px;
        padding: 18px;
    }

    .contact-button i {
        font-size: 30px;
    }
}

/* Small devices (landscape phones, 768px and up) */
@media (max-width: 768px) {
    .contact-button {
        bottom: 10px;
        right: 10px;
        padding: 15px;
    }

    .contact-button i {
        font-size: 30px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 576px) {
    .contact-button {
        bottom: 10px;
        right: 10px;
        padding: 12px;
    }

    .contact-button i {
        font-size: 23px;
    }
}


/* FOOTER */

.footer {
    background-color: #3B2071;
    color: white;
    padding: 40px  0px 0;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
}

.footer-column {
    flex: 1 1 200px;
    margin: 10px 20px;
}

.footer-logo {
    max-width: 240px;
    margin-top: -32px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-column h3::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin: 5px 0;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    line-height: 1.7;
}

.footer-column ul li a:hover {
    color: #f8ab0f !important;
}

.footer-column hr {
    width: 240px;
    height: 3px;
    background-color: #fff;
}

.footer-column p {
    font-family: Poppins-Regular;
    font-style: italic;
    font-size: 14px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a img {
    width: 70px;
    height: 60px;
}

.footer-bottom {
    background-color: #f8ab0f;
    margin-top: 40px;
    bottom: 0;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9em;
    font-family: Poppins-Medium;
    color: #383636;
}