body {
    margin: 0;
    padding: 0;
    font-family: var(--inter);
    color: var(--paragraph);
    background-color: var(--white);
    line-height: 28px;
    font-weight: 400;
    text-transform: none;
}

video {
    object-fit: cover !important;
}

.about-two__image img {
    width: 100%;
    border-radius: 0px !important;
}
.google-map iframe {
    width: 100%;
    height: 450px;
    margin-bottom: -10px;
}
.work__item, .work-five__item {
    overflow: hidden;
    position: relative;
    padding: 30px;
    border: var(--border-1px);
    transition: var(--transition);
    border-radius: 0px !important;
}

.achievement::before {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 0px !important;
}
.achievement {
    overflow: hidden;
    padding: 80px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0px 4px 55px 10px rgba(75, 175, 71, 0.0784313725);
    border-radius: 0px !important;
}
.contact .content {
    color: var(--white);
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../../assets/images/contact/contact-image.webp);
    padding: 40px 30px;
    border-radius: 0px !important;
}
.hero-2 .hero-bg::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    border-radius: 0px !important;
    background: rgba(29, 33, 67, 0.5);
}
.hero-2 .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 0px !important;
}
.accordion .accordion-item h2 button {
    font-size: 21px;
    font-weight: 500;
    line-height: 30px;
    box-shadow: none;
    border-radius: 0 !important;
    padding: 12px 30px;
}

.page-banner {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../../assets/images/banner/about-banners.webp) !important;
}

.testimonial__item-content p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 0;
}

.login__item {
    padding: 65px;
    background-color: #5353537c;
    border-radius: 10px;
}


@media screen and (max-width: 480px) {
.login__item {
    padding: 25px;
    background-color: #5353537c;
    border-radius: 10px;
}
.accordion .accordion-item h2 button{
    font-size: 18px;
}

.swiper-slide, .hero-items {
    height: auto !important;
}
.header-three .menu-btn a {
    padding: 10px 20px !important;
    border-radius: 0 !important;
}
.menu-btn a {
        width: 120px !important;
    }
}



    /* Popup Overlay
    .my-popup-overlay {
      display: none;
      position: fixed;
      z-index: 999;
      left: 0; top: 0;
      width: 100vw;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.6);
    } */

    /* Popup Content */
    /* .my-popup-content {
      background: #fff;
      max-width: 400px;
      margin: 10% auto;
      padding: 30px;
      border-radius: 10px;
      position: relative;
      animation: popupFadeIn 0.3s ease-in-out;
    }

    @keyframes popupFadeIn {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    } */

    /* Close Button */
    /* .my-popup-close {
      position: absolute;
      top: 10px; right: 15px;
      font-size: 24px;
      cursor: pointer;
    } */

    /* Form Title */
    /* .my-popup-title {
      margin-bottom: 15px;
      text-align: center;
      font-size: 22px;
      color: #333;
    } */

    /* Form Layout */
    /* .my-popup-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .my-popup-label {
      font-size: 14px;
      color: #444;
    }

    .my-popup-input,
    .my-popup-textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
    }

    .my-popup-textarea {
      resize: vertical;
      min-height: 80px;
    }

    .my-popup-submit {
      background-color: #4CAF50;
      color: white;
      padding: 12px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .my-popup-submit:hover {
      background-color: #45a049;
    }

    .my-popup-btn {
      padding: 10px 20px;
      background-color: #0066cc00;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }


    .feild-popup {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 6px;
      box-sizing: border-box;
    } */




/* Lock body scroll when modal open */
body.popup-open {
  overflow: hidden;
}

/* Overlay with enough vertical space — allow body scroll */
.my-popup-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  overflow-y: auto;           /* ✅ Enable scroll on overlay only */
  padding: 60px 20px;         /* ✅ Top/Bottom spacing */
  box-sizing: border-box;
}

/* Modal content box – remove internal scrolling */
.my-popup-content {
  background: #fff;
  width: 95%;
  max-width: 800px;
  margin: auto;
  padding: 30px;
  border-radius: 10px;
  position: relative;
  animation: popupFadeIn 0.3s ease-in-out;
  box-sizing: border-box;
  /* Remove internal scroll constraints */
  max-height: none;
  overflow: visible;
}



/* Fade Animation */
@keyframes popupFadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Close Button */
.my-popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/* Title */
.my-popup-title {
  margin-bottom: 15px;
  text-align: center;
  font-size: 22px;
  color: #333;
}

/* Label + Field */
.my-popup-label {
  font-size: 14px;
  color: #444;
  margin-top: 10px;
  display: block;
}

.feild-popup,
.my-popup-textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.my-popup-textarea {
  resize: vertical;
  min-height: 80px;
}

/* Two-column layout */
.popup-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.popup-col {
  flex: 1;
  min-width: 45%;
}

/* Button */
.my-popup-submit {
  background-color: #4CAF50;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
  transition: background 0.3s ease;
}
.my-popup-submit:hover {
  background-color: #45a049;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .popup-row {
    flex-direction: column;
  }
  .popup-col {
    min-width: 100%;
  }
}







