/*------------Banner video------------------------*/
/* ============================= */
	/* Base Styles (Default: Mobile) */
	/* ============================= */

	.ban {
		margin-top: 150px;
		/* default for small phones */
		line-height: 1;
		overflow: hidden;
	}

	.ban video {
		width: 100%;
		height: auto;
		object-fit: cover;
	}


	/* ============================= */
	/* Extra Small Devices (<576px) */
	/* ============================= */
	@media (max-width: 320px) {
		.ban {
			margin-top: 148px;
		}
	}

	@media (min-width: 575.98px) {
		.ban {
			margin-top: 118px;
		}
	}


	/* ============================= */
	/* Small Devices (≥576px) */
	/* ============================= */
	@media (min-width: 576px) {
		.ban {
			margin-top: 120px;
		}
	}


	/* ============================= */
	/* Medium Devices (≥768px) */
	/* ============================= */
	@media (min-width: 768px) {
		.ban {
			margin-top: 125px;
		}
	}


	/* ============================= */
	/* Large Devices (≥992px) */
	/* ============================= */
	@media (min-width: 992px) {
		.ban {
			margin-top: 10%;
		}
	}


	/* ============================= */
	/* Extra Large Devices (≥1200px) */
	/* ============================= */
	@media (min-width: 1200px) {
		.ban {
			margin-top: 8%;
		}
	}


	/* ============================= */
	/* XXL Devices (≥1400px) */
	/* ============================= */
	@media (min-width: 1400px) {
		.ban {
			margin-top: 8%;
		}
	}


	/* ============================= */
	/* 4K Screens (≥1920px) */
	/* ============================= */
	@media (min-width: 1920px) {
		.ban {
			margin-top: 6%;
		}
	}


	/* ============================= */
	/* Ultra Wide Screens (≥2560px) */
	/* ============================= */
	@media (min-width: 2560px) {
		.ban {
			margin-top: 5%;
		}
	}

/*--------------------------------------------------------------------------------------------------------------------------------------------*/
.social-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Default Desktop */
.social-icons a svg {
  width: 25px;
  height: 25px;
  transition: transform 0.3s ease;
}

.social-icons a:hover svg {
  transform: scale(1.1);
}

/* Tablet */
@media (max-width: 992px) {
  .social-icons {
    justify-content: center;
    gap: 12px;
  }

  .social-icons a svg {
    width: 28px;
    height: 28px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .social-icons {
    justify-content: center;
    gap: 10px;
  }

  .social-icons a svg {
    width: 20px;
    height: 20px;
  }
}

/* button form */
.key {
  background: #1b1d3d;
}

.key:hover {
  background: #787fdb;
  color: #000;
}

.pre-header {
  display: flex;
  /* justify-content: flex-end; */
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Default Desktop */
.pre-header a svg {
  width: 25px;
  height: 25px;
  transition: transform 0.3s ease;
}

.pre-header a:hover svg {
  transform: scale(1.1);
}

/* Tablet */
@media (max-width: 992px) {
  .pre-header {
    justify-content: center;
    gap: 12px;
  }

  .pre-header a svg {
    width: 28px;
    height: 28px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .pre-header {
    justify-content: center;
    gap: 10px;
  }

  .pre-header a svg {
    width: 20px;
    height: 20px;
  }
}

/* button form */
.key {
  background: #1b1d3d;
}

.key:hover {
  background: #787fdb;
  color: #000;
}

/*--------------------------------------------------------------------------------------------------------------------------------------------*/
/* Heading Animation */
.contact-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 35px;
  position: relative;
  display: inline-block;
}

.contact-heading::after {
  content: "";
  width: 50%;
  height: 3px;
  background: linear-gradient(to right, #007bff, #00d4ff);
  position: absolute;
  left: 0;
  bottom: -8px;
  border-radius: 10px;
  transition: width 0.4s ease;
}

.contact-heading:hover::after {
  width: 100%;
}

/* Address Item */
.single-address {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 0.6s forwards;
}

.single-address:nth-child(2) {
  animation-delay: 0.1s;
}

.single-address:nth-child(3) {
  animation-delay: 0.2s;
}

.single-address:nth-child(4) {
  animation-delay: 0.3s;
}

.single-address:nth-child(5) {
  animation-delay: 0.4s;
}

.single-address:nth-child(6) {
  animation-delay: 0.5s;
}

.single-address:hover {
  transform: translateX(8px);
}

/* Icon */
.single-address .icon {
  width: 45px;
  height: 45px;
  background: #12026d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #fff !important;
  font-size: 16px;
  transition: 0.3s ease;
}

.single-address:hover .icon {
  background: #b02c4d;
  transform: rotate(10deg) scale(1.1);
  color: #ffffff !important;
}

/* Text */
.single-address .text h6 {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}

.single-address .text span {
  font-size: 14px;
  color: #555;
}

.single-address .text a {
  color: #007bff;
  text-decoration: none;
  transition: 0.3s;
}

.single-address .text a:hover {
  color: #00d4ff;
}

/* Animation */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .single-address {
    flex-direction: row;
  }
}

/* Lightbox Background */
.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);

  /* Perfect Centering */
  align-items: center;
  justify-content: center;
}

