/* General Reset */
body, h1, p, ul, li, a {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: Arial, sans-serif;
    background: #f4f4f9;
    line-height: 1.6;
  }
  
  /* Navbar */
  .navbar {
    background: #333;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 20px;
  }
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
  }
  .navbar nav {
    display: flex;
  }
  .menu {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  .menu-item > a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 15px;
    display: block;
    transition: background 0.3s;
  }
  .menu-item > a:hover {
    background: #444;
    border-radius: 5px;
  }
  
  /* Submenu */
  .submenu {
    display: none;
    position: absolute;
    background: #444;
    padding: 10px 0;
    border-radius: 5px;
    top: 100%;
    left: 0;
    min-width: 150px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }
  .megamenu{
    display: none !important;
  }
  .dropdown:hover > .submenu {
    display: block;
  }
  .dropdown-mega:hover > .megamenu {
    display: block !important;
  }

  .submenu li {
    padding: 5px 15px;
    position: relative;
  }
  .submenu li a {
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
    display: block;
    transition: background 0.3s;
  }
  .submenu li a:hover {
    background: #555;
  }
  
  /* Mega Menu */
  .megamenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: #444;
    padding: 20px;
    width: 155px;
    display: flex;
    gap: 20px;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }
  .submenu .dropdown:hover > .megamenu {
    display: flex;
  }
  .mega-column {
    flex: 1;
  }
  .mega-column h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #fff;
  }
  .mega-column ul {
    list-style: none;
  }
  .mega-column li {
    margin-bottom: 5px;
  }
  .mega-column li a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
  }
  .mega-column li a:hover {
    color: #fff;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .navbar nav {
      display: none;
    }
    .navbar nav.active {
      display: flex;
      flex-direction: column;
      width: 100%;
    }
    .menu {
      flex-direction: column;
      gap: 0;
    }
    .menu-item > a {
      padding: 15px;
    }
  }
  
  li.menu-item.dropdown {
    position: relative;
}
.dropdown-mega{
    position: relative;
}
.headcls {
    position: absolute;
    padding-top: 1em;
    width: 100%
}
.banner {
    position: absolute;
    top: 0;
    height: 500px;
    width: 100%;
    background: url(../images/bann.jpg);
    background-position: bottom;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
.banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.navbar {
    border-radius: 50px;
    padding: 8px !important;
    background: #f38e3e;
    font-weight: 500;
}
.menu {
    margin-bottom: 0 !important;
}
.submenu li {
    list-style: none;
}
.mega-column ul {
    padding: 2px !important;
}
h1.type{
    color: #dbd56e;
    background: -webkit-linear-gradient(25deg, #008190, #f38e3e);
    font-weight: bold !important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3rem;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid;
    animation: type 3s steps(30, end) infinite, cursor 1s step-end infinite;
    position: relative;
  }
  
  /* Typing Animation */
  @keyframes type {
    0% {
      width: 0;
    }
    50% {
      width: 100%;
    }
    70% {
      width: 100%; /* Pause at full text */
    }
    100% {
      width: 0; /* Retract text */
    }
  }
  
  /* Cursor Blink Animation */
  @keyframes cursor {
    10% {
      border-color: transparent;
    }
  }
.log-img img {
    width: 100%;
    height: 100px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    object-fit: contain;
    background-color: #fff;
    border-radius: 15px;
}
.log-img {
    padding: 10px;
    border-radius: 15px;
}
section.med-log {
    position: relative;
    top: -4em;
    z-index: 999;
} 
.service-img img{
    width: 100%;
    height:auto;
    border-radius: 20px;
}
.ser-img {
    width: 50%;
}
.ser-img img {
    width: 100%;
    height: auto;
}
.ser-img {
    width: 50%;
    box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
    border-radius: 100%;
    padding: 1em;
}
.service.header h2 {
    color: #f38e3e;
    font-weight: bold;
    margin-bottom: 1em;
}
.abt-img img{
  width: 100%;
  height: auto;
}
.about {
  background-image: url(../images/aboutbg.jpg);
  margin: 3em 0;
  padding: 2em 0;
  color: #fff;
}
.abt-content {
  font-weight: 500;
}
.abt-content h2 {
  color: #fff190;
  font-weight: bold;
}
.abt-img img {
  /* box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset; */
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.abt-content button {
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  background: #f38e3e;
  color: #fff;
  font-weight: bold;
  padding: 10px;
  width: 25%;
  border-radius: 50px;
  border: 1px solid #e75333;
}
/* .nav-link.active:before {
  content: '';
  position: relative;
  bottom: -62px;
  left: 8%;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 20px solid #f38e3e;
} */
.service-offering h2 {
  text-align: center;
  color: #f38e3e;
  font-weight: bold;
  margin-bottom: 1em;
}
.service-offering .nav-link.active {
  background: #f38e3e !important;
  color: #fff !important;
  font-weight: bold;
}
.service-offering .nav-link {
  width: 30%;
  padding: 1em;
  height: 70px;
  border-radius: 20px !important;
  font-size: 22px;
}
.service-offering .offering-img img {
  width: 100%;
  height: auto;
}
.service-offering .nav-link img {
  width: 15%;
  background: #ddf3e8;
  border-radius: 100%;
  padding: 7px;
}
.service-offering .nav-link.active img {
  width: 15%;
  background: #fff !important;
  border-radius: 100%;
  padding: 7px;
}
.service-offering .tab-content {
  padding: 2em 0;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  border-radius: 20px;
  margin-top: 2em;
}
.service-offering .offering-content h3 {
  color: #008190;
  font-size: 22px;
}
.service-offering div#nav-tab {
  border: 1px solid #008190;
  border-radius: 20px;
  padding: 5px;
}
.service-offering .nav-link {
  color: #008190;
}
.appointment {
  background-image: url(../images/appointbg.jpg);
  height: 500px;
  background-size: cover;
  margin: 2em 0;
  padding: 2em 0;
  color: #fff;
}
.apnt img{
  width: 100%;
  height: auto;
}
.apnt img {
  width: 100%;
  height: 450px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  border-radius: 20px;
}

.contact-form h2 {
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 1em;
  margin-bottom: 15px;
  border: 1px solid #ffffff6b;
  border-radius: 5px;
  font-size: 1rem;
  background: #ececec;
  backdrop-filter: blur(30px);
  border: 2px solid rgbd(255, 255, 255, 0.37);
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 5;
  color: #fff !important;
  border-radius: 50px;
}
.contact-form textarea {
  resize: none;
  height: 100px;
}
.contact-form button {
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
}
.contact-form button:hover {
  background-color: #0056b3;
}
.contact-form textarea::placeholder {
  color: gray;
  padding-top: 10px;
}
.contact-form input::placeholder {
  color: gray;
}
.contact-form button {
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  background: #008190;
  color: #fff;
  font-weight: bold;
  padding: 10px;
  border-radius: 50px;
  border: 1px solid #008190;
}
.contact-form button:hover {
  background-color: green !important;
}
.apt-form h2 {
  color: green;
  font-weight: bold;
  margin-bottom: 1em;
}
.testimonial-image img{
  width: 100%;
  height:auto;
}
.testimonial-content img{
  width: 20%;
  height:auto;
  position: relative;
    left: -40px;
    margin-bottom: 1em;
}
.testimonials h2 {
  text-align: center;
  color: #f38e3e;
  font-weight: bold;
}
.testimonial-ro{
  padding: 2em;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    border-radius: 20px;
    margin-top: 2em;
}
.slick-arrow::before {
  background: #f38e3e;
  border-radius: 100%;
  font-size: 45px !important;
}
.testimonial-slide .slick-prev {
  /* left: 255px; */
  right: 100px !important;
  position: absolute;
  top: 310px !important;
  left: auto !important; 
  z-index: 1;
}
.testimonial-slide {
  position: relative;
}
.testimonial-slide .slick-next {
  right: 50px !important;
  top: 310px !important;
}
.testimonial-content h4 {
  color: #008190;
}
.testimonial-content span {
  color: #008190;
}
.footer{
  background-image: url(../images/bann.jpg);
  height: 350px;
  margin-top: 2em;
  padding: 8em 0 2em 0;
}
.copyright p {
  margin: 0;
}
.copyright {
  background-color: #f38e3e;
  color: #fff;
  font-weight: 500;
  padding: 1em 0;
}
.copyright b a{
  color: #fff !important; 
}
.vdo{
  background-image: url('../images/vdo.jpg');
  height: 350px;
  background-size: cover;
  position: relative;
  margin: 2em 0;
}

.video-button {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff5f6d, #ffc371);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.video-button:hover {
  transform: scale(1.1);
}

.video-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(0 4 2 / 55%);
  transform: scale(0);
  border-radius: 50%;
  animation: ripple 2s infinite;
  pointer-events: none;
}

@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  background-color: white;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1;
}

