/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@100;300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;700;900&display=swap");
:root {
  /* Using original variables with vibrant updates for 2025 trends: bolder primary, contrasting secondary */
  --themeprimaryclr: #0d47a1;
  /* Deep vibrant blue for minimalism and contrast */
  --themesecondaryclr: #424242;
  /* Dark gray for bold typography */
  --themethirdclr: #00c853;
  /* Bright green for accents */
  --themefourthclr: #212121;
  --themefifthclr: #f50057;
  --themesixthclr: #616161;
  --themeseventhclr: #c2185b;
  --themeeighthclr: #757575;
  --themeninthclr: #00000080;
  --themetenthclr: #ffeb3b;
  --plainclr: #ffffff;
  --darkclr: #000000;
  --lightbg: #fafafa;
  --bodyclr: #757575;
  --body-bgclr: #eeeeee;
  --headerclr: #ffffff;
  --headerbgclr: #e3f2fd;
  --footerclr: #ffebee;
  --footerbgclr: #ef9a9a;
  --headingclr: #212121;
  --li-clr: #f5f5f5;
  --lihover-clr: #424242;
  --anchorclr: #9e9e9e;
  --btnhover: #f50057;
  --anchor-hover-clr: #e57373;
  --linkclr: #64b5f6;
  --link-hover-clr: #1976d2;
  --link-hover-bg-clr: #e3f2fd;
  --link-bg-clr: #bbdefb;
  --hoverclr: #212121;
  --iconclr: #f44336;
  --icon-hover-clr: #ffeb3b;
  --tablehover: #e0e0e0;
  --dark-text-color: #9e9e9e;
  --dark-section-color: #212121;
  --dark-menu-bg-color: #424242;
  --dark-menu-icon-color: #616161;
  --main-border: #e0e0e0;
  --light-border: #757575;
  --borderone: #bdbdbd;
  --bordertwo: #ffee58;
  --border-three: #f44336;
  --section-color: #fafafa;
  --section-color-two: #212121;
  --section-color-three: #9e9e9e;
  --section-color-four: #424242;
  --section-color-five: #ffebee;
  --greenclr: #00c853;
  --orangecolor: #ff9100;
  --redclr: #f44336;
  --yellowclr: #ffeb3b;
  --badge-danger: #f44336;
  --badge-warning: #ff9100;
  --badge-success: #00c853;
  --badge-light: #f5f5f5;
  --badge-dark: #424242;
  --badge-semi-dark: #616161;
  --badge-semi-light: #fafafa;
  --badge-info: #00bcd4;
  --fbclr: #2196f3;
  --ytclr: #f44336;
  --twclr: #03a9f4;
  --igclr: #e040fb;
  --lnclr: #0288d1;
  --ghclr: #424242;
  --waclr: #4caf50;
  --scclr: #fff59d;
  --rdclr: #ef5350;
  --tiktokclr: #212121;
  --pinterestclr: #f44336;
  --overlayone: rgba(0, 0, 0, 0.3);
  --overlaytwo: rgba(0, 0, 0, 0.5);
  --overlaythree: rgba(0, 0, 0, 0.7);
  --overlayfour: rgba(255, 255, 255, 0.2);
  --overlayfive: rgba(245, 0, 87, 0.4);
  --gradientone: linear-gradient(135deg, #0d47a1, #0d47a1b3);
  --gradienttwo: linear-gradient(135deg, #00c853, #69f0ae);
  --gradientthree: linear-gradient(135deg, #ff9100, #ffb74d);
  --gradientfour: linear-gradient(135deg, #212121, #424242);
  --gradientfive: linear-gradient(135deg, #ffeb3b, #fff176);
  --gradientsix: linear-gradient(135deg, #424242, #212121);
  --shadowone: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadowtwo: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadowthree: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadowfour: 0 12px 24px rgba(0, 0, 0, 0.2);
  --shadowfive: 0 20px 40px rgba(0, 0, 0, 0.25);
  --primaryfont: "Lato", sans-serif;
  --secondaryfont: "Inter", sans-serif;
  --thirdfont: "Roboto", sans-serif;
  --fourthfont: "Montserrat", sans-serif;
  --fifthfont: "Open Sans", sans-serif;
  --sixthfont: "Poppins", sans-serif;
}

body {
  font-family: var(--sixthfont);
  background: var(--lightbg);
  color: var(--bodyclr);
  margin: 0;
  line-height: 1.6;
}

.map-layout-8 {
  padding: 5rem 0;
  background: var(--gradientone);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: grid;
  place-items: center;
}
.map-layout-8::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
  animation: pulse 10s infinite ease-in-out;
}

.container {
  z-index: 1;
}

.header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeIn 1.5s ease-out;
}
.header h1 {
  font-family: var(--fourthfont);
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--plainclr);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.header p {
  font-family: var(--secondaryfont);
  font-size: 1.4rem;
  color: var(--plainclr);
  opacity: 0.85;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

.card {
  background: var(--plainclr);
  border-radius: 1.5rem;
  box-shadow: var(--shadowfive);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s;
}
.card:hover {
  transform: perspective(1000px) rotateY(5deg) rotateX(5deg) scale(1.02);
  box-shadow: var(--shadowfive), 0 0 30px rgba(13, 71, 161, 0.3);
}

.map-container {
  height: 550px;
  border-radius: 1rem;
}

#mapEight {
  width: 100%;
  height: 100%;
}

.info-card {
  padding: 2.5rem;
}
.info-card h4 {
  font-family: var(--thirdfont);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--themeprimaryclr);
  margin-bottom: 1.8rem;
}
.info-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2.5rem;
}
.info-card li {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.info-card li:hover {
  transform: translateX(10px);
}
.info-card li i {
  color: var(--themethirdclr);
}
.info-card a {
  color: var(--bodyclr);
  text-decoration: none;
  transition: color 0.3s ease;
}
.info-card a:hover {
  color: var(--themeprimaryclr);
}

.buttons {
  display: flex;
  gap: 1.5rem;
}

.btn-custom {
  font-family: var(--primaryfont);
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease;
  line-height: 18px;
}
.btn-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradienttwo);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}
.btn-custom:hover::before {
  transform: scaleX(1);
}

.btn-primary {
  background: var(--themeprimaryclr);
  color: var(--plainclr);
  border: none;
}

.btn-outline-primary {
  background: transparent;
  border: 2px solid var(--themeprimaryclr);
  color: var(--themeprimaryclr);
}

.btn-primary:hover {
  color: var(--plainclr);
}

.btn-outline-primary:hover {
  color: var(--plainclr);
  border-color: transparent;
}

.custom-marker {
  position: relative;
  width: 40px;
  height: 40px;
}

.marker-pin {
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  background: var(--themeprimaryclr);
  position: absolute;
  transform: rotate(-45deg);
  left: 50%;
  top: 50%;
  margin: -15px 0 0 -15px;
}

.marker-content {
  position: absolute;
  width: 24px;
  height: 24px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--plainclr);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Keyframes for animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse {
  0% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
/* Responsive Design with Mobile-First Approach */
@media (max-width: 1200px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
  .map-container {
    height: 450px;
  }
}
@media (max-width: 768px) {
  .map-layout-8 {
    padding: 3rem 0;
  }
  .header h1 {
    font-size: 2.8rem;
  }
  .header p {
    font-size: 1.2rem;
  }
  .map-container {
    height: 350px;
  }
  .info-card h4 {
    font-size: 1.8rem;
  }
  .info-card li {
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .map-layout-8 {
    padding: 2rem 0;
  }
  .header h1 {
    font-size: 2.2rem;
  }
  .header p {
    font-size: 1rem;
  }
  .map-container {
    height: 300px;
  }
  .buttons {
    flex-direction: column;
  }
  .btn-custom {
    width: 100%;
  }
}/*# sourceMappingURL=mapDesign5.css.map */