* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  background-color: #fff;
  position: relative;
  overflow-x: hidden;
}

/* Base responsive styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cursor {
  height: 60px;
  width: 60px;
  background-color: #686868da;
  border-radius: 50%;
  position: fixed;
  z-index: 1;
}

#home-section {
  min-height: 100vh;
  width: 100%;
  position: relative;
  padding: 20px;
}

@media (min-width: 768px) {
  #home-section {
    padding: 35px 50px;
  }
}

@media (min-width: 1024px) {
  #home-section {
    padding: 35px 100px;
  }
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #000;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
  transform-origin: center;
}

/* Hamburger animation */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu-overlay {
    display: block;
  }
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100%;
  background-color: #fff;
  z-index: 1001;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-logo h1 {
  font-size: 24px;
  font-weight: 550;
  margin: 0;
}

.maintainance-logo {
  width: 100%;
  max-width: 150px;
  height: auto;
  object-fit: contain;
}

.payment-processing-logo {
  width: 100%;
  max-width: 90%;
  height: auto;
  object-fit: contain;

}


.tenant-management-logo {
  width: 100%;
  max-width: 90%;
  height: auto;
  object-fit: contain;
  border-radius: 50%;
}

.property-management-logo {
  width: 100%;
  max-width: 90%;
  height: auto;
  object-fit: contain;
}

.mobile-menu-close {
  font-size: 30px;
  cursor: pointer;
  color: #666;
  line-height: 1;
}

.mobile-menu-links {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu-links a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  display: block;
  position: relative;
}

.mobile-menu-links a:hover {
  color: #b9ff66;
  padding-left: 10px;
}

.mobile-menu-links a:last-of-type {
  border-bottom: none;
}

.mobile-cta-btn {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 550;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.mobile-cta-btn:hover {
  background-color: #333;
}

/* Hide mobile menu on desktop */
.mobile-menu-toggle {
  display: none;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

@media (max-width: 768px) {
  nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .desktop-nav {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .desktop-nav.mobile-active {
    display: flex !important;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .part1 {
    flex: 1;
  }
}

.part1 {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.part1 h1 {
  font-size: 30px;
  font-weight: 550;
  margin: 0;
}

.logo-img {
  height: 50px;
  width: 50px;
  object-fit: contain;
}

.part1 h1 i {
  display: inline-block;
  rotate: 45deg;
  font-size: 38px;
}

.desktop-nav h3 {
  font-weight: 500;
  font-family: sans-serif;
  cursor: pointer;
  color: #000;
  margin: 0;
}

.desktop-nav h3 a {
  text-decoration: none;
  color: #000;
  display: block;
}

.desktop-nav button,
.get-started-btn {
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 550;
  border: 1.9px solid #000;
  cursor: pointer;
  background-color: transparent;
  color: #000;
}

.desktop-nav h3:hover {
  padding: 8px 12px;
}

.desktop-nav h3:hover,
.desktop-nav button:hover,
.get-started-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(185, 255, 102, 0.8);
  transition: all 0.3s ease;
}

.center {
  min-height: 70vh;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 0px 0;
  gap: 0px;
  /* border: 1px solid #000; */
}

@media (min-width: 768px) {
  .center {
    padding: 30px 0;
    gap: 60px;
  }
}

@media (min-width: 1024px) {
  .center {
    padding: 30px 0;
    gap: 0;
  }
}

.center-part1 {
  width: 100%;
  text-align: center;
  /* border: 1px solid #ea1111; */
}

@media (min-width: 768px) {
  .center-part1 {
    width: 50%;
    text-align: left;
  }
}

.center-part1 h1 {
  font-size: 40px;
  font-weight: 400;
  line-height: 45px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .center-part1 h1 {
    font-size: 60px;
    line-height: 65px;
  }
}

@media (min-width: 1024px) {
  .center-part1 h1 {
    font-size: 90px;
    line-height: 100px;
  }
}

.center-part1 p {
  margin: 30px 0;
}

.black-btn {
  padding: 15px 40px;
  background-color: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.black-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(185, 255, 102, 0.8);
}

.center-part2 {
  width: 100%;
  height: 50vh;
  position: relative;
  display: flex;
  padding-top: 35vh;
  padding-bottom: 20vh;
  justify-content: center;
  align-items: center;
  /* border: 1px solid #112aea; */
}

@media (min-width: 768px) {
  .center-part2 {
    width: 50%;
  }
}

.center-part2 img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.25),
    0 20px 50px rgba(185, 255, 102, 0.3),
    inset 0 -8px 20px rgba(0, 0, 0, 0.08);
  padding: 0;
  margin: 20px auto 0 auto;
  animation: blob-morph 6s ease-in-out infinite;
}

@keyframes blob-morph {

  0%,
  100% {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  }

  25% {
    border-radius: 48% 52% 68% 32% / 42% 61% 39% 58%;
  }

  50% {
    border-radius: 40% 60% 42% 58% / 65% 38% 62% 35%;
  }

  75% {
    border-radius: 58% 42% 55% 45% / 48% 70% 30% 52%;
  }
}

@media (min-width: 768px) {
  .center-part2 img {
    width: 300px;
    height: 300px;
    margin-left: auto;
    margin-right: 0;
  }
}

@media (min-width: 1024px) {
  .center-part2 img {
    width: 380px;
    height: 380px;
    margin-top: 40px;
  }
}

.bottom-section {
  height: 25%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.bottom-section img {
  height: 125px;
  width: 125px;
  object-fit: contain;
}

#services-section {
  min-height: 100vh;
  width: 100%;
  position: relative;
  padding: 20px;
}

@media (min-width: 768px) {
  #services-section {
    padding: 35px 50px;
  }
}

@media (min-width: 1024px) {
  #services-section {
    padding: 35px 100px;
  }
}

