@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  overflow-x: hidden;
}

/* Navbar styling */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  padding: 1rem 2rem;
  color: white;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
}

.navbar .logo img {
  width: 120px;
  height: auto;
}

.nav-link ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-link a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-link a:hover {
  color: #ffcc00;
}

.search input[type="search"] {
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* Main content styling */
.section-container {
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 120vh;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  padding-bottom: 150px;
  background-color: rgba(0, 0, 0, 0.6);
}
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.6;
}
.section-container .main-head,
.section-container .logo-link {
  position: relative;
  z-index: 1;
  color: white;
}
.logoimg {
  /* margin-top: 10px; */
}
.logoimg img {
  width: 370px;
}

/* .main-head {
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;

        
} */
.main-head h1 {
  font-size: 4rem;
  color: #fff;
  font-family: ui-monospace;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.main-head p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: wheat;
  margin-bottom: 1.5rem;
  width: 90%;
}

.logo-link {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  margin-top: 1.5rem;
  width: 70%;
}
.logo-link-img a {
  text-decoration: none;
}

.logo-link-img a img {
  height: 250px;
  width: 280px;
  border-radius: 8px;
  transition: transform 0.3s;
  border-radius: 50%;
  /* height: auto; */
  display: block;
  object-fit: fill;
  animation: zoom 3s infinite ease-in-out;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.zoom-effect {
  animation: zoom 3s infinite ease-in-out;
}
.logo-link-img a p {
  margin-top: 20px;
  color: white;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.click-here {
  color: gold;
}
.click-here:hover {
  color: rgb(171, 163, 120);
}

.logo-link-img img:hover {
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav-link ul {
    flex-direction: column;
    gap: 1rem;
  }

  .search input[type="search"] {
    width: 100%;
    margin-top: 1rem;
  }

  .logo-link {
    flex-direction: column;
    gap: 1rem;
  }
}

/* About section start */
.about-container {
  display: flex;
  width: 80%;
  margin: 60px auto;
  justify-content: center;
  align-items: center;
}
.about-img {
  margin: 15px 15px;
  width: 60%;
}
.about-img img {
  width: 560px;
  border-radius: 18px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: scale(0.9);
  animation: fadeInZoom 3.5s ease-out forwards;
}

.about-desc {
  width: 50%;
  margin: 12px;
}
.about-desc h2 {
  font-size: 36px;
  /* background: green; */
  border-radius: 22px;
  color: white;
  padding: 3px 19px;
  margin-bottom: 25px;
  font-family: sans-serif;
  background-image: linear-gradient(68deg, #005a05, #09b3008c, transparent);
}
.about-para {
  padding: 10px 13px;
  font-size: 17px;
  word-spacing: 7px;
}
.meta {
  font-weight: 700;
  font-size: 18px;
  color: green;
}
.btn-about {
  text-align: center;
  margin-top: 20px;
}

.btn {
  position: relative;
  background-color: #005a05;
  color: white;
  font-size: 16px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: sans-serif;
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn::before,
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #09b300;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 1;
  color: white;
}

.btn::after {
  background-color: #004700;
  transform-origin: right;
}

.btn:hover {
  color: #fff;
}

.btn:hover::before {
  transform: scaleX(1);
}

.btn:hover::after {
  transform: scaleX(1);
  transition-delay: 0.15s; /* Stagger the after effect */
}

.btn span {
  position: relative;
  z-index: 2;
}
/* About section end */

/* why metaphor start */
.why-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #eef7ff;
}

.why-section h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 30px;
}

.why-div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.water-drop {
  position: relative;
  width: 150px;
  height: 180px;
  background: radial-gradient(circle at top, #4fc3f7, #0288d1);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  text-align: center;
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.water-drop:hover {
  transform: translateY(-10px);
}

.water-drop img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 2px solid white;
}

.water-drop h3 {
  font-size: 1rem;
  margin: 0;
  font-weight: bold;
  color: white;
}

.water-drop::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  width: 20px;
  height: 30px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translateX(-50%);
}

/* why metaphor end */
/* introduction start */
.intro-container {
  display: flex;
  margin: 70px 40px;
  padding: 10px;
}
.intro-desc {
  width: 60%;
  padding: 20px 10px;
}
.intro-desc h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
  font-size: 36px;
  /* background: green; */
  border-radius: 22px;
  color: white;
  padding: 3px 19px;
  margin-bottom: 25px;
  font-family: sans-serif;
  background-image: linear-gradient(68deg, #005a05, #09b3008c, transparent);
}
.intro-list {
  padding: 10px 13px;
  font-size: 17px;
  word-spacing: 7px;
  list-style-type: disc;
  margin-left: 20px;
  color: #555;
}
.intro-list li {
  margin: 5px 5px;
  margin-bottom: 10px;
  line-height: 1.6;
}
.intro-img {
  width: 50%;
  border-radius: 10px;
  padding: 100px 49px;
}
.intro-img img {
  width: 560px;
  border-radius: 18px;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: scale(0.9);
  animation: fadeInZoom 3.5s ease-out forwards;
}

@keyframes fadeInZoom {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* introduction end */

/* Values Section start */

.values-section {
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.values-heading h1 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 25px;
  color: white;
  border-radius: 22px;
  padding: 10px 20px;
  font-family: sans-serif;
  background-image: linear-gradient(68deg, #005a05, #09b3008c, transparent);
}

.values-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; /* Adds space between grid items */
  align-items: center;
  justify-content: center;
}

.values-desc {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: sans-serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.values-desc h3 {
  font-size: 18px;
  color: #005a05;
  margin-bottom: 10px;
}

.values-desc p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.values-desc:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  background-color: #eefcef;
  cursor: pointer;
  border-bottom: 2px solid green;
}

.values-desc:hover h3 {
  color: #028a02; /* Darker green on hover */
}

.values-desc:hover p {
  color: #333; /* Slightly darker text on hover */
}

@media (max-width: 768px) {
  .values-info {
    grid-template-columns: 1fr 1fr; /* Two columns on medium screens */
  }
}

@media (max-width: 480px) {
  .values-info {
    grid-template-columns: 1fr; /* Single column on small screens */
  }
}

/* Values Section end */

/* Our Section start */

.our-section {
  width: 100%;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f0f8ff, #e0f7fa);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.our-section h1 {
  font-size: 36px;
  color: #0056a6;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
  letter-spacing: 1.5px;
}

.our-desc {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 30px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.our-vision,
.our-mission {
  flex: 1 1 calc(50% - 30px);
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 3px solid red;
}

.our-vision:hover,
.our-mission:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.our-vision h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #0077b6;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.our-mission h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #0077b6;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.our-vision p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}
.our-mission p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}
/* Responsive design */
@media (max-width: 768px) {
  .our-desc {
    flex-direction: column; /* Stack items on small screens */
    align-items: center;
  }

  .our-vision,
  .our-mission {
    flex: 1 1 100%; /* Full width on small screens */
  }
}

/* Our Section end */

/* Services section styling */
.service-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
  background: black;
  /* background: url(images/bb-img.jpg); */
}

.service-section h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: white;
}
.services {
  display: flex;
  justify-content: space-around;
  padding: 2rem;
  background-color: #f9f9f9;
  text-align: center;
  gap: 1.5rem;
  background: black;
}

