/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #272829;
}

a {
  color: #13a2b7;
  text-decoration: none;
}

a:hover {
  color: #067ded;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}
p {
  color: #45505b;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #13a2b7;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #0678e3;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #13a2b7;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

.text-primary {
  color: #13A2B7 !important;
}
.btn-primary {
  border: 2px solid #13a2b7;
  background: #13A2B7;
  color: #ffffff;
}
.btn-outline-primary {
  background: #ffffff;
  color: #13a2b7;
  border: 2px solid #ffffff;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9997;
  transition: all 0.5s;
  padding: 15px;
  overflow-y: auto;
}

@media (max-width: 991px) {
  #header {
    width: 300px;
    background: #fff;
    border-right: 1px solid #e6e9ec;
    left: -300px;
  }
}
/* 
@media (min-width: 991px) {
  #main {
    margin-left: 100px;
  }
} */

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.nav-menu {
  padding: 0;
  display: block;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu>ul>li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color: #45505b;
  padding: 10px 18px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
  border-radius: 5px;
  background: #f2f3f5;
  height: 56px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
}

.nav-menu a i,
.nav-menu a:focus i {
  font-size: 20px;
}

.nav-menu a span,
.nav-menu a:focus span {
  padding: 0 5px 0 7px;
  color: #45505b;
}

@media (min-width: 992px) {

  .nav-menu a,
  .nav-menu a:focus {
    width: 56px;
  }

  .nav-menu a span,
  .nav-menu a:focus span {
    display: none;
    color: #fff;
  }
}

.nav-menu a:hover,
.nav-menu .active,
.nav-menu .active:focus,
.nav-menu li:hover>a {
  color: #fff;
  background: #13A2B7;
}

.nav-menu a:hover span,
.nav-menu .active span,
.nav-menu .active:focus span,
.nav-menu li:hover>a span {
  color: #fff;
}

.nav-menu a:hover,
.nav-menu li:hover>a {
  width: 100%;
  color: #fff;
}

.nav-menu a:hover span,
.nav-menu li:hover>a span {
  display: block;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 28px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 0;
  cursor: pointer;
  border-radius: 50px;
  padding: 5px;
}

.mobile-nav-toggle i {
  color: #45505b;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle {
  color: #fff;
  background-color: #13a2b7;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* ===============================
   HERO SECTION – ENHANCED
================================ */

#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  background: url("../img/doctorbanner.jpeg") center right no-repeat;
  background-size: cover;
  overflow: hidden;
}

/* Dark + medical tone overlay */
#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(6, 56, 121, 0.65),
    rgba(6, 56, 121, 0.25)
  );
  z-index: 1;
}

/* Soft vignette for premium look */
#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: radial-gradient(
    circle at center,
    rgba(172, 172, 172, 0.15) 0%,
    rgba(128, 128, 128, 0.45) 100%
  ); */
  background: linear-gradient(rgba(231, 245, 246, 0.2), rgba(231, 245, 246, 0.2));
  z-index: 2;
}

/* Hero content */
#hero .container {
  position: relative;
  z-index: 3;
}

/* Typography enhancement */
#hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

#hero p {
  font-size: 22px;
  max-width: 547px;
  opacity: 1;
}

/* CTA button polish */
/* #hero .btn-primary {
  padding: 12px 28px;
  font-size: 0.95rem;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
} */

/* Mobile optimization */
@media (max-width: 768px) {
  #hero {
    background-position: center;
  }

  #hero h1 {
    font-size: 2.4rem;
  }

  #hero p {
    font-size: 1rem;
  }
}


@media (min-width: 992px) {
  #hero {
    padding-left: 160px;
  }
}

/* #hero:before {
  content: "";
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
} */

#hero h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  color: #111111;
}

#hero p {
  color: #45505b;
  margin: 15px 0 15px 0;
  font-size: 22px;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
}
#hero .btn {
  background: #13a2b7;
  border: 2px solid #13a2b7;
  padding: 12px 30px 10px;
  font-weight: 600;
 }

@media (max-width: 992px) {
  #hero {
    text-align: center;
  }

  #hero h1 {
    font-size: 32px;
    line-height: 36px;
  }

  #hero p {
    margin-top: 10px;
    font-size: 18px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #45505b;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #13a2b7;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}
.section-bg {
 background: #E7F5F6;
}
.activities-section,.service_area {
  padding: 0px;
  margin:5rem;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 500;
  font-size: 28px;
  display: flex;
  align-items: center;
}
.about .bi {
  color: #13A2B7;
  font-size: 20px;
}
.about span {
  font-size: 14px;
  font-weight: 600;
}