.services {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .services {
    gap: 0 50px;
    flex-wrap: nowrap;
  }
}

.services h3 {
  background-color: #b9ff66;
  font-size: 30px;
  padding: 5px;
  font-weight: 500;
  border-radius: 10px;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .services h3 {
    font-size: 45px;
  }
}

@media (min-width: 1024px) {
  .services h3 {
    font-size: 60px;
  }
}

.services p {
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .services p {
    width: 50%;
    text-align: left;
  }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 20px;
  justify-content: center;
}

@media (min-width: 768px) {
  .container {
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .container {
    justify-content: space-between;
    gap: 50px;
  }
}

@media (max-width: 1000px) {
  .container {
    max-width: 100vw;
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 0;
    margin: 0;
    gap: 20px;
  }
}

.elem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  min-height: 250px;
  width: 100%;
  border: 3px solid #000;
  border-radius: 30px;
  box-shadow: 0 6px 0 black;
  padding: 30px;
  position: relative;
}

@media (min-width: 768px) {
  .elem {
    min-height: 300px;
    border-radius: 40px;
    padding: 40px;
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (min-width: 1024px) {
  .elem {
    height: 300px;
    flex: 1 1 46%;
    max-width: 48%;
    border-radius: 50px;
    padding: 50px;
  }
}

@media (max-width: 768px) {
  .elem {
    max-width: 100%;
  }
}

.element1 h2 {
  background-color: #b9ff66;
  font-size: 20px;
  padding: 10px;
  font-weight: 500;
  border-radius: 30px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 30px;
  margin-right: 30px;
}

@media (min-width: 768px) {
  .element1 h2 {
    font-size: 25px;
    margin-bottom: 40px;
  }
}

@media (min-width: 1024px) {
  .element1 h2 {
    font-size: 30px;
    margin-bottom: 80px;
  }
}

.element1 p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 20px;
  gap: 15px;
  font-weight: 500;
}

.element1 p i {
  padding: 5px;
  background-color: #000;
  font-size: 35px;
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.element1 p i:hover {
  box-shadow: 0 4px 12px rgba(185, 255, 102, 0.8);
  transform: scale(1.1);
}

.elem img {
  height: 120px;
  width: 120px;
  object-fit: contain;
  /* Prevent layout shift while loading */
  min-height: 120px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Shimmer animation for loading state */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* Once image is loaded, remove shimmer */
.elem img[src]:not([src=""]) {
  background: none;
  animation: none;
}

@media (min-width: 768px) {
  .elem img {
    height: 180px;
    width: 180px;
    min-height: 180px;
  }
}

@media (min-width: 1024px) {
  .elem img {
    height: 120px;
    width: 120px;
    min-height: 120px;
  }
}

@media (min-width: 1200px) {
  .elem img {
    height: 140px;
    width: 140px;
    min-height: 140px;
  }
}

.black {
  background-color: #000;
}

.element-black h2 {
  width: 70%;
  background-color: #fff;
  color: #111;
}

.element-black p {
  color: #fff;
}

.element-black p i {
  background-color: white;
  color: #000;
}

/* Learn more links in case studies */
.caseBox .learn-more {
  color: #b9ff66;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.caseBox .learn-more:hover {
  color: #a8e858;
  gap: 10px;
}

.caseBox .learn-more i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.caseBox .learn-more:hover i {
  transform: translateX(3px);
}

.imgbox img {
  height: 100px;
  width: 100px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .imgbox img {
    height: 120px;
    width: 120px;
  }
}

@media (min-width: 1024px) {
  .imgbox img {
    height: 150px;
    width: 150px;
  }
}

#contact-section {
  margin-top: 80px;
  padding: 20px;
}

@media (min-width: 768px) {
  #contact-section {
    margin-top: 120px;
    padding: 40px 50px;
  }
}

@media (min-width: 1024px) {
  #contact-section {
    margin-top: 150px;
    padding: 40px 100px;
  }
}