.video-overlay.active {
  opacity: 1;
  visibility: visible;
}

video {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}




.btn-dta{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 350px;
}
.overlay {
  position: absolute;
  background-image: linear-gradient(to right, #0081906e, #008190c9);
  height: 100%;
  top: 0;
  width: 100%;
}
.vdo-content {
  color: #fff;
  font-weight: 500;
  padding: 3em 0 0 0;
  z-index: 999 !important;
}
.vdo-content button {
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  background: #f38e3e;
  color: #fff;
  font-weight: bold;
  padding: 10px;
  width: 25%;
  border-radius: 50px;
  border: 1px solid #e75333;
}
.vdo-content h2 {
  font-weight: bold;
}
.youtube-player {
  width: 80%;
  max-width: 800px;
  height: 450px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.blog-image img{
  width: 100%;
  height:auto;
}
.blog h2 {
  color: #f38e3e;
  font-weight: bold;
  margin-bottom: 1em;
  text-align: center;;
}
.blog-data {
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  padding: 1em;
  border-radius: 20px;
}
.blog-image img {
  border-radius: 20px;
}
.blog-content h4{
  font-size: 20px;
  color: #800000;
  font-weight: bold;
}
.blog-image {
  position: relative;
}

.blog-image span {
  position: absolute;
  top: 1em;
  left: 1em;
  background: #fff;
  width: 70px;
  text-align: center;
  border-radius: 50px;
  font-size: 14px;
  color: #f38e3e;
}
.blog-content {
  margin-top: 1em;
}
.blg {
  padding: 1em;
}
.about-banner h2 {
  font-size: 45px;
  font-weight: bold;
}

.about-banner {
  background-image: url(../images/page_heading_bg.jpg);
  height: 500px;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #008190;
}
.abbt{
  position: relative;
}
.abbtimg img {
  width: 100%;
  height: auto;
  box-shadow: rgb(249 113 21 / 64%) -5px 5px, rgb(0 129 144 / 38%) -10px 10px, rgb(240 227 46 / 20%) -15px 15px, rgb(240 205 46 / 10%) -20px 20px, rgb(230 240 46 / 5%) -25px 25px;
  border-radius: 20px;
}
.about-data {
  margin: 2em 0;
}
.abbt-content h2 {
  color: #008190;
  font-size: 45px;
  font-weight: bold;
}
.abt-support {
  display: flex;
}
.abbt-content p {
  margin: 1em 0;
  font-weight: 400;
}
.support {
  padding: 1em;
}
.abbt-content button {
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  background: #f38e3e;
  color: #fff;
  font-weight: bold;
  padding: 10px;
  width: 25%;
  border-radius: 50px;
  border: 1px solid #e75333;
}



@media(max-width: 576px){
  h1.type{
    font-size: 22px !important;
  }
  .service h2{
    text-align: center;
    margin-top: 1em;
  }
  .ser-img img {
    width: 25% !important;
    height: auto;
    width: 50%;
    box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
    border-radius: 100%;
    padding: 1em;
}
.ser-img{
  box-shadow: none !important;
  width: 100%;
  text-align: center;
}
.megamenu {
  position: relative !important;
  width: 100% !important;
  left: 0 !important;
}
.cnnt-form {
  width: 100% !important;
  left: 0 !important; 
}
.video-overlay{
  position: relative !important;
}
.vdo-content {
  color: black !important;
}
.footer-data1 {
  position: relative !important;
  width: 100% !important;
  height: auto;
}
.vdo-content button {
  width: 100%;
}
.service-offering .nav-link img {
  width: 10%;
}
.service-offering .nav-link {
  width: 100%;
}
div#nav-tab {
  flex-wrap: nowrap;
  width: 100%;
  overflow-x: scroll;
}
section.service-offering .nav button {
  font-size: 14px;
}
section.service-offering .nav img {
  width: 30%;
}
.service-offering .nav-link.active img {
  width: 30%;
}
div#about-content button {
  width: 50%;
}
.abbt-content {
  margin-top: 2em;
}
.abbt-content button {
  width: 50%;
  margin-bottom: 1em;
}
.support h4 {
  font-size: 16px;
}
.cnntbg {
  padding: 206px 0 15px !important;
}
.gallery-data {
  height: auto !important;
}
}



