@import url("https://fonts.googleapis.com/css2?family=Muli&display=swap");

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









html, body {
  height: 100%;
  margin: 0;
  
 
}

body {
  display: flex;
  flex-direction: column;
  font-family: "Muli", sans-serif;
  background: #f5f5f5;
}

.main-content {
  flex: 1;
}

.product_container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}

.product_container .container {
  display: flex;
  gap: 10px;
}


.product_container .panel {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
  background-size: 305% 100%; 
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  flex: 0.5;
  position: relative;
  transition: flex 0.7s ease-in-out;
  overflow: hidden;
  /* min-width: 500px; */
}



/* Make sure the service container inside the panel is visible */
.product_container .panel .service_container {
  display: flex; 
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 25px;
  width: 90%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 2;
}

/* Ensure individual product boxes are properly sized */
.product_container .panel .service_container .box {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  /* width: 250px;
  height: 250px; */
  width: 20vw;
  height: 12vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 400ms ease-in-out;
  flex: 0 0 30%;
  /* transition-delay: 0.7s;  */
}






.language-dropdown {
  flex: 0.5;
  position: absolute;
  width: 10vw;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  color: #212529;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  display: none;
}


.nav-item.dropdown:hover .language-dropdown {
  display: block;
}


.language-dropdown .lv:before,
.language-dropdown .ru:before,
.language-dropdown .en:before {
  content: ""; /* Required for the pseudo-element to work */
  display: inline-block; /* Ensures the pseudo-element behaves like an inline element */
  width: 45px; /* Adjust the width of the image */
  height: 25px; /* Adjust the height of the image */
  margin-right: 10px; /* Add spacing between the image and the text */
  background-size: cover; /* Ensure the image fits within the element */
  vertical-align: middle; /* Align the image with the text */
}

.language-dropdown .lv:before {
  background-image: url("../images/LV.png"); 
}
.language-dropdown .en:before {
  background-image: url("../images/ENG.jpg"); 
}
.language-dropdown .ru:before {
  background-image: url("../images/RU.jpg"); 
}



.custom-dropdown {
  position: absolute;
  width: 920px;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  color: #212529;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  display: none;
}


.nav-item.dropdown:hover .custom-dropdown {
  display: block;
}



.custom-dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3); /* Dividing line */
  font: bold;
}

.custom-dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
 

}

/* .nav-item.dropdown:hover .row > .col-md-6 {
  border-right: 2px solid #ddd;
}
.nav-item.dropdown:hover .row > .col-md-6:last-child {
  border-right: none;
} */




.product_container .panel .service_container .box:hover {
  transform: scale(1.5);
  background: #ffffff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

/* Disable clicking on product boxes by default */
.product_container .panel .service_container .box {
  pointer-events: none; /* Prevent clicking */

}

/* When the panel is active, enable clicking */
.product_container .panel.active .service_container .box {
  pointer-events: auto; /* Allow clicking */
  
}




/* .product_container .panel .service_container .box:hover {
  transition: all 200ms ease-in;
  transform: scale(1.5);
  background: #ffffff; 
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); 
} */


/* Ensure product images inside cards are properly displayed */
.product_container .panel .service_container .box .img-box img {
  width: 5vw;
  height: 5vw;
  object-fit: contain;
}

.product_container .panel .service_container .box h5 {
  /* font-size: 0.8vw; */
  font-size: clamp(12px, 0.8vw, 18px); /* Min: 12px, Preferred: 0.8vw, Max: 18px */
  margin-top: 10px;
  color: #111;
  font-weight: bolder;
}

.product_container .panel .service_container .box p {
  /* font-size: 0.7vw; */
  font-size: clamp(10px, 0.7vw, 16px); /* Min: 10px, Preferred: 0.7vw, Max: 16px */
  margin-top: 5px;
  color: #333;
}



/* When a panel is active, expand it and show the products */
.product_container .panel.active {
  flex: 5;
}

.product_container .panel.active .service_container {
  opacity: 1;
}



/* Ensure images are displayed properly */
.product_container .panel .box .img-box img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}


/* Make sure the active panel fully expands */
.product_container .panel.active {
  flex: 5;
}

/* Ensure product details are visible when panel is active */
.product_container .panel.active .box {
  opacity: 1;
}