/* Image */
.modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  animation: zoomIn 0.3s ease-in-out;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}

/* Animation */
@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/*--------------------------------------------------------------------------------------------------------------------------------------------*/

/* About Section */
.section-wrapper {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Blue Wave Background */
.section-wrapper::before {
  content: "";
  position: absolute;
  left: -150px;
  top: 100px;
  width: 450px;
  height: 300px;
  background:
    radial-gradient(circle at 30% 50%, rgba(0, 102, 255, 0.4), transparent 60%),
    radial-gradient(circle at 50% 70%, rgba(0, 102, 255, 0.3), transparent 60%);
  transform: rotate(-10deg);
  z-index: 0;
}

/* Image Section */
.image-stack-single {
  position: relative;
  display: inline-block;
}

.image-stack-single .main-image {
  width: 100%;
  border-radius: 20px;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12); */
}

/* Responsive */
@media (max-width: 991px) {
  .experience-box {
    right: 20px;
    bottom: 20px;
    padding: 25px 30px;
    font-size: 18px;
  }
}

/* READ MORE */
.read-more-box {
  margin-top: 25px;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #0d6efd, #004aad);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 74, 173, 0.25);
}

.read-more-btn i {
  transition: transform 0.3s ease;
}

.read-more-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 74, 173, 0.4);
  color: #fff;
  background: #e51a4b;
}

.read-more-btn:hover i {
  transform: translateX(5px);
}

/* Experience Card */
.experience-box {
  position: absolute;
  right: -20px;
  top: 209px;
  background: #1b1d3d;
  padding: 40px 35px;
  border-radius: 89px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  z-index: 3;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
}

/* Right Content */
.content-box h2 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
  color: #1b1d3d;
}

.content-box p {
  color: #6c757d;
  font-size: 15px;
  line-height: 1.7;
}

.feature-item {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: #e8f0ff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 22px;
  color: #0066ff;
}

.feature-text h5 {
  margin: 0;
  font-weight: 600;
  color: #1b1d3d;
}

.feature-text p {
  margin: 3px 0 0;
  font-size: 14px;
}

/* Signature */
.signature {
  margin-top: 30px;
}

.signature img {
  width: 120px;
  margin-bottom: 5px;
}

.signature h6 {
  margin: 0;
  font-weight: 600;
}

.signature span {
  font-size: 13px;
  color: #6c757d;
}

/* Responsive */
@media (max-width: 991px) {
  .img-bottom {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 20px;
  }

  .experience-box {
    position: relative;
    right: 0;
    top: 0;
    margin-top: 20px;
    display: inline-block;
  }
}

/* ============================= */
/* Extra Large Devices (1400px+) */
/* ============================= */
@media (min-width: 1400px) {
  .section-wrapper {
    padding: 120px 0;
  }
}

/* ============================= */
/* Large Devices (1200px - 1399px) */
/* ============================= */
@media (max-width: 1399px) {
  .img-top {
    width: 80%;
  }

  .img-bottom {
    left: 100px;
    width: 80%;
  }

  .experience-box {
    right: -10px;
  }
}