.footer-data ul {
  padding: 0;
}
.footer-data ul li {
  list-style: none;
  color: #008190;
  font-weight: 500;
}
.footer-data h5 {
  color: #008190;
  font-weight: bold;
}
.support h4 img {
  background: mintcream;
  padding: 10px;
  border-radius: 100%;
  margin-right: 5px;
}
.support p {
  border-top: 1px solid #ececec;
  padding-top: 1em;
}
.appointment-img img {
  width: 100% !important;
  height: auto !important;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}
.cnnt-form {
  padding: 3em;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  width: 520px;
  position: relative !important;
  left: -10em;
  margin: 3em 0 !important;
  background: #fff !important;
}
.appointmentnew {
  margin: 3em 0;
}
.cnnt-form h2 {
  margin-bottom: 1em;
  color: #008190;
  font-weight: bold;
}
.cnnt-form span {
  background: #f38e3e;
  color: #fff;
  padding: 2px 1.5em;
  border-radius: 50px;
}
.cnntbg{
  width: 100%;
  height: 40%;
  background-color: #d8e6f3;
  border-top: 5px solid #008190;
  padding: 40px 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: end;
  gap: 40px;
  margin-top: -120px;
  justify-content: center
}
.contactimg img {
  background: #fff;
  padding: 2em;
  width: 60%;
  height: auto;
}
.contactimg {
  text-align: center;
}
.conntpg {
  margin: 2em 0 8em 0;
}
.cnntbg-img img {
  background: #008199;
  padding: 10px;
  border-radius: 20px;
}
.contactpg-form span {
  font-weight: 500;
  color: #f38e3e;
}
.contactpg-form h2 {
  font-weight: bold;
  color: #008190;
}
.contactpg-form {
  padding: 3em 1em;
}
.cnntbg span {
  font-weight: 500;
}
.blog-data {
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  padding: 1em;
  border-radius: 20px;
  margin: 1em 0;
}