.panel .panel-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 60%;
  max-height: 60%;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

/* When the panel is active, hide the logo and change background to grey */
/* .panel.active .panel-logo {
  opacity: 0;
} */

.panel.active {
  background-color: grey !important;
}



.product_container {
  display: flex;
  gap: 15px;
}

.product_container .panel-1,
.product_container .panel-2,
.product_container .panel-3 {
  background-image: url('../images/test.jpg');
}

.product_container .panel-1 {
  background-position: 0% 50%; /* Left part */
}

.product_container .panel-2 {
  background-position: 50% 50%; /* Center part */
}

.product_container .panel-3 {
  background-position: 100% 50%; /* Right part */
}



/* Hide background when active */
.product_container .panel.active {
  background-image: none;  /* This removes the image */
  background-color: #f0f0f0; /* Optional: Add a background color */
  border: 2px solid #aaa;  /* Optional: Highlight active panel */
}


body {
  font-family: "Poppins", sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
}

*, html {
  scroll-behavior: smooth !important;
}

.layout_padding {
  padding-top: 75px;
  padding-bottom: 75px;
}

.layout_padding2 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.layout_padding2-top {
  padding-top: 45px;
}

.layout_padding2-bottom {
  padding-bottom: 45px;
}


.text-decoration-none,  text-decoration-none:active {
  color: inherit;
  text-decoration: none;
}

.layout_padding-top {
  padding-top: 90px;
}

#backBtn {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  align-items: center;
  position: relative;
  top: 10px; /* Adjust the top value as needed */
  left: 10px; /* Adjust the left value as needed */
  width: auto;
  height: auto;
  flex: 0.5;
  max-width: 130px;

}

#productImage {
  max-width: 16vw;
  height: 16vw;
  object-fit: contain;
  border-radius: 10px;
  background: linear-gradient(to bottom, #f9f9f9, #eaeaea); /* Light gradient */
  padding: 10px;
}



.layout_padding-bottom {
  padding-bottom: 90px;
}

.productContainer .img {
width: 50px;
height: 50px;
}

.heading_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.heading_container h2 {
  position: relative;
  font-weight: bold;
  margin-right: 10px;
}

.heading_container img {
  width: 30px;
}

.background_color {
  background-color: #eae6f5;
}
/*header section*/
.hero_area {
  height: 100vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #eae6f5;
}

.sub_page .hero_area {
  height: auto;
}
.sub_page{
  margin-top: 110px;
}

.header_section {
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  height: 110px;
  z-index: 9999;
  position: fixed;
  top: 0;

}



.header_section .container {
  padding: 0;
}

.header_section .nav_container {
  margin: 0 auto;
}

/* 
body {
  margin-top: 80px;
  padding-top: 0;
} */

/* .hero_area{
  padding-bottom: 100px;
} */




.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 7px 20px;
  margin: 10px 15px;
  color: #000000;
  text-align: center;
  border-radius: 35px;
  text-transform: uppercase;
  font-size: 17px;

}