/* ============================= */
/* Medium Devices (992px - 1199px) */
/* ============================= */
@media (max-width: 1199px) {
  .content-box h2 {
    font-size: 28px;
  }

  .img-top {
    bottom: -200px;
  }

  .img-bottom {
    left: 80px;
  }
}

/* ============================= */
/* Tablets (768px - 991px) */
/* ============================= */
@media (max-width: 991px) {
  .section-wrapper {
    padding: 70px 0;
    text-align: center;
  }

  .image-stack {
    margin-bottom: 40px;
  }

  .img-top {
    position: relative;
    bottom: 0;
    width: 100%;
  }

  .img-bottom {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    margin-top: 20px;
  }

  .experience-box {
    position: relative;
    right: 0;
    top: 0;
    margin: 20px auto 0;
    display: inline-block;
  }

  .feature-item {
    justify-content: center;
    text-align: left;
  }
}

/* ============================= */
/* Mobile Devices (576px - 767px) */
/* ============================= */
@media (max-width: 767px) {
  .section-wrapper {
    padding: 60px 0;
  }

  .content-box h2 {
    font-size: 24px;
  }

  .content-box p {
    font-size: 14px;
  }

  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-icon {
    margin-bottom: 10px;
  }

  .read-more-btn {
    padding: 10px 22px;
    font-size: 14px;
  }
}

/* ============================= */
/* Small Mobile Devices (below 576px) */
/* ============================= */
@media (max-width: 575px) {
  .section-wrapper {
    padding: 50px 0;
  }

  .content-box h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  .experience-box {
    padding: 25px 20px;
    font-size: 16px;
    border-radius: 50px;
  }

  .feature-text h5 {
    font-size: 16px;
  }

  .feature-text p {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------------------------------------------------------------------------------------*/

/* SERVICES SECTION */
.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  transition: all 0.4s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Animated Border Glow */
.service-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: #1b1d3d;
  color: #fff !important;
  background-size: 300% 300%;
  animation: borderMove 6s linear infinite;
  z-index: -1;
  opacity: 0;
  transition: 0.4s;
}

@keyframes borderMove {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.service-card:hover::before {
  opacity: 1;
}

/* title */
.service-title h4 {
  color: #1b1d3d;
  transition: color 0.3s ease;
}

/* When full card is hovered */
.service-card:hover .service-title h4 {
  color: #ffffff;
}

/* Image */
.service-image {
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Overlay */
.service-overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  opacity: 0;
  transition: 0.5s ease;
}

.overlay-inner {
  color: #fff;
  transform: translateY(30px);
  transition: 0.5s ease;
  margin-top: 118px;
}

.overlay-inner h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 600;
}

.overlay-inner p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* Explore Button */
.explore-btn {
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.4s ease;
}

.explore-btn .arrow {
  transition: transform 0.3s ease;
}

.explore-btn:hover {
  background: #e51a4b;
  color: #fff;
}

.explore-btn:hover .arrow {
  transform: translateX(5px);
}

/* Title below image */
.service-title {
  padding: 18px;
  text-align: center;
}

.service-title h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* Hover Effects */
.service-card:hover img {
  transform: scale(1.15);
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-card:hover .overlay-inner {
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.services-section {
  /* background: linear-gradient(135deg, #141e30, #243b55); */
  padding-bottom: 25px;
  color: #fff;
  margin-top: 50px;
}

.services-container {
  width: 90%;
  margin: auto;
}

/* HEADER */
.services-header {
  text-align: center;
  margin-bottom: 80px;
}

.services-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services-header p {
  font-size: 18px;
  opacity: 0.8;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

/* SERVICE CARD */
/* ICON */
.service-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #00f5d4;
  transition: 0.3s;
}

.service-icon {
  transform: scale(1.2) rotate(5deg);
}

/* TEXT */
.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-header h2 {
    font-size: 28px;
  }

  .services-header p {
    font-size: 15px;
  }
}

/* Services */

.services {
  /* background: #0f766e; */
  /* padding: 60px 5px;
  color: white; */
  background: #f8fafc;
  padding: 60px 5px;
  color: #1b1d3d;
  /* margin-top: 50px; */
}

.container {
  max-width: 1200px;
  margin: auto;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.sub-title {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 10px;
}

.header h2 {
  font-size: 36px;
  font-weight: 600;
}

.header span {
  color: #e51a4b;
  font-weight: 800;
}

.view-btn {
  background: #1b1d3d;
  border: none;
  padding: 12px 22px;
  border-radius: 25px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  color: #fff;
}

.view-btn:hover {
  color: #fff;
  background: #e11d48;
}

.card-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}


@media (max-width: 992px) {
  .card-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .card-wrapper {
    grid-template-columns: 1fr;
  }
}

.card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  max-width: 350px;
  color: #333;
  position: relative;
  transition: all 0.5s ease;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.15),
    0 5px 10px rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-15px) scale(1.04);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(250, 204, 21, 0.4),
    /* yellow glow */ 0 0 60px rgba(250, 204, 21, 0.2);
}

