﻿.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar-collapse {
    transition: height 0.3s ease-in-out;
    overflow: hidden;
}
.brand-container {
    display: inline-flex;
    align-items: center;
    width: 230px;
    background-color: white;
    border-radius: 25px;
    padding-left: 7px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.brand-name {
    display:inline-block;
    font-size: 15px;
    text-align:center;
}
/*homepage*/
/* Flip Card Styles */
.flip-card {
    perspective: 1000px;
    width: 300px; /* Adjust width as needed */
    height: 200px; /* Adjust height as needed */
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.5s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.flip-card-front {
    background-color: white; /* Front side background color */
}

.flip-card-back {
    background-color: #272828; /* Back side background color */
    color: white;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.flip-card-back a {
        color: white;
        text-decoration: none;
}

.flip-card-back img {
        max-width: 80%;
        max-height: 80%;
}
/* End Flip Card Styles */
/* Corner Design */
.corner-design {
    position: relative;
    overflow: hidden;
}

    .corner-design img {
        width: 100%;
        height: 80%;
    }

    .corner-design:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-top: 5px solid blue; /* Adjust size and color as needed */
        border-right: 15px solid transparent;
        border-bottom: 5px solid blue;
        border-left: 15px solid transparent;
    }
/* Corner Design  end*/
/* clints design*/

.wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 25px;
    display: flex;
    align-content: center;
    justify-content: center;
    gap: 24px;
    transition: transform 0.5s ease-in-out;
}

.card {
    position: relative;
    width: 200px;
    height: 300px;
    background: #000;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
}
.card-img-overlay {
    align-items: center;
    text-align: center;
}
.card-img-name {
    backdrop-filter: blur(16px) saturate(120%);
    border-radius: 20px;
    margin-left:auto;
    margin-right:5px;
    font-family:Segoe UI;
    font-weight:500;
}
.poster {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .poster::before {
        content: '';
        position: absolute;
        bottom: -45%;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        transition: .3s;
    }

.card:hover .poster::before {
    bottom: 0;
}

.poster img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s;
}

.card:hover .poster img {
    transform: scale(1.1);
}

.details {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: auto;
    padding: 1.5px 10px 2px 10px;
    background: #000a;
    backdrop-filter: blur(16px) saturate(120%);
    transition: .3s;
    color: #fff;
    z-index: 2;
}

.card:hover .details {
    bottom: 0;
}

.details h1 {
    font-size: 22px;
    margin-bottom: 5px;
    font-weight: 700;
}

.details .desc {
    color: #fff;
    opacity: .8;
    line-height: 1.5;
    margin-bottom: 1px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden; /* Ensure the content doesn't overflow */
    background-color: transparent;
}

.tparrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tp-leftarrow {
    left: 10px;
}

.tp-rightarrow {
    right: 10px;
}

.tparrows.visible {
    visibility: visible;
    opacity: 1;
}

/*clints design end*/
/* Basic container styling */
.item img{
    width:200px;
    height:100px;
}
.slides{
    display:flex;
}
/*Imm call*/
/* General Styles */

.CALL {
    background-color: #2c3e50; /* Dark background color */
    padding: 10px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

.btnSumbit {
    color: #ffffff; /* White text color */
    background-color: #e74c3c; /* Red background color */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

    .btnSumbit:hover {
        background-color: #c0392b; /* Darker red on hover */
    }


.btn {
    color: #ffffff; /* White text color */
    background-color: #e74c3c; /* Red background color */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

    .btn:hover {
        background-color: #c0392b; /* Darker red on hover */
    }

@media (max-width: 750px) {
    .btn {
        display: block;
        margin: 10px 0;
    }
    .btnSumbit {
        display: block;
    }
}

/*footer*/
.foot {
    content: "";
    position: absolute;
    left: 0;
    height: 1px;
    width: 100%;
    background: #afafb6;
}

footer .content {
    max-width: 1250px;
    margin: auto;
    padding: 10px 40px 0px 40px;
}

    footer .content .top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 10px;
        background-color:white;
        border-radius:25px;
        padding:2px 5px;
        margin:10px 0px;
    }

.content .top .logo-details {
    color: #fff;
    font-size: 30px;
}

.content .top .media-icons {
    display: flex;
}

    .content .top .media-icons a {
        height: 40px;
        width: 40px;
        margin: 0 8px;
        border-radius: 50%;
        text-align: center;
        line-height: 40px;
        color: #fff;
        font-size: 19px;
        text-decoration: none;
        transition: all 0.4s ease;
    }

.top .media-icons a:nth-child(1) {
    background: #4267b2;
}

    .top .media-icons a:nth-child(1):hover {
        color: #4267b2;
        background: #fff;
    }

.top .media-icons a:nth-child(2) {
    background: #28a745;
}

    .top .media-icons a:nth-child(2):hover {
        color: #28a745;
        background: #fff;
    }

.top .media-icons a:nth-child(3) {
    background: #e1306c;
}

    .top .media-icons a:nth-child(3):hover {
        color: #e1306c;
        background: #fff;
    }

.top .media-icons a:nth-child(4) {
    background: #000;
}

    .top .media-icons a:nth-child(4):hover {
        color: #000;
        background: #fff;
    }

.top .media-icons a:nth-child(5) {
    background: #ff0000;
}

    .top .media-icons a:nth-child(5):hover {
        color: #ff0000;
        background: #fff;
    }

.top .media-icons a:nth-child(6) {
    background: #28a745;
}

    .top .media-icons a:nth-child(6):hover {
        color: #28a745;
        background: #fff;
    }

.top .media-icons a:nth-child(7) {
    background: #D93025;
}

    .top .media-icons a:nth-child(7):hover {
        color: #D93025;
        background: #fff;
    }

footer .bottom-details {
    width: 100%;
    background: #2e2748;
}

    footer .bottom-details .bottom_text {
        max-width: 1250px;
        margin: auto;
        padding: 20px 40px;
        display: flex;
        justify-content: space-between;
    }

.bottom-details .bottom_text span,
.bottom-details .bottom_text a {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
}

    .bottom-details .bottom_text a:hover {
        opacity: 1;
        text-decoration: underline;
    }

.bottom-details .bottom_text a {
    margin-right: 10px;
}

@media (max-width: 900px) {
    footer .content .link-boxes {
        flex-wrap: wrap;
    }

        footer .content .link-boxes .input-box {
            width: 40%;
            margin-top: 10px;
        }
}

@media (max-width: 700px) {
    footer {
        position: relative;
    }

    .content .top .logo-details {
        font-size: 26px;
    }

    .content .top .media-icons a {
        height: 35px;
        width: 35px;
        font-size: 14px;
        line-height: 35px;
    }

    .bottom-details .bottom_text span,
    .bottom-details .bottom_text a {
        font-size: 12px;
    }
}

@media (max-width: 520px) {
    footer::before {
        top: 145px;
    }

    footer .content .top {
        flex-direction: column;
    }

    .content .top .media-icons {
        margin-top: 16px;
    }
}
/*home page end*/
/*product*/

.product {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .5);
    overflow: hidden;
    padding: 20px;
    align-content:center;
    align-items:center;
    justify-content:space-around;
}

    .product img {
        height: 250px;
        width: 300px;
        object-fit: cover;
        margin-right: 20px;
    }

.product-details {
    display: flex;
    flex-direction: column;
}
    .product-details .btn {
        color: #ffffff;
        background-color: #e74c3c;
        padding: 10px 20px;
        text-decoration: none;
        border-radius: 20px;
        transition: background-color 0.3s ease;
        text-align: center;
        max-width: 900px;
        margin-top: 10px;
    }

        .product-details.btn:hover {
            background-color: #c0392b;
        }

.product h3 {
    margin-top: 0;
}

.product ul {
    list-style-type: disc;
    padding-left: 20px;
}

.product h4 {
    margin-bottom: 10px;
}

.product p {
    margin-bottom: 20px;
}
/*diesealgenerator*/
.iws-table {
    width: 100%;
    border-collapse: collapse;
    padding: 20px;
    align-content: center;
    align-items: center;
    display: flex;
    justify-content:center;
    background-color:white;
    border-radius:25px;
}


    .iws-table th, .iws-table td {
        padding: 12px;
        text-align: left;
        border: 1px solid #ddd;
    }

    .iws-table th {
        background-color: #f4f4f4;
    }

        .iws-table th[colspan="2"] {
            text-align: center;
            font-weight: bold;
        }

/*diesealgenerator end*/
/* Global Styles */

.containerD {
    margin: auto;
    padding: 20px;
    max-width: 1200px;
}

/* Button Styles */
.btn10 {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 15px 20px;
    font-size: 16px;
    text-align: center;
    border-radius: 5px;
    color: #fff;
    background-color: #0cb4cf;
    transition: background-color 0.3s ease;
}


    .btn10:hover {
        background-color: #6CFFD3;
        text-decoration: none;
        color: #fff;
    }

/* Advantage and Feature Styles */
.advantages, .construction {
    margin-bottom: 30px;
}

.advantage h5, .feature h5 {
    color: #000;
    font-weight:550;
    margin-top:5px
}

.advantage p, .feature p {
    color: #333;
}


th, td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

th {
    background-color: #f8f8f8;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}
/*samp*/

#scene {
    display: flex;
    align-items: center;
    justify-content: left;
    width: auto;
    height: auto;
    min-height: 400px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    overflow: hidden;
    background-image: url(Imgs/download1bg.png);
}

#left-zone {
    background: #fff;
    background-image: url(Imgs/download1bg.png);
    height: 75%;
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: left;
}

input[type="radio"] {
    display: none;
}

    input[type="radio"]:checked + label {
        opacity: 1;
        animation: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
    }

        input[type="radio"]:checked + label + .contentD {
            animation-duration: 0.75s;
            animation-name: slidein;
            animation-fill-mode: forwards;
            animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
        }

label {
    display: block;
    opacity: 0.5;
    height: 50px;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
}

    label:hover {
        opacity: 0.75;
    }

.label_strawberry {
    color: #d64541;
    border-right: solid 4px #d64541;
}

.label_banana {
    color: #f5d76e;
    border-right: solid 4px #f5d76e;
}

.label_apple {
    color: #00b16a;
    border-right: solid 4px #00b16a;
}

.label_orange {
    color: #f27935;
    border-right: solid 4px #f27935;
}

.contentD {
    margin-top: 360px;
    height: 385.6px;
    position: absolute;
    left: 160px;
    top: -2500px;
    width: auto;
    min-width: 150px;
    max-width: inherit;
    padding: 0px;
    box-sizing: border-box;
    background-image: url(Imgs/download1bg.png); 
    border: 1px solid #ddd;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    display: none;
    align-items: center;
    flex-direction: column;
    overflow-y: auto;
    border-radius: 25px;
}

input[type="radio"]:checked + label + .contentD {
    display: flex;
}

#middle-border {
    background-color: #eee;
    height: 75%;
    max-width: 2px;
    z-index: 0;
}