.custom_nav-container .navbar-nav .nav-item.active .nav-link, .custom_nav-container .navbar-nav .nav-item:hover .nav-link {
  background-color: #4b208c;
  color: #ffffff;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a:hover,
a:focus {
  color: initial;
}

.btn,
.btn:focus {
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.custom_nav-container .nav_search-btn {
  background-image: url(../images/search-icon.png);
  background-size: 22px;
  background-repeat: no-repeat;
  background-position-y: 7px;
  width: 35px;
  height: 35px;
  padding: 0;
  border: none;
}

.navbar-brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar-brand img {
  margin-right: 5px;
  width: 200px;
}

.navbar-brand span {
  font-size: 22px;
  font-weight: 700;
  color: #4b208c;
}

.custom_nav-container {
  z-index: 99999;
}

.navbar-expand-lg .navbar-collapse {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.custom_nav-container .navbar-toggler {
  outline: none;
}

.custom_nav-container .navbar-toggler {
  padding: 0;
  width: 37px;
  height: 42px;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #190734;
  margin: 7px 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: 0;
  margin-bottom: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-2 {
  display: none;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] .s-3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 0;
  margin-top: -4px;
}

.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-1,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-2,
.custom_nav-container .navbar-toggler[aria-expanded="false"] .s-3 {
  -webkit-transform: none;
          transform: none;
}





.about_section {
  background-color: #f3f0f6;
}

.about_section .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about_section .img_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.about_section .img_container .img-box {
  border: 5px solid #7b57b2;
  border-radius: 100%;
  overflow: hidden;
}

.about_section .img_container .img-box.b1 {
  width: 70%;
}

.about_section .img_container .img-box.b2 {
  width: 50%;
  margin-left: auto;
  margin-top: -12%;
}

.about_section .img_container .img-box img {
  width: 100%;
  height: 100%;
}

.about_section .detail-box {
  margin-right: 15%;
}

.about_section .detail-box p {
  margin-top: 25px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 35px;
  background-color: #4b208c;
  color: #ffffff;
  border-radius: 5px;
  margin: 25px 0 45px 0;
}

.about_section .detail-box a:hover {
  background-color: #5625a1;
}




.about_section .detail-box {
  /* display: flex; */
  align-items: center; /* Vertically center the content */
  justify-content: space-between; /* Distribute space between the h1 and the image */
  margin-right: 15%;
}

.about_section .detail-box h1 {
  flex: 1; /* Allow the h1 to take up remaining space */
}

.about_section .detail-box .security_image {
  width: 100px; /* Adjust the width as needed */
  height: auto; /* Maintain aspect ratio */
  margin-left: 20px; /* Add some space between the h1 and the image */
}

.about_section .detail-box p {
  margin-top: 25px;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 10px 35px;
  background-color: #4b208c;
  color: #ffffff;
  border-radius: 5px;
  margin: 25px 0 45px 0;
}

.about_section .detail-box a:hover {
  background-color: #5625a1;
}





.contact_section {
  position: relative;
}

.contact_section form {
  margin-top: 45px;
  padding-right: 35px;
}

.contact_section input {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 25px;
  padding-left: 25px;
  background-color: transparent;
  outline: none;
  color: #101010;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.16);
}

.contact_section input::-webkit-input-placeholder {
  color: #737272;
}

.contact_section input:-ms-input-placeholder {
  color: #737272;
}

.contact_section input::-ms-input-placeholder {
  color: #737272;
}

.contact_section input::placeholder {
  color: #737272;
}

.contact_section input.message-box {
  height: 120px;
}

.contact_section button {
  border: none;
  display: inline-block;
  padding: 12px 45px;
  background-color: #4b208c;
  color: #ffffff;
  border-radius: 0px;
  margin-top: 35px;
}

.contact_section button:hover {
  background-color: #5625a1;
}




.footer_bg {
  background-image: url(../images/footer-bg.png);
  background-size: cover;
  background-position: top;
}

/* info section */
.info_section {
  background-color: #190734;
  color: #ffffff;
}

.info_section h6 {
  font-weight: bold;
}

.info_section .info_contact {
  margin-top: 60px;
  margin-bottom: 45px;
}

.info_section .info_contact .col-md-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.info_section .info_contact a {
  color: #ffffff;
}

.info_section .info_contact img {
  max-width: 100%;
  margin-right: 10px;
}

.info_section .info_form {
  margin: 0 auto;
  margin-bottom: 45px;
}

.info_section .info_form h4 {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}

.info_section .info_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.info_section .info_form form input {
  background-color: #ffffff;
  border: none;
  -webkit-box-flex: 2.5;
      -ms-flex: 2.5;
          flex: 2.5;
  outline: none;
  color: #000000;
  min-height: 42.4px;
  padding-left: 15px;
}

.info_section .info_form form input ::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 0.2;
}

.info_section .info_form form input :-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.2;
}

.info_section .info_form form input ::-ms-input-placeholder {
  color: #ffffff;
  opacity: 0.2;
}

.info_section .info_form form input ::placeholder {
  color: #ffffff;
  opacity: 0.2;
}

.info_section .info_form form button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: none;
  display: inline-block;
  padding: 10px 30px;
  background-color: #4b208c;
  color: #ffffff;
  border-radius: 0;
  font-size: 15px;
  text-transform: uppercase;
}

.info_section .info_form form button:hover {
  background-color: #5625a1;
}