/*--------------------------------------------------------------
# experience
--------------------------------------------------------------*/
.experience {
  background: linear-gradient(rgba(231, 245, 246, 0.7), rgba(231, 245, 246, 0.7)), url("../img/profilebg.jpg") top right no-repeat;
  background-size: cover;
  position: relative;
}
/* .experience:before {
  content: "";
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
} */

.experience .experience-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #45505b;
}

.experience .experience-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #13A2B7;
  position: relative;
}

.experience .experience-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  font-family: "Poppins", sans-serif;
  color: #13A2B7;
  margin-bottom: 10px;
}

.experience .experience-item h5 {
  font-size: 13px;
  background: #f7f8f9;
  padding: 5px 20px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.experience .experience-item ul {
  padding-left: 20px;
}

.experience .experience-item ul li {
  padding-bottom: 10px;
}

.experience .experience-item:last-child {
  padding-bottom: 0;
}

.experience .experience-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #13A2B7;
}
/****************************/
/*SECTION3*/
.footer {
  width:100%;
   background: linear-gradient(rgba(231,245,246,0.9), rgba(231, 245, 246, 0.9)),
   url("https://i.ibb.co/Sft7gKp/bg2.webp"); 
   /* background: linear-gradient(rgba(231, 245, 246, 0.5), (rgba(231, 245, 246, 0.5)),
   url("https://i.ibb.co/Sft7gKp/bg2.webp"); */
  background-size:cover;
  position:relative;
  padding:3vh 0;
  overflow:hidden;
  }

  

/*   
  .footer .content{
  position:absolute;
  top:20vh;
  right:2vw;
  width:40%;
  } */
  
/* keep all original classes, just refresh aesthetics */
    /* demo container – simulates footer column */
    .demo-wrapper {
      max-width: 1400px;
      margin: 0 auto;
      /* background: #f9fffd;
      border-radius: 50px 50px 30px 30px;
      box-shadow: 0 30px 40px -35px #16635a; */
      overflow: hidden;
    }

    /* ----- RESPONSIVE LEFT CONTENT (exact classes, exact content) ----- */
    .footer .content h1 {
      font-size: 2.4rem;           /* base for large desktop */
      font-weight: 500;
      color: #0c3b3a;
      letter-spacing: -0.02em;
      line-height: 1.2;
      margin-bottom: 1.2rem;
      transition: font-size 0.2s ease;
    }

    .footer .content p {
      font-size: 1.15rem;
      color: #265b58;
      line-height: 1.5;
      max-width: 520px;            /* keeps readable measure */
    }

    /* chamber card */
    .footer-chamber-info {
      background: #ffffffde;
      backdrop-filter: blur(2px);
      border-radius: 4px;
      padding: 1.4rem 2rem 1.6rem 2rem;
      box-shadow: 0 15px 24px -23px #0c4d4d;
      border: 1px solid rgba(42, 120, 110, 0.25);
      max-width: 520px;            /* fits nicely on desktop */
      width: 100%;                 /* allow shrink on small screens */
    }

    .footer-chamber-info p {
      font-size: 1.05rem !important;
      display: flex;
      align-items: baseline;
      gap: 0.5rem;
      margin-bottom: 0.8rem;
      color: #1b4e4a;
      flex-wrap: wrap;            /* for extreme tiny screens, text won't overflow */
    }

    .footer-chamber-info i {
      color: #13A2B7;
      font-size: 1.25rem;
      min-width: 2rem;
      text-align: center;
      flex-shrink: 0;
    }

    .footer-chamber-info .small {
      color: #4d7070;
      font-weight: 400;
      margin-left: 2.4rem;        /* aligns under text (desktop) */
      font-size: 0.95rem;
    }

    /* preserve .d-block small for the address line */
    .footer-chamber-info .d-block.small {
      margin-left: 2.4rem;         /* keeps indentation consistent */
      width: calc(100% - 2.4rem);
    }