#right-zone {
    background: #fff;
    height: 100%;
    flex-grow: 3;
}

@keyframes slidein {
    0% {
        top: -400px;
        opacity: 0;
    }

    100% {
        opacity: 1;
        top: 0px;
    }
}

@keyframes slideout {
    0% {
        top: 0;
        opacity: 1;
    }

    100% {
        top: -400px;
        opacity: 0;
    }
}
/*samp2*/
.selectionator {
    position:relative;
    display:block;
  /*
  &:before {
  content: "";
  background-color: transparent;
  width: 100%;
  height: 2.5em;
  position: absolute;
  background-image: linear-gradient(top, #000, rgba(0,0,0,0));
}
  */
}
    .selectionator .search {
        position: relative;
        display: block;
        border: 0px;
        outline: none;
        box-sizing: border-box;
        transform-style: preserve-3d;
        transform-origin: 50% 0%;
        transition: transform 0.3s;
        z-index: 99;
        color: #fff;
        perspective: 800px;
        background-color: #242834;
        border-radius: 25px;
        height: auto;
        min-height: 50px;
        width: auto;
        padding: 0 0px 0 10px;
        font-family: montserrat;
        align-content: center;
        margin: 5px auto;
    }
.selectionator .search .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0;
  border-radius:17px;
}
.selectionator .search .shadow {
  position: absolute;
  height: 15px;
  width: 100%;
  left: 0;
  bottom: -15px;
  transform-origin: center bottom;
  transform: scale(0.95, 1) translate3d(0, 0px, 0);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
}
.selectionator .search:before {
  content: "\f078";
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
  float: right;
  vertical-align: middle;
  margin-right:20px;
}
.selectionator:hover .search,
.selectionator.opened .search {
  transform: rotate3d(1, 0, 0, 60deg);
}
.selectionator:hover .search .overlay,
.selectionator.opened .search .overlay,
.selectionator:hover .search .shadow,
.selectionator.opened .search .shadow {
  opacity: 1;
}
.selectionator:hover .menu,
.selectionator.opened .menu {
  height: 200px;
  opacity: 1;
  top: 0;
}
    .selectionator .menu {
        position: relative;
        width: 95%;
        top: 0;
        left: 15px;
        overflow: hidden;
        height: 0px;
        border-radius: 0 0 20px 20px;
        background-color: #242834;
        transition: all 0.3s ease;
        opacity: 0;
        border: 1px solid #0000ff;
        border-top: none;
    }