.contact {
  background-color: #ebeaea;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
  gap: 30px;
}

@media (min-width: 768px) {
  .contact {
    padding: 40px;
    flex-direction: row;
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .contact {
    padding: 0px 80px;
    gap: 0;
  }
}

.contact-element {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .contact-element {
    width: 50%;
    text-align: left;
    gap: 30px;
  }
}

@media (min-width: 1024px) {
  .contact-element {
    width: 35%;
    gap: 40px;
  }
}

.contact-element h2 {
  font-size: 28px;
  font-weight: 550;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .contact-element h2 {
    font-size: 35px;
  }
}

@media (min-width: 1024px) {
  .contact-element h2 {
    font-size: 45px;
  }
}

.contact-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-element .black-btn {
  display: inline-block;
  opacity: 1;
  visibility: visible;
}

.contact-img img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.25),
    0 20px 50px rgba(185, 255, 102, 0.3),
    inset 0 -8px 20px rgba(0, 0, 0, 0.08);
  padding: 0;
  margin: 0 auto;
  transform: rotate(-3deg);
  animation: blob-morph-2 7s ease-in-out infinite;
}

@keyframes blob-morph-2 {

  0%,
  100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
    transform: rotate(-3deg);
  }

  33% {
    border-radius: 58% 42% 45% 55% / 70% 35% 65% 30%;
    transform: rotate(-5deg);
  }

  66% {
    border-radius: 35% 65% 50% 50% / 55% 68% 32% 45%;
    transform: rotate(-1deg);
  }
}

@media (min-width: 768px) {
  .contact-img {
    width: 50%;
  }

  .contact-img img {
    max-width: 100%;
    width: 320px;
    height: 320px;
    margin-left: auto;
    margin-right: 0;
  }
}

@media (min-width: 1024px) {
  .contact-img {
    width: 65%;
  }

  .contact-img img {
    width: 380px;
    height: 380px;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 20px;
  }

  .contact-element {
    gap: 15px;
  }

  .contact-element h2 {
    font-size: 24px;
  }

  .contact-element p {
    font-size: 14px;
    line-height: 1.5;
  }

  .black-btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
  }
}

#caseStudy-section {
  padding: 20px;
}

@media (min-width: 768px) {
  #caseStudy-section {
    padding: 40px 50px;
  }
}

@media (min-width: 1024px) {
  #caseStudy-section {
    padding: 40px 100px;
  }
}

.caseBox-container {
  margin-top: 30px;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background-color: rgb(32, 32, 32);
  color: #ffffffcd;
  font-weight: 400;
}

@media (min-width: 768px) {
  .caseBox-container {
    margin-top: 40px;
    padding: 30px;
    flex-direction: row;
    gap: 30px;
  }
}

@media (min-width: 1024px) {
  .caseBox-container {
    margin-top: 50px;
    padding: 40px;
    gap: 40px;
  }
}

.caseBox {
  border-right: none;
  border-bottom: 2px solid #ffffffcd;
  padding-right: 0;
  padding-bottom: 20px;
  width: 100%;
}

@media (min-width: 768px) {
  .caseBox {
    border-right: 2px solid #ffffffcd;
    border-bottom: none;
    padding-right: 20px;
    padding-bottom: 0;
    width: auto;
  }
}

@media (min-width: 1024px) {
  .caseBox {
    padding-right: 40px;
  }
}