.meet_doctors {
  background: #13A2B7;
  padding: 70px 97px;
  height:100%;
}
    /* ----- RESPONSIVE BREAKPOINTS (preserve content, adjust only layout/scale) ----- */
    /* large desktop: everything as given */
    @media (min-width: 1400px) {
      .footer .content h1 { font-size: 2.6rem; } /* subtle extra presence */
    }

    /* typical desktop to small laptop (1024px - 1399px) -> already fine */
    @media (max-width: 1199px) {
      .footer .content h1 { font-size: 2.2rem; }
      .footer .content p { font-size: 1.1rem; max-width: 480px; }
      .footer-chamber-info { max-width: 100%; }
    }
 @media (max-width: 1024px) {
      .footer .content h1 { font-size: 2.2rem; }
      .footer .content p { font-size: 1.1rem; max-width: 480px; }
      .footer-chamber-info { max-width: 100%; }
      .meet_doctors {
    padding: 0;
}
    }
    /* tablet landscape / small desktop (991px) — the col-md-6 stacks in Bootstrap */
    @media (max-width: 991px) {
      /* left content inside stacked column, reset margins */
      .content.ps-lg-5.ms-lg-5 {
        padding-left: 1rem !important;
        margin-left: 0 !important;
      }
      .footer .content h1 { font-size: 2.1rem; }
      .footer .content p { font-size: 1.05rem; max-width: 100%; }
      .footer-chamber-info { max-width: 100%; margin-bottom:10px; } /* take full width in stacked layout */
    .meet_doctors {
    padding: 0;
}
    }

    /* tablet portrait (768px) */
    @media (max-width: 768px) {
      .footer .content h1 { font-size: 2rem; }
      .footer .content p { font-size: 1rem; }
      .footer-chamber-info {
        padding: 1.2rem 1.3rem 1.4rem 1.3rem;
        border-radius: 4px;
      }
      .footer-chamber-info p {
        font-size: 0.98rem !important;
        gap: 0.4rem;
      }
      .footer-chamber-info i {
        font-size: 1.2rem;
        min-width: 1.8rem;
      }
      /* adjust small indentation for tablet */
      .footer-chamber-info .small,
      .footer-chamber-info .d-block.small {
        margin-left: 2.2rem;
      }
      .activities-section,.service_area {
  margin:2rem;
}
.meet_doctors {
    padding: 0;
}
    }

    /* large phone (600px) */
    @media (max-width: 600px) {
      .footer .content h1 { font-size: 1.8rem; }
      .footer .content p { font-size: 0.98rem; line-height: 1.45; }
      .footer-chamber-info {
        padding: 1rem 1.2rem 1.2rem 1.2rem;
      }
      .footer-chamber-info p {
        font-size: 0.92rem !important;
        gap: 0.3rem;
      }
      .footer-chamber-info i {
        font-size: 1.1rem;
        min-width: 1.6rem;
      }
      /* reduce left margin for small so it doesn't create huge gap */
      .footer-chamber-info .small,
      .footer-chamber-info .d-block.small {
        margin-left: 1.9rem;
        width: calc(100% - 1.9rem);
      }
      .footer-chamber-info { max-width: 100%; }
    }

    /* small phone (480px) – make it fully fluid */
    @media (max-width: 480px) {
      .footer-chamber-info { max-width: 70%; }
      .footer .content h1 { font-size: 1.6rem; }
      .footer .content p { font-size: 0.9rem; }
      .footer-chamber-info p {
        flex-wrap: wrap;           /* if needed, icon + text can stack, but we keep inline */
      }
      /* for the address line, we ensure indentation is smaller */
      .footer-chamber-info .d-block.small {
        margin-left: 1.6rem;       /* aligns under text that starts after icon */
        font-size: 0.85rem;
      }
      .footer-chamber-info .small {
        margin-left: 1.6rem;
        font-size: 0.85rem;
      }
      .footer-chamber-info i {
        min-width: 1.4rem;
        font-size: 1rem;
      }
    }

    /* ensure that on very narrow screens the flex doesn't break awkwardly */
    @media (max-width: 360px) {
      .footer-chamber-info p {
        flex-direction: column;    /* icon above text (clean fallback) */
        align-items: flex-start;
        gap: 0.2rem;
      }
      .footer-chamber-info i {
        min-width: auto;
      }
      .footer-chamber-info .small,
      .footer-chamber-info .d-block.small {
        margin-left: 0;            /* remove left indent when stacked */
        width: 100%;
      }
    }

    /* utility to visualize left content in a grid column (right column empty) */
    .right-placeholder {
      background: transparent;
      min-height: 50px;
    }



 .form{
  background:#fff;
  padding:2rem;
  box-shadow:0px 6px 16px -6px rgba(1,1,1,0.5);
  border-radius:5px;
  text-align:center;
  width:70%;
  margin:auto;
  position:relative;
  }
  
   .form h4{
  color:gray;
  letter-spacing:0.08em;
  }
  
   .form h1{
  font-size:2em;
  position:relative;
  }
  
   .form input, .form select{
  display: block;
  margin: 10px auto;
  padding: 1rem;
  background: transparent;
  border: 1px solid gray;
  border-radius: 5px;
  color:gray;
  font-weight: 600px;
  width:100%;
  }

  .form .btn {
    padding: 1rem;
    background-color: #13A2B7;
    border: 2px solid #13A2B7;
    font-weight: 600;
  }
  
  @media  (max-width:320px){
  .activities-section,.service_area {
  margin:1rem;
}
.meet_doctors {
    padding: 0;
}
}
/*--------------------------------------------------------------
# specialization
--------------------------------------------------------------*/
.specialization {
  background-color: #E7F5F6;
}
.specialization .icon-box {
  text-align: center;
  padding: 44px 40px;
  transition: all ease-in-out 0.3s;
  background: #13A2B7;
  /* box-shadow: 0px 5px 90px 0px rgba(110, 123, 131, 0.05); */
}