.selectionator ul.list {
  list-style: none;
  padding: 0px;
  margin: 0px;
  overflow: hidden;
  overflow-y: scroll;
  height: 0px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: all 0.3s ease;
  opacity: 0.75;
  width: 100%;
  height: 100%;
}
.selectionator ul.list > li span.header {
  display: block;
  padding: 6px;
  background-color: #34495e;
  font-weight: 200;
  color: #fff;
}
.selectionator ul.optgroup {
  list-style: none;
  padding: 0px;
  margin: 0px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}
.selectionator ul.optgroup li:hover {
  background-color: #16a085;
  color: #fff;
}
.selectionator ul.optgroup li input[type="checkbox"] {
  display: none;
  margin: 6px;
}
.selectionator ul.optgroup li input[type="checkbox"]:checked {
  background-color: #1abc9c;
}
.selectionator ul.optgroup li input[type="checkbox"]:checked ~ label {
  background-color: #2980b9;
  color: #fff;
}
.selectionator ul.optgroup li input[type="checkbox"]:checked ~ label:before {
  content: "\f14a";
}
.selectionator ul.optgroup li label {
  font-weight: 100;
  display: block;
  padding-left: 15px;
  line-height: 1.5em;
  transition: all 0.3s ease;
}
.selectionator ul.optgroup li label:before {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  margin-right: 8px;
  vertical-align: middle;
}


img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);