.caseBox h4 {
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .caseBox h4 {
    margin-bottom: 30px;
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .caseBox h4 {
    margin-bottom: 40px;
    font-size: inherit;
  }
}

.caseBox p {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  font-size: 17px;
  color: #b9ff66;
  cursor: pointer;
}

.caseBox p i {
  font-size: 20px;
  color: #b9ff66;
  transition: all 0.3s ease;
  cursor: pointer;
}

@media (min-width: 768px) {
  .caseBox p i {
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  .caseBox p i {
    font-size: 28px;
  }
}

.caseBox p i:hover {
  box-shadow: 0 4px 12px rgba(185, 255, 102, 0.8);
  transform: scale(1.15);
}

/* Mobile-specific improvements */
@media (max-width: 767px) {
  .part1 h1 {
    font-size: 24px;
  }

  .logo-img {
    height: 30px;
    width: 30px;
  }

  /* Removed duplicate black-btn style */

  .part2 button {
    padding: 8px 20px;
    font-size: 14px;
  }

  .center-part1 p {
    font-size: 16px;
    line-height: 1.5;
  }

  .bottom-section {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .bottom-section h3 {
    font-size: 20px;
  }

  .bottom-section p {
    font-size: 14px;
  }
}

/* Tablet-specific improvements */
@media (min-width: 768px) and (max-width: 1023px) {
  .center-part1 h1 {
    font-size: 50px;
    line-height: 55px;
  }

  .services h3 {
    font-size: 40px;
  }

  .contact-element h2 {
    font-size: 32px;
  }
}

/* Footer Styles */
.main-footer {
  background-color: #000;
  color: #fff;
  padding: 60px 20px 30px;
  margin-top: 80px;
  width: 100%;
  position: relative;
  clear: both;
}

@media (min-width: 768px) {
  .main-footer {
    padding: 80px 50px 40px;
  }
}

@media (min-width: 1024px) {
  .main-footer {
    padding: 100px 100px 50px;
  }
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }
}

.footer-section {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-section h3 {
  font-size: 24px;
  font-weight: 550;
  margin-bottom: 5px;
  color: #b9ff66;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 550;
  margin-bottom: 5px;
  color: #b9ff66;
}

.footer-section p {
  font-size: 14px;
  color: #ffffffcd;
  line-height: 1.6;
  margin: 0;
}

/* Support for both old UL/LI and new Direct A structure */
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-section ul li {
  margin-bottom: 0;
}

.footer-section a,
.footer-section ul li a {
  color: #ffffffcd;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  display: block;
  /* Ensure they take up width if needed */
  width: fit-content;
}

.footer-section a:hover,
.footer-section ul li a:hover {
  color: #b9ff66;
  padding-left: 5px;
  /* Add slight movement on hover */
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  margin-top: 40px;
  text-align: center;
}

.footer-bottom p {
  color: #ffffffcd;
  font-size: 14px;
  margin: 0;
}

/* Page Content Styles (for individual pages) */
.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

@media (min-width: 768px) {
  .page-content {
    padding: 60px 50px 100px;
  }
}

@media (min-width: 1024px) {
  .page-content {
    padding: 80px 100px 120px;
  }
}

.page-header {
  text-align: center;
  margin-bottom: 50px;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 550;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .page-header h1 {
    font-size: 60px;
  }
}

.page-header .last-updated {
  color: #666;
  font-size: 14px;
  font-style: italic;
}

.page-body {
  line-height: 1.8;
}

.page-body h2 {
  font-size: 28px;
  font-weight: 550;
  margin-top: 40px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .page-body h2 {
    font-size: 32px;
    margin-top: 50px;
  }
}

.page-body h2:first-child {
  margin-top: 0;
}

.page-body p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333;
}

.page-body ul,
.page-body ol {
  margin: 20px 0;
  padding-left: 30px;
}

.page-body ul li,
.page-body ol li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.8;
}

.contact-info {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

/* Pricing Page Styles */
.pricing-plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin: 40px 0;
}

@media (min-width: 768px) {
  .pricing-plans {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-plans {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background-color: #fff;
  border: 3px solid #000;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 6px 0 black;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.featured {
  background-color: #b9ff66;
  border-color: #000;
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 550;
  margin-bottom: 20px;
}

.pricing-card .price {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.pricing-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

.pricing-card .black-btn {
  width: 100%;
  margin-top: 20px;
}

.feature-box-header {
  font-size: 4px;
  font-weight: 550;
  margin-bottom: 10px;
  margin-top: 20px;
  margin-left: 20px;
}

/* ==========================================================================
   REACH US MODAL STYLES
   ========================================================================== */

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.active {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-container {
  background: #fff;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease;
  position: relative;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  border-bottom: 2px solid #b9ff66;
  padding-bottom: 15px;
}

.modal-header h2 {
  font-size: 28px;
  font-weight: 800;
  color: #000;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #333;
  transition: color 0.2s;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #000;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  color: #333;
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: #b9ff66;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}

.submit-btn:hover {
  opacity: 0.9;
}

.success-message {
  text-align: center;
  padding: 20px;
  background: #e8f8e8;
  border: 2px solid #b9ff66;
  border-radius: 8px;
  margin-top: 20px;
}

.success-message i {
  font-size: 48px;
  color: #4caf50;
  margin-bottom: 10px;
}

.success-message p {
  margin: 0;
  color: #4caf50;
  font-size: 16px;
}

/* Modal Content Grid Responsive */
@media (max-width: 768px) {
  .modal-content-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .modal-container {
    width: 95% !important;
    padding: 20px !important;
  }
}