.choose-feature-wrap {
  position: relative;
  z-index: 2;
}
.choose-feature-wrap:before {
  content: "";
  height: 70%;
  width: 1px;
  background-color: #f38e3e;
  position: absolute;
  top: 49px;
  left: 25px;
  z-index: -1;
}
.choose-feature {
  display: inline-flex;
  gap: 15px;
  margin-bottom: 23px;
  text-align: left;
}
.choose-feature .box-number {
  width: 100px;
  height: 55px;
  line-height: 50px;
  border: 1px solid #f38e3e;
  color: #f38e3e;
  text-align: center;
  border-radius: 999px;
  font-size: 24px;
  font-weight: 600;
  background-color: #fff;
  transition: 0.4s ease-in-out;
}
.choose-feature .media-body {
  border-bottom: 1px solid var(--th-border-color);
  padding-bottom: 34px;
}
.choose-content span {
  color: #f38e3e;
  font-weight: 500;
}
.choose-content h2 {
  color: #008190;
  font-weight: bold;
  margin-bottom: 1em;
}
.choose img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: rgb(246 250 255 / 7%) 0px 0px 0px 3px, rgb(0 129 144 / 57%) 0px 0px 0px 6px, rgb(242 141 61) 0px 0px 0px 9px, rgb(255, 156, 85) 0px 0px 0px 12px, rgb(0 129 144 / 0%) 0px 0px 0px 15px;
}
.ch-section {
  margin: 3em 0;
}
h3.box-title {
  font-size: 22px;
  font-weight: bold;
}
.border-line {
  border: 1px solid #f38e3e17;
}