.services-info {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  flex: 1;
  max-width: 350px;
  transition: transform 0.3s, box-shadow 0.3s;
}
#service-block1 {
  background: url("images/modo_img1.jpg");
}
#service-block2 {
  background: url("images/modo_img2.jpg");
}
#service-block3 {
  background: url("images/modo_img3.jpg");
}
#service-block1 h2,
#service-block1 p,
#service-block2 h2,
#service-block2 p,
#service-block3 h2,
#service-block3 p {
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay */
  padding: 1rem;
  border-radius: 5px;
  color: white;
}

#service-block1 button,
#service-block2 button,
#service-block3 button {
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
}
.services-info h2 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.services-info p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  word-spacing: 4px;
}

.services-info button {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.services-info button:hover {
  background-color: #555;
}

.services-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .services {
    flex-direction: column;
    align-items: center;
  }

  .services-info {
    max-width: 90%;
  }
}

/* Footer styling start */
.footer {
  color: white;
  padding: 2rem 0;

  /* Background Image */
  background: url("images/footer-img2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  /* Overlay Effect */
  position: relative; /* Required for the pseudo-element overlay */
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
  z-index: 1; /* Places the overlay below content */
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 95%;
  margin: auto;
  padding: 1rem;
  position: relative;
  z-index: 2;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffcc00;
}

.footer-section p,
.footer-section ul,
.footer-section a {
  color: #ddd;
  font-size: 1rem;
  text-decoration: none;
  line-height: 1.6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a:hover {
  color: #ffcc00;
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s;
}

.social-icons a img:hover {
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #aaa;
  background: black;
  z-index: 2;
  position: relative;
}

.footer-bottom p a {
  color: #ffcc00;
}
.footer-bottom p a:hover {
  color: pink;
}
.footer-section .logo img {
  width: 250px;
  height: auto;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

/* Footer styling end */

/* float button start */
.float_wa {
  position: fixed;
  width: 100px;
  height: 100px;
  bottom: 24px;
  left: 20px;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 32px;
  z-index: 100;
  border-radius: 61%;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.float_wa:hover {
  transform: scale(1.1); /* Slight zoom on hover */
}

.float_wa img {
  width: 100px;
  height: 100px;
  border-radius: 50px;
}

.float_call {
  position: fixed;
  bottom: 40px;
  right: 20px;
  width: 100px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.float_call:hover {
  transform: scale(1.1);
}

.float_call img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: contrast(1.5);
}
/* float button end */

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
  }

  .navbar .logo {
    margin-bottom: 10px;
  }

  .nav-link ul {
    display: none;
    flex-direction: column;
    align-items: center;
  }

  /* .nav-link.active ul {
        display: flex;
    } */

  .nav-link ul li {
    margin: 5px 0;
  }

  .search {
    width: 100%;
    margin-top: 10px;
    display: none;
  }

  /* Section Container */
  .section-container {
    text-align: center;
    padding: 20px;
    padding-top: 24%;
    height: auto;
  }

  .section-container .logoimg img {
    width: 100px;
  }

  .main-head h1 {
    font-size: 24px;
    margin-top: 10px;
  }

  .main-head p {
    font-size: 14px;
    margin-top: 10px;
  }
  /* Logo Links */
  .logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .logo-link .logo-link-img {
    width: 80%;
    margin-bottom: 20px;
  }

  .logo-link .logo-link-img img {
    width: 100%;
  }
  /* about container start */
  .about-container {
    flex-direction: column;
    margin: 0;
    width: 100%;
  }
  .about-img {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .about-img img {
    width: 320px;
  }
  .about-desc {
    width: 100%;
    padding: 10px 11px;
  }
  /* about container end */
  /* why metaphor start */
  .water-drop {
    width: 120px;
    height: 150px;
    padding: 10px;
  }

  .water-drop img {
    width: 60px;
    height: 60px;
  }

  .water-drop h3 {
    font-size: 0.9rem;
  }
  /* Services Section */
  .services {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .services .services-info {
    width: 90%;
    margin-bottom: 20px;
    text-align: center;
  }

  .services .services-info h2 {
    font-size: 18px;
  }

  .services .services-info p {
    font-size: 14px;
  }

  .intro-container {
    flex-direction: column;
    align-items: center;
    margin: 20px;
  }

  .intro-desc {
    width: 100%;
    text-align: center; /* Centers text for smaller screens */
  }

  .intro-desc h2 {
    font-size: 28px;
  }

  .intro-list {
    font-size: 16px;
    word-spacing: 3px;
  }

  .intro-img {
    width: 100%;
    padding: 10px;
  }

  .intro-img img {
    width: 100%; /* Ensures full-width scaling on smaller devices */
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .why-section h2 {
    font-size: 1.5rem;
  }

  .why-div {
    gap: 10px;
  }

  .water-drop {
    width: 100px;
    height: 130px;
  }

  .water-drop img {
    width: 50px;
    height: 50px;
  }

  .water-drop h3 {
    font-size: 0.8rem;
  }
}

.circle {
  height: 24px;
  width: 24px;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999999;
  transform-origin: center;
  transform: scale(1);
  transition: transform 0.2s;
}

/* contactpage start */

.contactpage_top {
  height: 300px;
  background:url("images/contactpage-img.jpg")top center;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  /* background-image: linear-gradient(hsl(240 100% 20% /0.6), hsl(0 100% 15%/0.6)); */

}
.contactpage_top::before{
  content: ''; 
  position: absolute;
  inset: 0;
 background-image: linear-gradient(hsl(240 100% 20% /0.6), hsl(0 100% 15%/0.6));
  z-index: -1;
 }
.contactpage_top h1{
  font-size: 50px;
  font-family: poppins,sans-serif;
  text-shadow: 2px 0px 4px black;
  color: #eef4fc;
  filter: brightness(1.5);
}
.contactpage-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  /* position: relative; */
  padding: 40px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  /* background: url("images/contactform.jpg") top center; */
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(hsl(240 100% 20% /0.6), hsl(0 100% 15%/0.6));
  z-index: 1;
}

/* Info Section */
.contactpage-info {
  flex: 1;
  min-width: 300px;
  font-family: "Montserrat", sans-serif;
  /* color: #333; */
  
}

.contactpage-info h1 {
  font-size: 32px;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  color: #ffcc00;
  font-family: cursive;
  font-weight: 400;
}

.contactpage-info p {
  margin-bottom: 15px;
  line-height: 1.5;
  font-family: cursive;
  color: antiquewhite;
}

.contactpage-info a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.contactpage-info a:hover {
  color: #0056b3;
}

/* Form Section */
.contactpage-form {
  flex: 1;
  min-width: 300px;
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background: url("images/contactform.jpg")top center;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  border-bottom: 3px solid yellow;
}

.contactpage-form::before{
  content: ''; 
  position: absolute;
  inset: 0;
 background-image: linear-gradient(hsl(240 100% 20% /0.6), hsl(0 100% 15%/0.6));
 border-radius: 12px;
 z-index: -1;
 }
.contactpage-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contactpage-form label {
  font-weight: bold;
  color: #caff4e;
}

.contactpage-form input,
.contactpage-form textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

.contactpage-form button {
  padding: 12px;
  font-size: 18px;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.contactpage-form button:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contactpage-container {
    flex-direction: column;
  }

  .contactpage-info,
  .contactpage-form {
    width: 100%;
  }
}
.map-section {
  padding: 50px;
  background-color: #f9f9f9;
  text-align: center;
}

.map-container {
  max-width: 100%;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  border: none;
  border-radius: 12px;
}
/* contactpage end */