.card:hover {
  animation: glowPulse 1.5s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from {
    box-shadow:
      0 25px 60px rgba(0, 0, 0, 0.35),
      0 0 20px rgba(250, 204, 21, 0.3);
  }

  to {
    box-shadow:
      0 30px 70px rgba(0, 0, 0, 0.4),
      0 0 40px rgba(250, 204, 21, 0.6);
  }
}

.card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.card-content {
  padding: 18px;
  position: relative;
}

.card-content h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.card-content p {
  font-size: 14px;
  color: #777;
}

.arrow-btn {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  background: #facc15;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s;
}

.arrow-btn:hover {
  background: #eab308;
}

/* Responsive */
@media (max-width: 992px) {
  .card-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }

  .header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/*--------------------------------------------------------------------------------------------------------------------------------------------*/
/* BLOG SECTION */
.blog-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  height: 65%;
  display: flex;
  flex-direction: column;
  margin-bottom: 55px;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.blog-image {
  overflow: hidden;
  height: 240px;
}

.theme-title .tran3s {
  background-color: #1b1d3d;
  color: #fff;
}

.blog-image img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.08);
}

.blog-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-content h4 a {
  text-decoration: none;
  color: #111;
  transition: color 0.3s ease;
}

.blog-content h4 a:hover {
  color: #c9a14a;
  /* luxury gold tone */
}

.blog-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.read-btn {
  font-size: 14px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.read-btn:hover {
  color: #c9a14a;
  letter-spacing: 2px;
}

/* MAIN CARD */
.uxs-card-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #1b1d3d;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Animated Border Glow */
.uxs-card-box::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, #00c6ff, #0072ff, #e51a4b);
  background-size: 300% 300%;
  animation: uxsBorderMove 6s linear infinite;
  z-index: -1;
  opacity: 0;
  transition: 0.4s;
}

@keyframes uxsBorderMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.uxs-card-box:hover::before {
  opacity: 1;
}

/* Image */
.uxs-card-image {
  width: 80px;
  height: 70px;
  object-fit: cover;
  margin: auto;
  border-radius: 5px;
  border: 0.5px solid #fff;
  transition: transform 0.4s ease;
}

.uxs-card-box:hover .uxs-card-image {
  transform: scale(1.1);
}

/* Title */
.uxs-card-title {
  color: #fff;
  margin: 10px 0;
  transition: 0.3s;
}

.uxs-card-box:hover .uxs-card-title {
  color: #00c6ff;
}

/* Divider */
.uxs-card-divider {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 15px 0;
}

/* Description */
.uxs-card-text {
  color: #dadada;
  font-size: 14px;
  line-height: 1.6;
}

/* Card Hover Lift Effect */
.uxs-card-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

/* Remove default link styling */
.uxs-card-link {
  text-decoration: none;
}

/*-------------------------------------------------------------------------------------------------------------------------------------------*/
/* Map Embed */
.map-section {
  padding: 80px 0;
  /* background: linear-gradient(135deg, #1b1d3d, #2c2f6c); */
}

.map-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.map-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: 0.4s ease;
  border: 4px solid rgba(255, 255, 255, 0.1);
}

.map-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.map-card iframe {
  width: 100%;
  height: 350px;
  border: 0;
  filter: grayscale(20%) contrast(110%);
  transition: 0.4s ease;
}

.map-card:hover iframe {
  filter: grayscale(0%) contrast(100%);
}
