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

body {
  font-family: Inter, sans-serif;
  color: #fff;
}
/*font*/

.world-map-title{
  width: 80%;
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 40px;
      display: flex;
    flex-direction: column;
    align-items: center;
}

/* Text styles and colors */
.h3-preheader{
 font-weight: 400;
 font-style: normal;
  color: #808080;
   letter-spacing:16%;
  font-size: 16px;
  margin: 0px;
}

h1{
   margin-top: 20px;
margin-bottom: 0px;
  padding-top: 0px;
  font-size: 48px;
line-height: 58px;
  text-align: center;
}



.light-text{color:#fafafa}
.dark-text{color:#1a1a1a}


.textGradent{
  background: linear-gradient(90deg,#888888,#ffffff,#444444);
  -webkit-text-fill-color: transparent; 
  background-clip: text;
}

.light_grey{
 color: #cccccc
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #acacac;
}

::-webkit-scrollbar-thumb {
  background:  #404040;
}

@supports not selector(::-webkit-scrollbar) {
  * {
    scrollbar-width: thin;
    scrollbar-color:  #404040 #acacac;
  }
}

/* Map Section */
.map-section {
  position: relative;
}

.world-map {
  position: relative;
  width: 80%;
  margin: 0 auto;
    background: #fafafa;
    border: 1px solid #D9D9D9;
  border-radius: 20px;
  overflow: hidden;
  max-width: 1400px;
}

.map-container {
  display: flex;
  justify-content: center;
  align-items: center;
}



/* Map Paths */
svg path {

   fill: #bebebe;
  stroke: none;
  transition: fill 0.3s ease, opacity 0.3s ease;
}

svg path.hoverRegion {
   fill: #aeaeae;
}

svg path.selectedCountry {
  fill:  #404040;
}

/* Filter Nav */
.filterNav {
  width: 80%;
  margin: 30px auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px 20px;
}

.filterNav button {
  padding: 15px 35px;
  border: none;
  border-radius: 8px;
  color: #1a1a1a;
  background: rgba(26, 26, 26, 0.09);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  font-weight: 500;
}

.filterNav button:hover,
.filterNav button.hoverRegion {
  background: rgba(26, 26, 26, 0.5);
  color: #fafafa;
}

.filterNav button.checked {
  background: #1a1a1a;
  color: #fafafa;
  border-color: #1a1a1a;
}

/* Side Panel */
.side-pannel {
  position: absolute;
  top: 0;
  left: -30em;
  z-index: 1;
  width: 100%;
  max-width: 30em;
  height: 100%;
  padding: 2em;
/*   background: rgba(18, 18, 18, 0.9); */
  overflow-y: auto;
  transition: left 600ms ease-out;
}

.side-pannel .container {
  padding: 2em;
  transition: 200ms ease-out;
}

.side-panel-open {
  left: 0;
}

.side-panel-close {
  left: -30em;
}

.slide-pannel-hero,
.rep-hero {
  display: flex;
      justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
}

.rep-hero {
  align-items: flex-start;
}

.slide-pannel-hero {
  margin-bottom: 20px;
}

.side-pannel-title{color: #1a1a1a;  width: 85%;}

.hide {
  opacity: 0;
display: none;
}

/* Close Button */
.close-btn {
  width: 3em;
  height: 3em;
  border: none;
  border-radius: 8px;
  background: #323232;
  color: #fff;
  cursor: pointer;
  transition: background 100ms ease;
}

.close-btn:hover {
  background: #1a1a1a;
}

.close-btn img {
  width: 40%;
}



/* Rep Card */
.rep-card {
  width: 100%;
  margin: 15px 0;
  padding: 20px;
  border: 1px solid #cccccc;
  background:rgba(250, 250, 250, 0.68);
  border-radius: 8px;
  transition: box-shadow 200ms ease;
}

.rep-card:hover {
  box-shadow: 0 0 15px #cccccc;
}

.rep-logo {
  width: 40%;
}

.rep-logo img {
  width: 100%;
}

.rep-info{
  color: #1a1a1a
}



.rep-contact-btn {
  padding: 20px 30px;
  border: 1px solid #443d4b;
  border-radius: 8px;
  color: #fff;
  background: #1a1a1a;
    position: absolute;
  bottom: 40px;
  right: 40px;
  font-weight: 500;
}
.rep-contact-btn:hover{
background: #404040;
}

.pannel-Contact-BTN{
   position: unset;
  width: 100%;
}


div.global-btn{
  position: absolute;
  top: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #bebebe;
  transition: color 0.3s ease;
}
div.global-btn::hover{
color: #404040;
}

.global-btn svg{
  width: 38px;
  height: auto;
}

.global-btn p{
font-weight: 500;
}

/* Hover Synced Styling - Changes lines to bright red on hover */
.global-btn:hover svg path,
.global-btn.hoverRegion svg path,
button.global:hover ~ .world-map .global-btn svg path{
  fill: rgba(26, 26, 26, 0.5)
}

.global-btn:hover p,
.global-btn.hoverRegion p {
  color:  rgba(26, 26, 26, 0.5);
}

/* Active State Styling - Changes lines and text when clicked/checked */
.global-btn.checked svg {
  fill: #1a1a1a!important;
}

.global-btn.checked p {
  color: #1a1a1a;
}


.contact-name {
  margin-top: 15px;
  color: #1a1a1a
}

.company-discription {
  margin-top: 10px;
}

/* Contact Form */
/* Update your existing .contact-form wrapper block */
/* glass effect */

.glass{
   border-radius: 8px;
 
  z-index: 0;
  padding: 40px;
/*  background  */
  background: rgba(29,29,29, 0.10);
  backdrop-filter:blur(16px);
  filter: url(#lensFilter) saturate(120%) brightness(1.15);
}

.glass::before{
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
/* creating border */
border-radius: inherit;
border: none;
background: linear-gradient(#3C3C3C, #494949) border-box;
mask:   linear-gradient(black) border-box,
        linear-gradient(black) padding-box;
mask-composite:subtract;
   
}












/* Presentation rules for your dynamically filled details area */
 .dynamicFill {
  width: 100%;
  margin: 25px auto;
} 



.dynamicFill img{
 height: fit-content;
 width: 40%;
} 



.dynamicFill h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a;
  text-align: center;
  margin: 0;
} 

/* form styles: */
.hs_cos_wrapper.hs_cos_wrapper_widget.hs_cos_wrapper_type_form{
 width: 100%; 
}
  
/* Mobile */
@media (max-width: 1130px) {
  .side-pannel {
    max-width: 100%;
    left: 0;
  }

  .rep-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .rep-card {
    width: 48%;
  }

  .close-btn {
    display: none;
  }
}

@media (max-width: 800px) {
  .rep-card {
    width: 100%;
  }
}