.footer{
  position: relative;
}
.footer-data1 {
  position: absolute;
  top: -1em;
  background: #fff;
  padding: 4em 2em;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  width: 20%;
  height: 365px;
}
.footer-data1 h2 {
  border-bottom: 1px solid #f38e3e;
  padding-bottom: 15px;
  margin-bottom: 1em;
}
.footer-data1 ul {
  padding: 0;
}
.footer-data1 ul li {
  color: #f38e3e;
  list-style: none;
  margin-bottom: 10px;
}





/**--header css start---**/
.nav-item a {
  color: #fff !important;
}
.dropdown-menu {
  background: #f38e3e !important;
}
.dropdown-menu li a:hover {
  background: black !important;
}
.dropdown-mega:hover {
  background: black !important;
}

/**---header css end--**/



/* Enable hover functionality for dropdowns */
.nav-item.dropdown:hover > .dropdown-menu {
  display: block;
  margin-top: 0; /* Ensure dropdown stays attached to its parent */
}
.nav-item.dropdown-mega:hover > .megamenu {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 1000;
  background-color: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}
.mega-column ul {
  list-style: none;
  padding: 0;
}




/**--gallery css start--**/

.gallery-data img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.gallery-data {
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  margin-bottom: 1em;
  padding: 10px;
  border-radius: 20px;
  height: 180px;
}
.med-gallery {
  margin: 2em 0;
}
div#modalDescription img {
  width: 100%;
  height: auto;
}
div#modalDescription iframe {
  width: 100%;
  height: auto;
}
/**--gallery css end--**/

/**--career css start--**/
.j-post-data {
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  padding: 1em;
  height: 300px;
  border-radius: 20px;
  margin: 2em 0 0 0;
}
.j-post-data p {
  font-size: 14px;
  height: 150px;
}
.j-post-data h2 {
  font-size: 20px;
  font-weight: bold;
}
.j-post-data button {
  background: #f38e3e;
  color: #fff;
  border: none;
  padding: 6px 2em;
  font-weight: 420;
  border-radius: 10px;
}
.j-post-btn {
  display: flex;
  justify-content: end;
}
.cls-btn {
  display: flex;
  justify-content: end;
  position: relative;
  right: 12px;
  top: 12px;
}
.modal-header h5 {
  font-size: 30px;
  color: #f38e3e;
  /* padding: 0 !important; */
  font-weight: bold;
}
.modal-header {
  justify-content: center;
  padding: 0;
}
.j-post {
  padding-top: 5em;
}
/**--career css end--**/

.headcls a img {
  width: 200px;
  height: 40px;
  background: #fff;
  border-radius: 20px;
  object-fit: cover;
}
