:root {
    --primary-color: #313177; 
    --secondary-color: #7a305f;
    --background-color: #fff;
    --text-color: #a62c4c;
    --font-family: "Josefin Sans", sans-serif;
  }
  
/* Ensure full-page scrollbar */
html {
  scrollbar-width: thin; 
  scrollbar-color: var(--primary-color) #f1f1f1; 
}

/* WebKit Browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 8px; 
  height: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--primary-color); 
  border-radius: 10px; 
}

::-webkit-scrollbar-thumb:hover {
  background:var(--primary-color) 
}

/* Ensure full-page scrollbar end */
  
  
  body {
    font-family: var(--font-family);
    background-color: var(--background-color);
    
   
  }
  
  .Globaltit1 {
    font-size: 2.5rem;
    color: #313177;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  .Globaltit2{
    font-size: 1.2rem;
    color: #313177;
    font-weight: 400;
    text-align: center;
  }
  
  .home-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 400;
  }
  
  .home-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
  }
  
  .leaflet-container{
    background: none;
  }
  
  .img-sectiongloble{
    height: 100%;
    background-image: url("../assets/global.png"); 
    background-size: cover; 
    margin-top: 95px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    position: relative;
  }

.global-presence-section {
  padding: 10px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.global-intro {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
  padding: 0 20px;
}

.global-intro h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.global-intro h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  transform: translateX(-50%);
  border-radius: 2px;
}

.global-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.regions-grid {
  /* margin-left: 100px;
  margin-right: 100px; */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 0 20px;
  margin-bottom: 50px;
}


.region-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(49, 49, 119, 0.1);
}

.region-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(49, 49, 119, 0.15);
}

.region-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.region-name {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.region-countries {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

#map {
  width: 100%;
  height: 600px;
  border-radius: 20px;
  margin: 40px 0;
}

.leaflet-tooltip {
  background: rgba(49, 49, 119, 0.9) !important;
  color: white !important;
  border: none !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
  padding: 8px 15px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

.leaflet-touch .leaflet-control-attribution, .leaflet-touch .leaflet-control-layers, .leaflet-touch .leaflet-bar{
  display: none;
}

.globlepre{
  text-align: center;
  font-size: 1rem;
}
.globlepree{
  text-align: center;
  font-weight: bold;
}


/* Ensure a minimum of 3 columns on larger screens */
@media (min-width: 900px) {
  .regions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Adjust for medium screens (2 columns) */
@media (max-width: 900px) {
  .regions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Adjust for small screens (1 column) */
@media (max-width: 600px) {
  .regions-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}