.info_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info_section .info_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.info_section .info_social img {
  width: 35px;
  margin-right: 8px;
}

/* end info section */
/* footer section*/
.footer_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin-bottom: auto;
}

.footer_section p {
  color: #222222;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

.footer_section p a {
  color: #222222;
}
/*# sourceMappingURL=style.css.map */
.card {
  margin: 25px 1%;

  padding: 35px 25px 25px;
  border-radius: 15px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  border-top: 15px solid transparent;
  height: 85%;
}

.card img {
  height: 150px; /* Adjust image height */
  width: auto;
  object-fit: contain;
}

.card .card-body {
  flex: 1; /* Allows even spacing for text */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-title {
  font-weight: bold;
}

.product-container {
  display: flex; /* Use flexbox for layout */
  justify-content: space-between; /* Space between text and video */
  align-items: center; /* Align items vertically */
  margin-bottom: 30px; /* Add spacing between product containers */
  padding: 20px;
  border: 1px solid #ddd; /* Optional: Add a border */
  border-radius: 10px; /* Optional: Add rounded corners */
  background-color: #f9f9f9; /* Optional: Add a background color */
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.product-container .text-content {
  flex: 1; /* Allow text content to take up available space */
  margin-right: 20px; /* Add spacing between text and video */

}

.product-heading {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.product-description {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #555;
}

.video-container {
  flex: 0 0 30%; /* Fix the width of the video container */
  max-width: 300px; /* Optional: Limit the maximum width */
 
}


.products_section .container .product-container .img-container img{
  min-width: 250px;
  min-height: 100px;
  width: 20vw;
  height: 30wh;
}



.img-container {
  flex: 0 0 30%; /* Fix the width of the video container */
 
}

.video-container iframe {
  border-radius: 10px;
  width: 100%; /* Make the video responsive */
  height: auto; /* Maintain aspect ratio */
  border: none;
  aspect-ratio: 16 / 9; /* Ensure the video maintains a 16:9 ratio */
}






.deal {
  background: rgba(255, 255, 255, 0.9);
  border: #fffcfc 1px solid;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  padding: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}



.checkbox-wrapper-41 {
  --size: 100px;
}

.checkbox-wrapper-41 input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: var(--size);
  height: calc(var(--size) / 2);
  background-color: #fff;
  border: 3px solid #222;
  border-radius: 30px 100px 100px 100px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  outline: none;
  cursor: pointer;
  position: relative;
  transition: all 0.5s;
}

.checkbox-wrapper-41 input[type="checkbox"]::before {
  content: "";
  position: absolute;
  width: calc(var(--size) / 2);
  height: calc(var(--size) / 2);
  left: 0;
  top: 50%;
  transform: translateY(-50%) scale(0.7);
  border: 3px solid #222;
  border-radius: 30px 100px 100px 100px;
  background-color: #fde881;
  box-sizing: border-box;
  transition: all 0.5s;
}

.checkbox-wrapper-41 input[type="checkbox"]:checked {
  background-color: #fde881;
  border-radius: 100px 100px 30px 100px;
}

.checkbox-wrapper-41 input[type="checkbox"]:checked::before {
  left: 50%;
  background-color: #fff;
  border-radius: 100px 100px 30px 100px;
}



.deals_padding {
  padding-top: 35px;
  padding-bottom: 75px;
}





.custom-hr {
  border: 0;
  height: 2px; /* Thickness of the line */
  background: #ccc; /* Color of the line */
  margin: 40px 0; /* Spacing above and below the line */
  width: 99.5vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
}




.custom-dropdown-item.active {
 
  background-color: #7b57b2;       /* blue bg */
  width: 140px;
  border-radius: 15px;
}










.slider_section .detail_box {
  opacity: 0;
  transform: translateY(3em);
  animation: slideUpFadeIn 1.5s ease-in-out 0s forwards;
}

.slider_section .detail_box h1 {
  opacity: 0;
  transform: translateY(3em);
  animation: slideUpFadeIn 1.5s ease-in-out 0.5s forwards;
}
.slider_section .detail_box video {
  opacity: 0;
  transform: translateY(3em);
  animation: slideUpFadeIn 2.5s ease-in-out 0.5s forwards;
}
.slider_section .detail_box img {
  opacity: 0;
  transform: translateY(3em);
  animation: slideUpFadeIn 2.5s ease-in-out 0.5s forwards;
}


.slider_section .detail_box p {
  opacity: 0;
  transform: translateY(3em);
  animation: slideUpFadeIn 1.5s ease-in-out 1s forwards;
}

.slider_section .detail_box a {
  opacity: 0;
  transform: translateY(3em);
  animation: slideUpFadeIn 1.5s ease-in-out 1.5s forwards;
}

.slider_section .img_content {
  opacity: 0;
  transform: translateY(100%);
  animation: slideUpFadeIn 1.5s ease-in-out 2s forwards;
}

@keyframes slideUpFadeIn {
  0% {
    opacity: 0;
    transform: translateY(3em);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}




.slider_section {
  flex: 1;
  display: flex;
  align-items: center;
}

.slider_section .detail_box {
  color: #000000;
}

.slider_section .detail_box h1 {
  text-transform: uppercase;
  font-weight: bold;
}

.slider_section .detail_box p {
  margin-top: 20px;
}

.slider_section .detail_box a {
  display: inline-block;
  padding: 10px 40px;
  background-color: #4b208c;
  color: #ffffff;
  border-radius: 35px;
  margin-top: 35px;
}
.slider_section .img_container img {
  max-width: 30vw;
  max-height: 30vw;  
  border-radius: 100%;
  border: 7px solid #7b57b2;
}








.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff; /* Adjust the color as needed */
  padding: 0;
  z-index: 10; /* Ensure it's above other content */
}

.close-btn:focus {
  outline: none; /* Remove focus outline for better aesthetics */
}













.slider_section video {
  display: none; /* Hide the video container on desktop */
}
.video-overlay video {
  display: none; /* Hide the video overlay by default */
}



  .navbar .language-dropdown {
      width: auto;
    }






/* Responsive styles for tablets */
@media (max-width: 768px) {


   .navbar .language-dropdown {
      top: auto !important;      /* override default top */
      bottom: 100%;              /* position above toggle */
      margin-left: -25%;
      transform: translateY(-.25rem);
    }
    /* .navbar .language-dropdown::before { 
      content: '';
      position: absolute;
      bottom: -6px;
      left: 1.5rem;
      width: 0; height: 0;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-top: 6px solid var(--clr-primary);
    } */
    

    /* Disable language links (no navigation) */
    .navbar .dropdown {
      /* pointer-events: none;   deactivate click */
      cursor: default;
    }


  
  .contact_section .map_container {
    height: 100%;
    min-height: 300px;
    min-width: 200px;
    max-width: 90vw;
  }
 
  .video-overlay {  
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: block;
  }

  .video-overlay video {
    border-radius: 80%;
    transform: scale(1.8); /* Adjust the scale value to make the video appear larger */
    transform-origin: center; /* Ensure the scaling is centered */
    top: 110vh;
    left: 80%;
    width: 10%;
    height: 5%;
    object-fit: cover;
    position: absolute;
    z-index: 1000;
    overflow: hidden;

  }




  .map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Make the iframe responsive */
    height: 100%; /* Match the aspect ratio */
    border: 0; /* Remove default border */
  }


  .navbar-nav {
    display: none;
  }

  .product_container .panel .service_container .box:hover {
    transform: scale(1.1);
    background: #ffffff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  }



  .close-btn {
    margin-bottom: 20px;
  }

  .product_container .panel-1 {
    margin-top: 20px;
  }
  .product_container .panel-1, .panel-2, .panel-3 {
    padding-top: 40px;
   
  }



  .header_section .container .navbar .collapse .navbar-nav {
    background-color: #414141;
    right: 0%;
    flex-direction: column;
    font-size: 26px;
    gap: 20px;
    height: 100vh;
    width: 70vw;
    justify-content: flex-start;
    padding-top: 50px;
    position: fixed;
    transform: translateX(100%);
    display: flex;
    margin-top: 10px;
    animation: fadeInRight 1s ease forwards;
  }




  @keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
  } 

  .slider_section .container { /* after adding video element is needed*/
      padding-top: 110px;
  }

  .product_container .panel {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 30vh; /* Default height */
    background-size: 305% 100%; 
    border-radius: 20px;
    color: #fff;
    cursor: pointer;
    flex: 0.1;
    position: relative;
    transition: max-height 0.7s ease-in-out; /* Transition for max-height */
    overflow: hidden;
    /* min-width: 500px; */
  }
  .product_container .panel.active {
  max-height: 200vh; /* Expanded height */
  transition: max-height 1.2s ease-in-out; /* Transition for max-height */
  }

  .slider_section .detail_box video {
    float: right;
    margin: 0 4%;
    width: 100px;
    padding-top: 65px; 
  }

  .slider_section .detail_box img {
    float: right;
    margin: 8% 5%;
    width: 26vw;
    max-width: 150px;
    padding-top: 65px;
    height: 19vh;
  }

  .slider_section .detail_box h1 {
    float: left;
    margin: 0 1.5%;
    width: 50%;
  } 



  

  /* Default styles for desktop */
  .slider_section .img_container {
    display: none; /* Show the image container on desktop */
  }
  
  .slider_section video {
    display: block; /* Show the video container on mobile */
  }






  
  .product_container .panel .service_container .box {
    width: 40vw; /* Adjust width for tablets */
    height: 40vw; /* Adjust height for tablets */
    font-size: small;
  }

  .product_container .panel .service_container {
    gap: 15px; /* Adjust gap for tablets */
  }
  .product_container {
    flex-direction: column;
    height: auto;
  }

  .product_container .panel {
    height: auto;
    margin-bottom: 20px;
  }

  .product-container {
    flex-direction: column;
    padding: 15px;
  }

  .video-container {
    width: 100%;
    margin-top: 15px;
  }
}

/* Responsive styles for mobile */
@media (max-width: 480px) {


  
   


  .product_container .container {
   
    flex-direction: column;
    display: flex;
    gap: 10px;
  }



  #productImage {
    width: 100%; /* Ensure the image takes full width of its container */
    height: auto; /* Maintain aspect ratio */
    max-width: 100%; /* Ensure the image does not exceed the container width */
    margin-top: 20px; /* Add some space above the image */
  }



  .panel .panel-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
  }

  
  .product_container .panel .service_container .box .img-box img {
    width: 35vw; /* Make the image fill the width of the container */
    height: 15vh; /* Make the image fill the height of the container */
    /* object-fit: cover; */
    overflow: none;
  }

  .product_container .panel .service_container .box {
    flex: 0 0 100%; /* Full width on mobile */
    min-width: 30vw;
    width: auto; /* Adjust width for tablets */
    min-height: 40vw;
    height: auto; /* Adjust height for tablets */
    font-size: small;

  }



  .custom-dropdown {
    width: 80vw; /* Reduce width to fit smaller screens */
    left: -20%; /* Center the dropdown with some padding */
    transform: none; /* Remove horizontal centering */
    top: 100%; /* Ensure it appears below the parent element */
    border-radius: 5px; /* Optional: Adjust border radius */
    font-size: 0.9rem; /* Adjust font size for readability */
    max-height: 50vh; /* Limit the height to 50% of the viewport */
    overflow-y: auto; /* Enable vertical scrolling */
  }

  .custom-dropdown-item {
    padding: 0.5rem 1rem; /* Adjust padding for smaller screens */
  }

  .custom-dropdown-header {
    font-size: 1rem; /* Adjust header font size */
    /* padding: 0.5rem 1rem;  */
    padding-bottom: 100px; /* Adjust padding */
  }



  .header_section .container .navbar .collapse .navbar-nav .show {
    transform: translateX(0);
    background-color: aliceblue;
  }



  .custom_nav-container .navbar-nav .nav-item .nav-link {
    background-color: #eae6f5;

  }

  .custom_nav-container .navbar-nav .nav-item.active .nav-link, .custom_nav-container .navbar-nav .nav-item:hover .nav-link {
    background-color: #919192;
  }











  .custom-dropdown-header {
    font-size: 1rem; /* Adjust header font size */
    padding: 0.5rem 1rem; /* Adjust padding */
  }

  .product-heading {
    font-size: 1rem;
  }

  .product-description {
    font-size: 0.8rem;
  }

  .video-container iframe {
    aspect-ratio: 4 / 3;
  }



}