.specialization .icon-box .icon {
 font-size: 50px;
 color: #fff;
 /* color: #13A2B7; */
}

.specialization .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.specialization .icon-box h4 a {
  /* color: #45505b; */
  color: #ffffff;
  transition: ease-in-out 0.3s;
}

.specialization .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

.specialization .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
/* .testimonials {
  background: #E7F5F6;
} */
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #90c8fc;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #13a2b7;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #13a2b7;
}

.testimonials .stars {
  margin-top: -13px;
}
.testimonials .stars i {
  color: #ffc107;
  margin: 0 1px;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/******************************/


.service_area {
  background: #E7F5F6;
}

.service_area .single_service_left {
  padding: 70px 30px;
  color: #13A2B7;
}
.service_area .single_service {
  padding: 70px 30px;
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 3, C:/Users/SPN Graphics/Desktop/CL September/210 Medical/HTML/scss/_service.scss */
  .service_area .single_service {
    padding: 40px 20px;
  }
}

/* line 8, C:/Users/SPN Graphics/Desktop/CL September/210 Medical/HTML/scss/_service.scss */
.service_area .single_service .icon {
  margin-bottom: 10px;
}

/* line 10, C:/Users/SPN Graphics/Desktop/CL September/210 Medical/HTML/scss/_service.scss */
.service_area .single_service .icon i {
  font-size: 50px;
  color: #fff;
}

/* line 15, C:/Users/SPN Graphics/Desktop/CL September/210 Medical/HTML/scss/_service.scss */
.service_area .single_service h3 {
  font-size: 26px;
  font-weight: 500;
  color: #fff;
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 15, C:/Users/SPN Graphics/Desktop/CL September/210 Medical/HTML/scss/_service.scss */
  .service_area .single_service h3 {
    font-size: 20px;
  }
}

/* line 23, C:/Users/SPN Graphics/Desktop/CL September/210 Medical/HTML/scss/_service.scss */
.service_area .single_service p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 26px;
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 34, C:/Users/SPN Graphics/Desktop/CL September/210 Medical/HTML/scss/_service.scss */
  .service_area .single_service .boxed-btn3-white {
    padding: 5px 10px;
  }
}

/* line 40, C:/Users/SPN Graphics/Desktop/CL September/210 Medical/HTML/scss/_service.scss */
.service_area .col-xl-7:nth-child(2) .single_service {
  background: #13A2B7;
}
.meet_doctors iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.card-img-wrapper {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
}

.card-img-wrapper img {
  max-height: 100%;
  object-fit: contain;
}

.card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}
.card img {
  height: 120px;
  object-fit: contain;
}
.card i {
  background: #f1f5f9;
  padding: 10px;
  /* border-radius: 50%; */
}

.card:hover {
  transform: translateY(-6px);
  transition: 0.3s ease;
}
iframe {
            width: 100%; /* Makes the map responsive */
            height: 350px;
            border-radius: 8px;
            padding-left:30px;
            padding-right:30px;
            padding-top:10px;
            padding-bottom:10px;
            /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease; */
        }

        /* Hover effect for the map */
      /* iframe:hover {
            transform: scale(1.02); 
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        } */

        /* Optional: Add a title above the map */
        .map-title {
            text-align: center;
            color: #333;
            font-family: 'Arial', sans-serif;
            margin-bottom: 15px;
            font-size: 1.5rem;
            font-weight: 600;
        }