@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css");

:root {
  --default-font: "Roboto Flex", serif;
  --heading-font: "Poppins", sans-serif;
}

:root {
  --background-color: #ffffff;
  --primary-color: #2d3387;
  --primary-loight-color: #ebedff;
  --heading-color: #595959;
  --triary-color: #bb7637;
  --secondaryy-color: #7e6a9a;
  --tick-color: #3fb6ce;
  --yellow-color: #fffa80;
  --white-color: #ffffff;
  --black-color: #525252;
  --nav-color: #2d3387;
  --light-color: #f9f4ec;
}

:root {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--primary-loight-color);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
  border: 2px solid var(--primary-loight-color);
}

::-webkit-scrollbar-thumb:hover {
  background: #1e225a;
}

/* Firefox support */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--primary-loight-color);
}

body {
  color: var(--black-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--secondaryy-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--secondaryy-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-color);
  font-family: var(--heading-font);
}

.header-top-bar {
  height: 90px;
}

@media (max-width: 768px) {
  .header-top-bar {
    height: 70px;
  }
}

.header {
  --background-color: #ffffff;
  color: var(--black-color);
  background-color: var(--background-color);
  z-index: 997;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .header-container {
  background: var(--white-color);
  padding: 10px 25px;
  height: 90px;
  max-height: 90px;
  display: flex;
  align-items: center;
}

.scrolled .header .header-container,
.header.scrolled .header-container {
  padding: 10px 25px !important;
  height: 90px !important;
  max-height: 90px !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header .logo {
  line-height: 1;
  padding-left: 5px;
}

.header .logo img {
  max-height: 70px;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.scrolled .header .logo img {
  max-height: 50px;
}

.header.fixed-top {
  position: fixed;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }

  100% {
    transform: translateY(0px);
  }
}

@media (max-width: 1200px) {
  .header .header-container {
    padding: 10px 5px 10px 15px;
  }

  .header .logo img {
    max-height: 40px;
  }

  .scrolled .header .logo img {
    max-height: 30px;
  }

  .header .logo {
    order: 1;
  }

  .header .navmenu {
    order: 3;
  }
}

@media (max-width: 768px) {

  .header .header-container,
  .scrolled .header .header-container,
  .header.scrolled .header-container {
    height: 70px !important;
    max-height: 70px !important;
    padding: 5px 15px !important;
  }

  .header .logo img,
  .scrolled .header .logo img {
    max-height: 45px !important;
  }
}

.navmenu {
  padding: 0;
}

.navmenu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Header Navigation Separators */
.navmenu ul {
  display: flex;
  align-items: center;
  gap: 0;
}

.navmenu ul li {
  position: relative;
}

.navmenu a,
.navmenu a:focus {
  color: var(--black-color);
  padding: 18px 15px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.navmenu .menu-item-has-children>a::after {
  content: "\f282";
  font-family: "bootstrap-icons";
  font-size: 12px;
  display: inline-block;
  margin-left: 8px;
  transition: 0.3s;
}

.navmenu .menu-item-has-children:hover>a::after {
  transform: rotate(180deg);
}

.navmenu a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 12px;
  left: 15px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.navmenu a:hover::before,
.navmenu .active::before,
.navmenu .current_page_item>a::before,
.navmenu .current-menu-item>a::before,
.navmenu .current-menu-ancestor>a::before,
.navmenu .current-menu-parent>a::before {
  width: calc(100% - 30px);
}

.navmenu li:hover>a,
.navmenu .active,
.navmenu .active:focus,
.navmenu .current_page_item>a,
.navmenu .current-menu-item>a,
.navmenu .current-menu-ancestor>a,
.navmenu .current-menu-parent>a {
  color: var(--primary-color);
}

.navmenu ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: var(--white-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  min-width: 240px;
  z-index: 99;
  padding: 15px 0;
  border-radius: 0 0 10px 10px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border-top: 3px solid var(--primary-color);
}

.navmenu li:hover>ul.sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.navmenu ul.sub-menu li {
  width: 100%;
}

.navmenu ul.sub-menu a {
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black-color);
  transition: all 0.3s ease;
  justify-content: flex-start;
  text-align: left;
  width: 100%;
  text-transform: none;
  letter-spacing: normal;
}

.navmenu ul.sub-menu a::before {
  display: none;
}

.navmenu ul.sub-menu a:hover {
  color: var(--primary-color);
  background: rgba(45, 51, 135, 0.05);
  padding-left: 30px;
}

.navmenu ul.sub-menu a:hover {
  background: #f8f9ff;
  color: #2d3387;
  padding-left: 25px;
}

.navmenu ul.sub-menu li.current-menu-item a {
  background: #f8f9ff;
  color: var(--primary-color);
}

.navmenu ul.sub-menu.dropdown-active {
  display: block !important;
}

@media (max-width: 767px) {
  .header {
    position: fixed;
    width: 100%;
  }

  .header.fixed-top {
    position: fixed;
    animation: none;
  }
}

.footer {
  background: #342647 url(../images/about_img0.png) no-repeat 0 100%;
  padding-top: 90px;
  color: rgba(255, 255, 255, 0.7);
  border-top: none;
}

.footer-about-content {
  padding-right: 60px;
}

.footer .footer-top {
  padding-bottom: 50px;
}

.footer .sitename {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.footer .footer-contact p {
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.6);
}

.footer .footer-contact strong {
  color: #fff;
}

.footer .footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
}

.footer .footer-contact a:hover {
  color: #fff;
}

.footer .know-more {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 2px;
}

.footer .know-more:hover {
  color: #fff;
  border-bottom-color: #fff;
  padding-left: 5px;
}

.footer h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}



.footer .footer-links ul li {
  margin-bottom: 12px;
  font-size: 14px;
}

.footer .footer-links ul li a {
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
}

.footer .footer-links ul li a::before {
  content: "\f287";
  font-family: "bootstrap-icons";
  font-size: 10px;
  margin-right: 10px;
  color: var(--secondaryy-color);
  transition: 0.3s;
}

.footer .footer-links ul li a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer .footer-links ul li a:hover::before {
  color: #fff;
}

.footer .footer-links ul li.current-menu-item a {
  color: #fff;
  font-weight: 600;
}

.footer .footer-links ul li.current-menu-item a::before {
  color: #fff;
}

.footer .social-links a {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  line-height: 1;
  border-radius: 8px;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .social-links a:hover {
  background: #fff;
  color: #0a0d2a;
  transform: translateY(-5px);
  border-color: #fff;
}

.footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 0;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.5);
}

.footer .copyright p {
  margin: 0;
}

.footer .copyright strong {
  color: #fff;
}

/* Mobile Footer Responsive Styles */
@media (max-width: 576px) {
  .footer {
    padding-top: 60px;
  }

  .footer-about-content {
    padding-right: 0;
    margin-bottom: 20px;
  }

  .footer .sitename {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .footer .footer-top {
    padding-bottom: 30px;
  }

  .footer h4 {
    font-size: 16px;
    margin-bottom: 15px;
    margin-top: 20px;
  }

  .footer h4:first-child {
    margin-top: 0;
  }

  .footer .footer-contact p {
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.6;
  }

  .footer .footer-links ul li {
    margin-bottom: 10px;
    font-size: 13px;
  }

  .footer .footer-links ul li a {
    word-wrap: break-word;
    white-space: normal;
  }

  .footer .footer-about-content p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .footer .know-more {
    font-size: 14px;
  }

  .footer .social-links {
    margin-top: 20px;
  }

  .footer .social-links a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .footer .copyright {
    padding: 20px 0;
    font-size: 12px;
  }

  .mobile-footer-row {
    display: flex;
    flex-wrap: wrap;
  }

  .mobile-footer-nav {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-footer-nav:last-child {
    border-bottom: none;
  }
}

/* Extra small screens */
@media (max-width: 380px) {
  .footer .sitename {
    font-size: 16px;
  }

  .footer h4 {
    font-size: 15px;
  }

  .footer .footer-contact p,
  .footer .footer-about-content p,
  .footer .footer-links ul li {
    font-size: 12px;
  }

  .footer .social-links a {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--primary-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--white-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb,
      var(--secondaryy-color),
      transparent 20%);
  color: var(--white-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

section,
.section {
  color: var(--black-color);
  background-color: var(--background-color);
  scroll-margin-top: 80px;
  overflow: clip;
}

.about-hero {
  min-height: 60vh;
  padding: 100px 0;
  margin-top: 90px;
  position: relative;
  background-image: url('../images/bg-2.jpg');
  background-size: cover;
  background-position: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 48%, rgba(255, 255, 255, 0.4) 100%);
  z-index: 1;
}

.about-hero-container {
  position: relative;
  z-index: 2;
}

.about-breadcrumb .breadcrumb-item a,
.about-breadcrumb .breadcrumb-item.active {
  color: var(--secondaryy-color);
}

.about-breadcrumb .breadcrumb-item.active {
  color: var(--primary-color);
  font-weight: 600;
}

.about-hero .hero-title {
  color: var(--primary-color);
  font-size: clamp(2rem, 2.8vw, 3rem);
  margin-bottom: 20px;
  line-height: 1.2;
  max-width: 760px;
}

.about-hero .hero-subtext {
  color: var(--secondaryy-color);
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.about-hero .hero-subtext i {
  color: var(--tick-color);
}

.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.about-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(45, 51, 135, 0.16);
}

.about-btn-primary {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.about-btn-primary:hover {
  background-color: color-mix(in srgb, var(--primary-color), white 8%);
  color: var(--white-color);
}

.about-btn-outline {
  background-color: rgba(255, 255, 255, 0.95);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.about-btn-outline:hover {
  background-color: var(--white-color);
  color: var(--primary-color);
}

.about-hero-visual {
  position: relative;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 24px 60px rgba(45, 51, 135, 0.12);
  backdrop-filter: blur(6px);
}

.about-hero-visual img {
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.about-hero-badge {
  position: absolute;
  right: -12px;
  bottom: 24px;
  background: var(--white-color);
  color: var(--primary-color);
  border-radius: 16px;
  padding: 0.8rem 1rem;
  box-shadow: 0 12px 26px rgba(45, 51, 135, 0.15);
  display: flex;
  flex-direction: column;
  min-width: 120px;
}

.about-hero-badge strong {
  font-size: 1.2rem;
}

.about-story-copy,
.about-heritage-copy {
  max-width: 600px;
}

.about-eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--primary-loight-color);
  color: var(--primary-color);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-eyebrow--light {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white-color);
}

.about-story-text p,
.about-heritage-copy p {
  line-height: 1.8;
  color: var(--black-color);
  margin-bottom: 1rem;
}

.about-story-quote {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--secondaryy-color);
  background: var(--primary-loight-color);
  color: var(--primary-color);
  border-radius: 0 1rem 1rem 0;
  font-style: italic;
  line-height: 1.7;
}

.about-media-frame {
  position: relative;
  border-radius: 1.8rem;
  padding: 0.9rem;
  background: linear-gradient(145deg, var(--white-color), var(--primary-loight-color));
  box-shadow: 0 24px 55px rgba(45, 51, 135, 0.12);
}

.about-media-frame img {
  border-radius: 1.4rem;
}

.about-media-badge,
.about-floating-note {
  position: absolute;
  background: var(--white-color);
  color: var(--primary-color);
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  box-shadow: 0 12px 25px rgba(45, 51, 135, 0.14);
}

.about-media-badge {
  left: 20px;
  bottom: 20px;
  font-weight: 600;
}

.about-floating-note {
  right: -18px;
  bottom: 20px;
  border-left: 4px solid var(--primary-color);
}

.about-principles-section {
  background-color: var(--light-color);
}

.about-principle-card {
  height: 100%;
  border: 0;
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(45, 51, 135, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-principle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 36px rgba(45, 51, 135, 0.14);
}

.about-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  border: 2px solid var(--primary-loight-color);
  color: var(--primary-color);
}

.about-principle-card--mission .about-card-icon {
  color: var(--triary-color);
}

.about-principle-card--commitment .about-card-icon {
  color: var(--tick-color);
}

.about-principle-card .card-text {
  color: var(--black-color);
  line-height: 1.7;
  margin-bottom: 0;
}

.about-stats-panel {
  border-radius: 1.75rem;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, var(--primary-color), #1a1e58);
  color: var(--white-color);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(45, 51, 135, 0.18);
}

.about-stats-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.5;
}

.about-stat-card {
  position: relative;
  z-index: 1;
  padding: 1rem 0.6rem;
}

.about-stat-card--middle {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.about-stat-card h2,
.about-stat-card p,
.about-stat-card small {
  color: inherit;
}

.about-stat-card p {
  color: var(--yellow-color);
}

.about-stat-card:nth-child(2) p {
  color: var(--tick-color);
}

.about-stat-card:nth-child(3) p {
  color: var(--triary-color);
}

.about-advantages-section {
  background-color: var(--light-color);
}

.about-feature-card {
  display: flex;
  gap: 1rem;
  height: 100%;
  padding: 1.5rem;
  border-radius: 1.4rem;
  background: var(--white-color);
  box-shadow: 0 10px 24px rgba(45, 51, 135, 0.08);
  border-left: 5px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature-card:hover {
  transform: translateX(6px);
  box-shadow: 0 16px 32px rgba(45, 51, 135, 0.14);
}

.about-feature-card--tick {
  border-left-color: var(--tick-color);
}

.about-feature-card--triary {
  border-left-color: var(--triary-color);
}

.about-feature-card--secondary {
  border-left-color: var(--secondaryy-color);
}

.about-feature-card--primary {
  border-left-color: var(--primary-color);
}

.about-feature-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 51, 135, 0.08);
  color: var(--primary-color);
}

.about-feature-card--tick .about-feature-icon {
  color: var(--tick-color);
  background: rgba(63, 182, 206, 0.12);
}

.about-feature-card--triary .about-feature-icon {
  color: var(--triary-color);
  background: rgba(187, 118, 55, 0.12);
}

.about-feature-card--secondary .about-feature-icon {
  color: var(--secondaryy-color);
  background: rgba(126, 106, 154, 0.12);
}

.about-feature-card h5 {
  color: var(--primary-color);
}

.about-feature-card p {
  color: var(--black-color);
  line-height: 1.7;
  margin-bottom: 0;
}

.about-cta-section {
  background-color: var(--nav-color);
  color: var(--white-color);
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
}

.about-cta-pattern {
  position: absolute;
  inset: 0;
  background-image: url('../images/dots.png');
  opacity: 0.06;
  background-size: 300px;
  z-index: 1;
}

.about-cta-container {
  position: relative;
  z-index: 2;
}

.about-cta-copy {
  color: var(--primary-loight-color);
  line-height: 1.8;
  max-width: 760px;
}

@media (max-width: 991px) {
  .about-hero {
    padding: 80px 0 70px;
  }

  .about-hero .hero-title {
    max-width: 100%;
  }

  .about-stat-card--middle {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin: 0.75rem 0;
  }
}

@media (max-width: 767px) {
  .about-hero {
    margin-top: 70px;
    padding: 70px 0 60px;
  }

  .about-hero-visual {
    padding: 12px;
  }

  .about-hero-badge,
  .about-media-badge,
  .about-floating-note {
    position: static;
    margin-top: 0.8rem;
    display: inline-flex;
  }

  .about-feature-card {
    flex-direction: column;
  }

  .about-cta-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.section-padding {
  padding: 80px 0;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 70px;
  }

  .section-padding {
    padding: 50px 0;
  }
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--primary-color);
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--secondaryy-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--secondaryy-color);
}

@media (max-width: 1199px) {
  .section-title h2 {
    font-size: 1.7rem;
  }
}

.hero-slider {
  background: #f8f9ff;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0;
}

/* Full Banner Background */
.hero-slider .swiper-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: var(--bg-image);
  padding: 60px 0;
  display: flex;
  align-items: center;
}

.hero-slide-static {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('../images/bg-2.jpg');
  padding: 60px 0;
  display: flex;
  align-items: center;
  width: 100%;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Ensure content is visible in the static hero version */
.hero-slide-static .hero-content .hero-title,
.hero-slide-static .hero-content .hero-subtext,
.hero-slide-static .hero-content .hero-metrics,
.hero-slide-static .hero-content .hero-btns,
.hero-slide-static .hero-content *,
#hero-slider.hero-slider .hero-slide-static .hero-content * {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  transition: none !important;
}

.hero-image-right {
  flex: 0 0 45%;
  max-width: 45%;
  text-align: right;
  opacity: 1 !important;
  visibility: visible !important;
}

.hero-image-right img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.4) 100%);
  z-index: 1;
  opacity: .4;
}

.cloud-features {
  background: url('../images/bg-2.jpg') no-repeat center center / cover !important;
  position: relative;
}

.cloud-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
  opacity: .3;
}

.cloud-features .container {
  position: relative;
  z-index: 2;
}

.cloud-features .feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.cloud-features .feature-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 25px;
  font-size: 1.05rem;
  line-height: 1.5;
}

.cloud-features .feature-list li i {
  position: absolute;
  left: 0;
  top: -2px;
  color: #4f1e94;
  font-size: 1.25rem;
}

.cloud-features .feature-list li strong {
  display: block;
  color: #333;
  margin-bottom: 5px;
}

.cloud-features .feature-img {
  text-align: right;
}

.cloud-features .feature-img img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991px) {
  .cloud-features .feature-img {
    margin-top: 50px;
    text-align: center;
  }
}

.section-sub-head {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  color: #666;
}

/* Section 4: Comparison Table */
.why-gst-pms {
  background: url('../images/bg-3.jpg') no-repeat center center / cover !important;
  position: relative;
}

.why-gst-pms::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
  opacity: 0.5;
}

.why-gst-pms .container {
  position: relative;
  z-index: 2;
}

.comparison-table-wrapper {
  overflow-x: auto;
  width: 75%;
  margin: 0 auto;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: #fff;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.comparison-table th {
  padding: 22px;
  text-align: left;
  font-weight: 700;
  color: #fff;
  background: #342647;
}

.comparison-table th:first-child {
  border-radius: 12px 0 0 0;
}

.comparison-table th:last-child {
  border-radius: 0 12px 0 0;
}

.comparison-table td {
  padding: 15px 22px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}

.comparison-table td:first-child {
  border-left: 1px solid #f0f0f0;
  font-weight: 700;
  color: #333;
  width: 20%;
}

.wpcf7-spinner {
  position: absolute;
}

.comparison-table td:last-child {
  border-right: 1px solid #f0f0f0;
}

.col-manual {
  color: #777;
  background: #fafafa !important;
}

.col-cloud {
  color: #5c3e85;
  background: #f8f7ff !important;
  font-weight: 600;
}

.comparison-table tr:nth-child(even) td {
  background-color: #ecfcff !important;
}

.comparison-table tr:last-child td:first-child {
  border-radius: 0 0 0 12px;
}

.comparison-table tr:last-child td:last-child {
  border-radius: 0 0 12px 0;
}

/* Section 5: Hotel Types Grid */
.hotel-type-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.hotel-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hotel-type-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.hotel-type-card h4 {
  color: #4f1e94;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.hotel-type-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* Section 6: Why Choose Cards */
.why-choose-stack {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-card-modern {
  background: #fff;
  padding: 18px 25px;
  border-radius: 15px;
  border-left: 5px solid #4f1e94;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-modern:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(79, 30, 148, 0.06);
}

.f-icon-box {
  width: 45px;
  height: 45px;
  background: #f8f7ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f1e94;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: 0.3s;
}

.why-choose-img img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 991px) {
  .why-choose-img img {
    min-height: auto;
    margin-bottom: 30px;
  }
}

.feature-card-modern h5 {
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
  font-size: 1.15rem;
}

.feature-card-modern p {
  color: #555;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.hero-swiper {
  width: 100%;
}

.why-choose-cloud h4 {
  font-size: 1.4rem;
}

.why-choose-cloud .hero-btns {
  margin-bottom: 0 !important;
  margin-top: 20px;
}

.footer-about-content p {
  font-size: 0.85rem !important;
}

.hero-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  flex: 0 0 55%;
  max-width: 55%;
}

.prod-custom-tab h5 {
  margin-top: 1.5rem !important;
  margin-bottom: 1rem !important;
  font-weight: 700;
  color: var(--primary-color);
}

/* Auto-icon for feature lists in tabs */
.prod-custom-tab ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.prod-custom-tab ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--black-color);
  line-height: 1.5;
}

.prod-custom-tab ul li::before {
  content: "\f26a";
  /* bi-check-circle-fill */
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary-color);
  font-size: 18px;
  line-height: 1;
}

/* Scoped Main Hero Styles */
.hero-main .swiper-slide,
.hero-main .hero-slide-static {
  padding: 0 !important;
  min-height: auto !important;
}

.hero-main .slide-overlay {
  background: rgba(255, 255, 255, 0.5) !important;
}

.hero-main .hero-wrapper {
  max-width: 100% !important;
  padding: 0 0 0 5% !important;
  width: 100% !important;
}

.hero-main .hero-text {
  flex: 0 0 40% !important;
  max-width: 40% !important;
}

.hero-main .hero-metrics {
  margin-bottom: 1.5rem !important;
}

.hero-main .hero-image-container {
  flex: 0 0 60% !important;
  max-width: 60% !important;
  text-align: right;
  z-index: 2;
  padding-right: 0 !important;
}

.hero-main .hero-image-container img {
  width: 100% !important;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.1;
  color: #333;
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}

.hero-title .accent {
  color: #4f1e94;
}

/* Cloud PMS Hero Height Adjustments */
@media (min-width: 992px) {
  .hero-cloud-pms .hero-image-container img {
    max-height: 580px;
    width: auto !important;
    max-width: 100%;
  }
}

.hero-subtext {
  font-size: 1.2rem;
  color: #4f1e94;
  margin-bottom: 1rem;
  line-height: 1.4;
  max-width: 90%;
  opacity: 0.8;
}

.hero-separator {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  width: 60%;
}

.hero-separator .line {
  height: 1px;
  background: #4f1e94;
  opacity: 0.3;
  flex-grow: 1;
}

.hero-separator i {
  color: #4f1e94;
  font-size: 1.2rem;
}

.hero-metrics {
  display: flex;
  justify-content: start;
  gap: 20px;
  margin-bottom: 1.5rem;
  width: 80%;
}

.h-metric {
  text-align: center;
  flex: 1;
}

.h-metric .m-icon {
  width: 45px;
  height: 45px;
  object-fit: contain;
  transition: all 0.3s ease;
  margin: 0 auto 5px;
}

.h-metric:hover .m-icon {
  transform: translateY(-5px) scale(1.1);
}

.h-metric-content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.h-metric .m-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.h-metric .m-desc {
  font-size: 0.75rem!important;
  color: #666;
  margin-bottom: 0;
  line-height: 1.3!important;
  font-weight: 500;
}

.hero-btns {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
}

.btn-book-demo {
  background: #4f1e94;
  color: #fff;
  padding: 12px 35px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(79, 30, 148, 0.2);
}

.btn-book-demo:hover {
  background: #3a166d;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(79, 30, 148, 0.3);
}

.btn-view-pricing {
  border: 2px solid #4f1e94;
  color: #4f1e94;
  padding: 10px 35px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.btn-view-pricing .play-icon {
  width: 32px;
  height: 32px;
  border: 2px solid #4f1e94;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: 0.3s;
}

.btn-view-pricing:hover {
  background: #f8f7ff;
  color: #4f1e94;
  transform: translateY(-4px);
}

.btn-view-pricing:hover .play-icon {
  background: #4f1e94;
  color: #fff;
}

/* Hero Bottom Bar */
.hero-bottom-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 15px 30px;
  border-radius: 50px;
  width: fit-content;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hero-bottom-bar .b-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4f1e94;
}

.hero-bottom-bar .b-item i {
  font-size: 1.2rem;
}

.hero-bottom-bar .b-sep {
  color: #ccc;
  font-weight: 300;
}



/* Floating Elements */
.floating-elements {
  position: absolute;
  top: 0;
  right: -20%;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.f-card {
  position: absolute;
  background: #fff;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  width: 220px;
  pointer-events: auto;
  animation: fFloat 5s ease-in-out infinite alternate;
}

.f-card img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
}

.f-info h6 {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
}

.f-info p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

.card-1 {
  top: 10%;
  right: 0;
  animation-delay: 0.2s;
}

.card-2 {
  bottom: 20%;
  right: 10%;
  animation-delay: 1s;
}

@keyframes fFloat {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-15px);
  }
}

.swiper-pagination-bullet-active {
  background: #2d3387 !important;
}

/* Modal Styling */
.modal-content {
  border-radius: 15px;
  border: none;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.modal-header {
  background: var(--primary-color);
  color: white;
  border-radius: 15px 15px 0 0;
  padding: 1.5rem;
}

.modal-header .btn-close {
  filter: brightness(0) invert(1);
}

.modal-title {
  font-weight: 700;
  color: white;
}

.form-label {
  font-weight: 600;
  color: var(--primary-color);
}

.form-control {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(45, 51, 135, 0.1);
}

/* Hero Content Animations */
.hero-content .hero-title,
.hero-content .hero-subtext,
.hero-content .hero-metrics,
.hero-content .hero-btns {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-slide-active .hero-content .hero-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.swiper-slide-active .hero-content .hero-subtext {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.swiper-slide-active .hero-content .hero-metrics {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.swiper-slide-active .hero-content .hero-btns {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.8s;
}

.visual-inner {
  opacity: 0;
  transform: scale(0.9);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper-slide-active .visual-inner {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.3s;
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .floating-elements {
    right: -10%;
  }
}

@media (max-width: 991px) {
  .hero-slider .swiper-slide {
    padding: 100px 0;
    text-align: center;
  }

  @media (max-width: 768px) {
    .hero-slider .swiper-slide {
      background-image: var(--bg-image) !important;
      background-size: cover;
      background-position: center;
      padding: 50px 0;
      min-height: 350px;
    }

    .hero-main .hero-image-container {
      width: 100%;
      margin-bottom: 25px;
      order: -1;
      /* Show image on top for mobile */
    }

    .hero-wrapper {
      padding: 0 15px !important;
      width: 100% !important;
      max-width: 100% !important;
    }

    .hero-image-container img {
      width: 100%;
      height: auto;
      border-radius: 0 0 20px 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
  }

  .hero-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .hero-main .hero-wrapper {
    padding: 0% !important;
  }

  .hero-main .hero-text,
  .hero-text {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 15px !important;
  }

  .hero-subtext,
  .hero-separator,
  .hero-bottom-bar {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-metrics {
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100% !important;
    gap: 10px;
  }

  .hero-btns {
    justify-content: center;
    flex-direction: column !important;
    gap: 12px;
  }

  .h-metric {
    flex: 0 0 calc(50% - 10px) !important;
    text-align: left !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
  }

  .h-metric .m-icon {
    width: 30px !important;
    height: 30px !important;
    margin: 0 !important;
  }

  .floating-elements {
    display: none;
  }
}

@media (max-width: 767px) {
  .hero-slider {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .hero-main .swiper-slide {
    padding-top: 30px !important;
  }

  .hero-title {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.2;
  }

  .hero-subtext {
    font-size: 0.8rem;
    margin-bottom: 15px;
    width: 100% !important;
    max-width: 100% !important;
    line-height: 1.4;
  }

  .hero-main .hero-image-container {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    text-align: center;
  }

  .section-title h2 {
    font-size: 1rem;
    padding-bottom: 8px;
    margin-bottom: 8px;
  }

  .section-title p {
    font-size: 12px;
  }

  .hero-slide-static {
    padding-top: 30px;
  }

  body {
    font-size: 14px;
    overflow-x: hidden;
  }

  .container,
  .container-fluid {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  h1 {
    font-size: 1.2rem !important;
  }

  h2 {
    font-size: 1.1rem !important;
  }

  h3 {
    font-size: 1rem !important;
  }

  h4 {
    font-size: 0.95rem !important;
  }

  h5 {
    font-size: 0.85rem !important;
  }

  h6 {
    font-size: 0.75rem !important;
  }

  .footer {
    padding-top: 30px !important;
  }

  .footer-links ul {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .footer-links h4 {
    font-size: 14px !important;
    margin-top: 20px !important;
  }

  .btn-book-demo,
  .btn-view-pricing {
    width: 100%;
    justify-content: center;
  }


}

/* Fancybox Form Styling */
#book-demo-form {
  display: none;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
  padding: 40px !important;
  max-width: 650px;
  max-height: 95vh;
  overflow-y: auto;
}

.fancybox-modal-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.5px;
  margin-bottom: 5px;
}

.fancybox-modal-content p.text-muted {
  color: #666 !important;
  font-size: 1rem;
}

#book-demo-form label {
  font-weight: 600;
  font-size: 16px;
  text-transform: none;
  letter-spacing: normal;
  color: var(--heading-color);
  margin-bottom: 8px;
  display: block;
}

#book-demo-form .btn-primary {
  padding: 10px 30px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--primary-color);
  border: none;
  transition: all 0.4s ease;
}

#book-demo-form .btn-primary:hover {
  background: var(--secondaryy-color);
  box-shadow: 0 15px 30px rgba(126, 106, 154, 0.3);
  transform: translateY(-4px);
}

.metric-container {
  background: #d0f3fa;
  border-radius: 6px;
}

.metrics-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background: url(../images/metrics-row-bg.png) no-repeat 0 0;
  background-size: 100% 100%;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}

.metric-item .metric-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  border-radius: 50px;
  transition: 0.3s;
}

.metric-item .metric-icon i {
  font-size: 1.5rem;
  color: var(--black-color);
}

.metric-item .metric-content {
  flex-grow: 1;
}

.metricsasd {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}

.metricsasd .pllas {
  color: var(--primary-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
}

.metricsasd .purecounter {
  color: var(--primary-color);
  font-size: 48px;
  font-weight: 700;
}

/* Properties Served */
.properties-served {
  background-color: #f8f9ff;
  padding: 80px 0;
}

.properties-served .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.client-logo-card {
  background: var(--white-color);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.client-logo-card img {
  max-height: 70px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.4s ease;
}

.client-logo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(45, 51, 135, 0.1);
  border-color: var(--primary-loight-color);
}

.client-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Why Choose Us */
.why-choose {
  background-color: #f8f9ff;
}

.why-choose-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.why-choose-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.why-choose-list li .icon {
  width: 50px;
  height: 50px;
  background: var(--primary-loight-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.why-choose-list li .icon i {
  font-size: 24px;
  color: var(--primary-color);
}

.why-choose-list li .content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #333;
}

.why-choose-list li .content p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 0;
  line-height: 1.5;
}

.why-choose-list li:hover .icon {
  background: var(--primary-color);
  transform: translateY(-5px);
}

.why-choose-list li:hover .icon i {
  color: var(--white-color);
}


.metric-item .metric-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@media (max-width: 1190px) {
  .metric-item .metric-content h4 {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .metrics-row.mt-5 {
    margin: 0 !important;
  }

  .metric-item {
    padding: 0;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .metrics-row {
    margin-top: 0 !important;
  }

  .metric-item {
    padding: 0;
  }

  .metrics-row .col-md-3 {
    width: 50%;
    max-width: 50%;
  }

  .metric-item .metric-content h4 {
    font-size: 1.1rem;
  }

  #metrics .col-md-3 {
    width: 50%;
    max-width: 50%;
  }
}

.about .about-meta {
  color: var(--secondaryy-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 1.5rem;
  }

  .about .row {
    flex-direction: column-reverse;
  }
}

.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--black-color), transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about .feature-list li i {
  color: var(--tick-color);
  font-size: 1.25rem;
}

.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1rem;
  margin: 0;
}

.about .profile .profile-position {
  color: var(--secondaryy-color);
  margin: 0;
  font-size: 0.875rem;
}

.about .contact-info {
  padding: 1rem 1.5rem;
  background-color: var(--white-color);
  border-radius: 0.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.06);
}

.about .contact-info i {
  color: var(--secondaryy-color);
  font-size: 1.5rem;
}

.about .contact-info .contact-label {
  color: color-mix(in srgb, var(--black-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about .image-wrapper {
  position: relative;
}

@media (max-width: 1190px) {
  .about .image-wrapper .main-image {
    width: 70%;
    margin: 0 auto;
    display: block;
    float: right;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    width: 100%;
  }
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 23%;
  left: -17%;
  width: 50%;
}

@media (max-width: 1190px) {
  .about .image-wrapper .small-image {
    position: absolute;
    top: 23%;
    left: 1%;
    width: 48%;
    margin-top: 67px;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    display: none;
  }
}

@media (max-width: 767px) {
  #about .row {
    flex-direction: column-reverse;
  }

  .about .image-wrapper {
    margin: 0;
  }

  .about .image-wrapper .small-image {
    display: none;
  }
}

.highlights .features-tab {
  border: 0;
  background: var(--primary-loight-color);
  border-radius: 6px;
  padding: 6px;
  width: 100%;
  display: flex;
}

.highlights .swiper.tab-slider h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.highlights .custom-tab {
  display: none;
}

.highlights .custom-tab.active {
  display: block;
}

.highlights .swiper-slide {
  width: auto !important;
  flex-shrink: 0;
}

.highlights .swiper-slide.tab-button {
  background-color: initial;
  color: var(--heading-color);
  padding: 10px 40px;
  transition: 0.3s;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 768px) {
  .highlights .custom-tab img {
    width: 60%;
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 767px) {
  .highlights .section-title {
    text-align: left;
  }

  .highlights .section-title h2:after {
    right: inherit;
  }

  .highlights .custom-tab img {
    width: 80%;
  }

  .highlights .swiper-slide.tab-button {
    padding: 10px 16px;
  }
}

@media (max-width: 468px) {
  .highlights .nav-link {
    padding: 8px 20px;
  }
}

.highlights .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.highlights .nav-link h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.highlights .nav-link:hover {
  border-color: color-mix(in srgb, var(--black-color), transparent 80%);
}

.highlights .nav-link:hover h4 {
  color: var(--primary-color);
}

.highlights .swiper-slide.tab-button.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.highlights .swiper-slide.tab-button.active h4 {
  color: var(--white-color);
}

.highlights .custom-tabs-content {
  margin-top: 30px;
}

.highlights .custom-tab h3 {
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

@media (max-width: 1199px) {
  .highlights .custom-tab h3 {
    font-size: 1.5rem;
  }
}

.highlights .custom-tab h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 2px;
  background: var(--secondaryy-color);
  left: 0;
  bottom: 0;
}

@media (max-width: 768px) {
  .highlights .custom-tab h3 {
    font-size: 1.2rem;
    padding-bottom: 10px;
  }
}

.highlights .custom-tab ul {
  list-style: none;
  padding: 0;
}

.highlights .custom-tab ul li {
  padding-top: 10px;
}

.highlights .custom-tab ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--tick-color);
}

.highlights .custom-tab p:last-child {
  margin-bottom: 0;
}

.highlight-cards {
  --heading-color: #333;
}

.highlight-cards .highlight-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 6px;
}

.highlight-cards .highlight-box i {
  font-size: 44px;
  display: inline-block;
  line-height: 0;
  color: var(--secondaryy-color);
  margin-bottom: 20px;
}

.highlight-cards .highlight-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.highlight-cards .highlight-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.highlight-cards .highlight-box.first {
  background-color: #eff7ff;
}

.highlight-cards .highlight-box.first i {
  color: #28629d;
}

.highlight-cards .highlight-box.second {
  background-color: #fffce3;
}

.highlight-cards .highlight-box.second i {
  color: #74784e;
}

.highlight-cards .highlight-box.third {
  background-color: #e4e6ff;
}

.highlight-cards .highlight-box.third i {
  color: #2d3387;
}

.highlight-cards .highlight-box.fourth {
  background-color: #ffeeee;
}

.highlight-cards .highlight-box.fourth i {
  color: #f11515;
}

.highlights-2 .highlight-item .highlight-item-inner {
  padding: 25px;
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.highlights-2 .highlight-item .highlight-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #e4e6ff;
}

.highlights-2 .highlight-item .highlight-icon i {
  font-size: 24px;
  color: var(--primary-color);
}

.highlights-2 .highlight-item .highlight-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.1;
}

.highlights-2 .highlight-item .highlight-content p {
  color: color-mix(in srgb, var(--black-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.highlights-2 .phone-mockup {
  position: relative;
  padding: 30px 0;
}

@media (max-width: 991.98px) {

  section,
  .section {
    padding: 30px 0;
    scroll-margin-top: 60px;
  }

  .highlight-cards,
  .highlights-2 {
    padding-top: 0;
  }

  .highlights-2 .highlight-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .highlights-2 .highlight-item .d-flex {
    flex-direction: column-reverse;
    text-align: center;
    justify-content: center !important;
  }

  .highlights-2 .phone-mockup {
    margin: 0;
  }

  .highlight-cards .highlight-box {
    padding: 25px;
  }

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

  .highlight-right .highlight-item .d-flex {
    flex-direction: column;
  }

  .highlights-2 .col-lg-4.highlight-left {
    order: 1;
  }
}

@media (max-width: 768px) {
  .highlights-2 .highlight-item {
    margin-bottom: 15px !important;
  }
}

@media (max-width: 767px) {
  .highlight-cards .highlight-box {
    text-align: center;
  }
}

/* Extra small mobile devices */
@media (max-width: 576px) {
  .highlight-cards .highlight-box {
    padding: 20px 15px;
    min-height: auto;
  }

  .highlight-cards .highlight-box i {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .highlight-cards .highlight-box h4 {
    font-size: 16px;
    margin: 0 0 8px 0;
  }

  .highlight-cards .highlight-box p {
    font-size: 13px;
    line-height: 1.5;
  }

  .highlight-cards .row {
    row-gap: 15px !important;
  }
}

/* Tiny screens */
@media (max-width: 380px) {
  .highlight-cards .highlight-box {
    padding: 15px 12px;
  }

  .highlight-cards .highlight-box i {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .highlight-cards .highlight-box h4 {
    font-size: 15px;
  }

  .highlight-cards .highlight-box p {
    font-size: 12px;
  }
}

section.services {
  border-top: 1px solid #efefef;
}

.clients {
  background-color: #e4e6ff;
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

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

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--black-color), transparent 80%);
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--secondaryy-color);
}

.testimonials {
  background-color: #f2f3ff;
}

.testimonials .testimonial-item {
  background-color: var(--white-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
  border-radius: 6px;
}

.testimonials.testimonials-page {
  background-color: transparent;
}

.testimonials.testimonials-page .testimonial-item {
  margin: 0;
  box-sizing: border-box;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

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

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--black-color), transparent 40%);
  margin: 0;
}

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

.testimonials .swiper-wrapper {
  height: auto;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--black-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--secondaryy-color);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (max-width: 768px) {
  .testimonials .section-title {
    padding: 0;
  }

  .testimonials .section-title h2 {
    margin: 0;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

@media (max-width: 767px) {
  .testimonials .section-title {
    padding-bottom: 0;
  }

  .testimonials .section-title h2 {
    margin: 0;
  }
}

.metrics {
  background-color: #e4e6ff;
}

.metrics .metrics-item {
  padding: 0 30px;
  width: 100%;
}

.metrics .metrics-item span {
  color: var(--primary-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  position: relative;
}

.metrics .metrics-item p {
  color: color-mix(in srgb, var(--black-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}

.services .service-card {
  height: 100%;
  padding: 30px;
  background: var(--white-color);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.services .service-card {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.services .service-card:hover .icon {
  background: var(--secondaryy-color);
  color: var(--white-color);
}

.services .service-card .icon {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  background: var(--primary-loight-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--primary-color);
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
}

.services .service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services .service-card p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--black-color), transparent 25%);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .metrics .metrics-item {
    padding: 0;
  }

  .metrics .metrics-item span {
    font-size: 34px;
  }

  .metricsasd .pllas {
    font-size: 32px;
  }

  .services .service-card {
    padding: 25px;
  }

  .services .service-card h3 {
    font-size: 18px;
    margin-bottom: 7px;
  }

  .services .service-card p {
    margin-bottom: 0;
  }
}

.pricing .pricing-card {
  height: 100%;
  padding: 2rem;
  background: #ffffff;
  color: var(--black-color);
  border-radius: 6px;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  transform: scale(1);
}

.pricing .pricing-card:hover {
  box-shadow: 0 0px 30px rgba(0, 0, 0, 0.3);
}

/* Remove custom card background colors */
.pricing .pricing-card.basic,
.pricing .pricing-card.popular,
.pricing .pricing-card.premium {
  background: #ffffff;
  color: var(--black-color);
}
.pricing .pricing-card.popular{background-color: #efefff;}
.pricing .pricing-card.premium{background-color:#faefff;}
/* Headings */
.pricing .pricing-card h3,
.pricing .pricing-card h4,
.pricing .pricing-card.popular h3,
.pricing .pricing-card.popular h4 {
  color: var(--primary-color);
}

/* Popular card text */
.pricing .pricing-card.popular .price .currency,
.pricing .pricing-card.popular .price .period,
.pricing .pricing-card.popular .features-list li {
  color: var(--black-color);
}

/* Popular button */
.pricing .pricing-card.popular .btn-light {
  background: var(--primary-color);
  color: var(--white-color);
}

.pricing .pricing-card.popular .btn-light:hover {
  opacity: 0.9;
}

/* Popular badge */
.pricing .pricing-card .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fb1521;
  color: var(--white-color);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.08);
}

.pricing .pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0;
}

.pricing .pricing-card .price {
  margin-bottom: 10px;
}

.pricing .pricing-card .price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  vertical-align: top;
  line-height: 1;
}

.pricing .pricing-card .price .period {
  font-size: 1rem;
  color: color-mix(in srgb, var(--black-color), transparent 40%);
}

.pricing .pricing-card .description {
  margin-bottom: 2rem;
  font-size: 0.975rem;
}

.pricing .pricing-card h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.pricing .pricing-card .features-list {
  list-style: none;
  padding: 0;
}

.pricing .pricing-card .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.4rem;
  color: var(--black-color);
}

.pricing .pricing-card .features-list li i {
  color: #8abc51;
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.pricing .pricing-card .features-list li i.bi-x-circle-fill {
  color: #fc3b00;
}

@media (max-width: 768px) {
  .pricing .pricing-card {
    margin: 0 43px;
  }
}

@media (max-width: 767px) {
  .pricing .pricing-card {
    margin: 0 30px;
  }
}

.contact {
  background: #342647 url(../images/about_img0.png) no-repeat 0 100%;
}

.contact h2 {
  color: var(--white-color);
}

.contact .info-box {
  background-color: #352863;
  color: var(--white-color);
  padding: 3rem;
  border-radius: 6px;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--white-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }

  .pricing .pricing-card {
    padding: 25px;
  }

  .pricing.section .section-title {
    padding-bottom: 15px;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--white-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--white-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: var(--white-color);
}

.contact .info-item .icon-box:hover {
  background-color: color-mix(in srgb, var(--white-color), transparent 70%);
}

.contact .info-item .content h4 {
  color: var(--white-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

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

.contact .contact-form {
  background-color: #69518b;
  padding: 3rem;
  border-radius: 6px;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--white-color);
}

.contact .loading {
  color: var(--white-color);
}

.contact .sent-message {
  color: #eee1b6;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--black-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--black-color), transparent 90%);
  border-radius: 12px;
  background-color: color-mix(in srgb, var(--white-color) 90%, white 5%);
  color: var(--black-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--secondaryy-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--black-color), transparent 50%);
}

.contact .contact-form .btn {
  background-color: #352863;
  color: var(--white-color);
  padding: 1rem 2rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: #221943;
}

.service-details .service-box {
  background-color: var(--white-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--black-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--white-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--black-color), transparent 20%);
  background-color: color-mix(in srgb, var(--black-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--secondaryy-color);
}

.service-details .services-list a.active {
  color: var(--white-color);
  background-color: var(--secondaryy-color);
}

.service-details .services-list a.active i {
  color: var(--white-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb,
      var(--secondaryy-color),
      transparent 95%);
  color: var(--secondaryy-color);
}

.service-details .download-catalog a {
  color: var(--black-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--black-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--secondaryy-color);
}

.service-details .download-catalog a:hover {
  color: var(--secondaryy-color);
}

.service-details .help-box {
  background-color: var(--secondaryy-color);
  color: var(--white-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--white-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--secondaryy-color);
}

.floating-images-wrapper {
  position: relative;
  width: 100%;
  height: 400px;
}

.floating-img {
  position: absolute;
  animation: floatUpDown 5s ease-in-out infinite alternate;
  pointer-events: none;
}

.img-1 {
  top: 0;
  right: 0;
  animation-delay: -3s;
  max-width: 70%;
}

.img-2 {
  bottom: 20px;
  left: 140px;
  max-width: 80%;
  animation-delay: -5s;
}

.img-3 {
  bottom: 40px;
  left: 20px;
  max-width: 240px;
  animation-delay: -7s;
}

.img-4 {
  bottom: 0;
  right: -116px;
  max-width: 200px;
  animation-delay: -9s;
}

#properties-served,
#products-features {
  background-color: #ffffff;
}

#features-cards {
  background-color: #f8faff;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-20px);
  }
}

@media (max-width: 1190px) {
  .img-1 {
    right: 47px;
  }

  .img-3 {
    left: -36px;
    max-width: 210px;
  }

  .img-4 {
    bottom: 40px;
    right: -42px;
    max-width: 171px;
  }

  .img-2 {
    left: 72px;
    max-width: 73%;
  }
}

.mobile-frame {
  width: 318px;
  height: 600px;
  border: 10px solid #000;
  border-radius: 36px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  margin: 0 auto;
}

.carousel {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1s ease-in-out;
}

.carousel img {
  width: 300px;
  height: 600px;
  object-fit: cover;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .img-1 {
    top: 40px;
  }

  .img-3 {
    left: -36px;
    max-width: 147px;
    bottom: 85px;
  }

  .img-2 {
    left: 39px;
    bottom: 40px;
  }

  .img-4 {
    bottom: 64px;
    right: -20px;
    max-width: 136px;
  }
}

.more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  cursor: pointer;
  padding: 5px;
  border-radius: 50px;
  background-color: var(--primary-color);
  margin: 0 auto 15px auto;
  width: 40px;
  height: 40px;
}

.more-btn img {
  width: 20px;
  display: block;
}

.more-btn:hover {
  background-color: var(--secondaryy-color);
  color: var(--white-color);
}

.fancybox__content {
  max-width: 1020px;
}


.wpcf7-form .form-control {
  width: 100%;
  height: 45px;
  border-radius: 4px;
}

.wpcf7-form label {
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
}

.wpcf7-form .btn {
  padding: 10px 25px;
}

.form-group p {
  margin-bottom: 0;
}

.form-group br {
  display: none;
}

/* Unified Section Styles */
.products-features {
  background-color: #f8faff;
}

.why-choose .section-header {
  margin-bottom: 50px;
}

.why-choose-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(45, 51, 135, 0.12);
  border-color: var(--primary-color);
}

.why-choose-card .icon {
  width: 70px;
  height: 70px;
  background: #f0f2ff;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border-radius: 14px;
  margin: 0 auto 25px auto;
  transition: all 0.3s ease;
}

.why-choose-card:hover .icon {
  background: var(--primary-color);
  color: #fff;
  transform: rotateY(180deg);
}

.why-choose-card h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--primary-color);
  line-height: 1.4;
}

.why-choose-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0;
}

.products-tab-wrapper {
  margin-top: 40px;
}

.section-sub-head {
  color: #555;
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 850px;
  margin: 0 auto 50px auto;
}

.contact-sub-head {
  margin-bottom: 0;
}

.scroll-hint {
  opacity: 0.8;
}

.scroll-hint span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #888 !important;
  background-color: #f8f9fa !important;
  border: 1px solid #eee !important;
}

.scroll-hint i {
  display: inline-block;
  animation: hintSwipe 2s infinite ease-in-out;
  color: var(--primary-color);
}

@keyframes hintSwipe {

  0%,
  100% {
    transform: translateX(-3px);
  }

  50% {
    transform: translateX(3px);
  }
}

.prod-tab-button {
  padding: 15px 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-tab-button h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
  letter-spacing: 0.3px;
  color: #4f1e94;
}

.prod-tab-button {
  border: 1px solid #ddd;
}

.prod-tab-button:hover {
  color: #4f1e94;
  background: #f8f7ff;
}

.prod-tab-button.active {
  background-color: #4f1e94;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(79, 30, 148, 0.25);
}

.prod-tab-button.active h4 {
  color: #fff !important;
}

.prod-custom-tab {
  display: none;
  padding: 20px 0;
}

.prod-custom-tab.active {
  display: block;
  animation: tabFadeIn 0.5s ease forwards;
}

.feature-list-modern {
  list-style: none;
  padding: 0;
  margin: 25px 0 0 0;
}

.feature-list-modern li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}

.feature-list-modern li i {
  color: var(--primary-color);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.prod-custom-tab h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.prod-custom-tab img {
  transition: transform 0.5s ease;
}

.prod-custom-tab:hover img {
  transform: scale(1.02);
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

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

@media (max-width: 991px) {
  .products-features {
    padding: 60px 0;
  }

  .prod-tab-button {
    padding: 12px 25px;
  }
}

@media (max-width: 767px) {
  .prod-tab-button {
    padding: 10px 20px;
  }

  .prod-tab-button h4 {
    font-size: 14px;
  }

  .prod-custom-tab h3 {
    font-size: 22px;
  }
}

/* Modal Container Styles */
.fancybox-modal-content {
  display: none;
  max-width: 800px;
  width: 100%;
  padding: 40px;
  border-radius: 20px;
  background: #fff;
}

.pricing-modal-wrap {
  max-width: 1200px;
  padding-top: 60px !important;
}

.pricing-modal-wrap .popular-badge {
  z-index: 100;
}

.pricing-modal-wrap .pricing {
  padding: 0;
  background: transparent;
  padding-top: 40px;
}

.pricing-modal-wrap .pricing-card {
  padding: 30px 20px;
  border-radius: 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: visible !important;
}

.pricing-modal-wrap .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.pricing-modal-wrap .features-list li {
  margin-bottom: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-modal-wrap .features-list li i.bi-x-circle-fill {
  color: #dc3545;
  opacity: 0.5;
}

.scroll-hint i {
  display: inline-block;
  animation: hintSwipe 2s infinite ease-in-out;
  color: var(--primary-color);
}

@keyframes hintSwipe {

  0%,
  100% {
    transform: translateX(-3px);
  }

  50% {
    transform: translateX(3px);
  }
}

.prod-tab-button {
  padding: 15px 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-tab-button h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

.prod-tab-button {
  border: 1px solid #ddd;
}

.prod-tab-button:hover {
  color: #4f1e94;
  background: #f8f7ff;
}

.prod-tab-button.active {
  background-color: #4f1e94;
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(79, 30, 148, 0.25);
}

.prod-tab-button.active h4 {
  color: #fff !important;
}

.prod-custom-tab {
  display: none;
  padding: 20px 0;
}

.prod-custom-tab.active {
  display: block;
  animation: tabFadeIn 0.5s ease forwards;
}

.feature-list-modern {
  list-style: none;
  padding: 0;
  margin: 25px 0 0 0;
}

.feature-list-modern li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}

.feature-list-modern li i {
  color: var(--primary-color);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.prod-custom-tab h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.prod-custom-tab img {
  transition: transform 0.5s ease;
}

.prod-custom-tab:hover img {
  transform: scale(1.02);
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

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

@media (max-width: 991px) {
  .products-features {
    padding: 60px 0;
  }

  .prod-tab-button {
    padding: 12px 25px;
  }
}

@media (max-width: 767px) {
  .prod-tab-button {
    padding: 5px 20px;
  }

  .prod-tab-button h4 {
    font-size: 14px;
  }

  .prod-custom-tab h3 {
    font-size: 22px;
  }
}

/* Modal Container Styles */
.fancybox-modal-content {
  display: none;
  max-width: 800px;
  width: 100%;
  padding: 40px;
  border-radius: 20px;
  background: #fff;
}

.pricing-modal-wrap {
  max-width: 1200px;
  padding-top: 60px !important;
}

.pricing-modal-wrap .popular-badge {
  z-index: 100;
}

.pricing-modal-wrap .pricing {
  padding: 0;
  background: transparent;
  padding-top: 40px;
}

.pricing-modal-wrap .pricing-card {
  padding: 30px 20px;
  border-radius: 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: visible !important;
}

.pricing-modal-wrap .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.pricing-modal-wrap .features-list li {
  margin-bottom: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-modal-wrap .features-list li i.bi-check-circle-fill {
  color: #28a745;
}

.pricing-modal-wrap .features-list li i.bi-x-circle-fill {
  color: #dc3545;
  opacity: 0.5;
}

/* ==========================================================================
   MOBILE & TABLET CLEAN STABILIZATION (V11 - CUSTOM CLASSES)
   ========================================================================== */

/* Tablet Optimization (991px and below) */
@media (max-width: 991px) {
  .mobile-hero-btns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}

/* Mobile Optimization (767px and below) */
@media (max-width: 767px) {

  /* 1. Global Typography & HIGH PADDING */
  .mobile-responsive-section p,
  .mobile-responsive-section .hero-subtext,
  .mobile-footer-nav ul li {
    font-size: 13px;
    line-height: 1.5;
  }

  .mobile-responsive-section {
    padding: 30px 0;
  }

  .hero-main .hero-text,
  .hero-text {
    padding: 0 25px !important;
    text-align: center !important;
  }

  .hero-content {
    text-align: center !important;
  }

  .hero-metrics {
    justify-content: center !important;
    width: 100% !important;
    margin: 20px auto !important;
    gap: 15px !important;
  }

  .hero-btns {
    justify-content: center !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
  }

  .hero-main .hero-image-container {
    width: 100%;
    margin-bottom: 25px;
    text-align: center;
    order: -1;
  }

  .hero-main .hero-image-container img {
    width: 90% !important;
    margin: 0 auto;
  }

  /* 2. Metrics Section (Class: .mobile-metric-item) */
  .mobile-metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 5px;
  }

  .mobile-metric-item .metrics-img {
    max-width: 40px;
    width: 40px;
    height: auto;
    margin: 0 auto 10px auto;
    display: block;
  }


  .hero-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .hero-image-container {
    order: -1;
  }

  .mobile-metric-item .purecounter,
  .mobile-metric-item .pllas {
    font-size: 18px;
    font-weight: 800;
  }

  .h-metric .m-icon {
    margin: 0 auto !important;
  }

  .mobile-metric-item p {
    font-size: 11px;
    margin-top: 5px;
    text-align: center;
  }

  .h-metric {
    text-align: center !important;
    flex-direction: column;
    justify-content: center;
  }

  /* 3. Hero Buttons Fix */
  .mobile-hero-btns {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-top: 25px;
  }

  .mobile-hero-btns a {
    width: 100%;
    margin: 0;
    display: block;
    text-align: center;
    padding: 12px;
  }

  /* 4. Footer Overlap Fix */
  .mobile-footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 0;
  }

  .mobile-footer-nav {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .mobile-footer-nav h4 {
    margin-top: 30px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
    margin-bottom: 12px;
  }

  .mobile-footer-nav ul {
    padding: 0;
    list-style: none;
  }

  .comparison-table-wrapper {
    width: 100%;
    overflow-x: auto;
  }

  .testimonials .testimonial-item {
    margin: 20px 0;
  }

}

/* ===========================
   Global Mobile Font Sizes
   =========================== */
@media (max-width: 576px) {

  /* Headings */
  h1 {
    font-size: 24px !important;
  }

  h2 {
    font-size: 20px !important;
  }

  h3 {
    font-size: 18px !important;
  }

  h4 {
    font-size: 16px !important;
  }

  h5 {
    font-size: 15px !important;
  }

  h6 {
    font-size: 14px !important;
  }

  /* Body text */
  p {
    font-size: 14px !important;
  }

  body {
    font-size: 14px;
  }

  /* Section titles */
  .section-title h2 {
    font-size: 22px !important;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .section-title p {
    font-size: 15px !important;
  }

  /* Buttons */
  .btn {
    font-size: 13px;
    padding: 8px 16px;
  }

  /* Links */
  a {
    font-size: inherit;
  }

  /* Form elements */
  input,
  textarea,
  select {
    font-size: 16px;
    /* Prevents zoom on iOS */
  }

  /* List items */
  li {
    font-size: inherit;
  }

  /* Small text */
  small,
  .small {
    font-size: 12px;
  }

  /* Labels */
  label {
    font-size: 13px;
  }
}

/* Extra small screens - 380px */
@media (max-width: 380px) {
  h1 {
    font-size: 20px !important;
  }

  h2 {
    font-size: 18px !important;
  }

  h3 {
    font-size: 16px !important;
  }

  h4 {
    font-size: 15px !important;
  }

  .section-title h2 {
    font-size: 18px !important;
  }

  .section-title p {
    font-size: 13px !important;
  }

  p {
    font-size: 13px !important;
  }

  body {
    font-size: 13px;
  }

  .btn {
    font-size: 12px;
    padding: 6px 14px;
  }
}

/* ===========================
   Mobile Spacing & Gaps
   =========================== */
@media (max-width: 576px) {

  /* Section padding */
  .section-padding {
    padding: 40px 0 !important;
  }

  section,
  .section {
    scroll-margin-top: 60px;
  }

  /* Container padding */
  .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  /* Bootstrap gaps */
  .row {
    --bs-gutter-x: 12px !important;
    --bs-gutter-y: 12px !important;
  }

  .row.gy-4 {
    --bs-gutter-y: 20px !important;
  }

  .row.gy-sm-3 {
    --bs-gutter-y: 15px !important;
  }

  /* Section title padding */
  .section-title {
    padding-bottom: 20px;
  }

  .section-title h2 {
    padding-bottom: 15px;
  }

  /* Button spacing */
  .btn+.btn {
    margin-left: 8px;
  }

  /* Reduce padding on cards */
  .card {
    padding: 15px;
  }

  /* Modal and dialog padding */
  .modal-body {
    padding: 15px;
  }

  /* Content padding */
  .content,
  .post-content {
    padding: 0 10px;
  }

  /* Reduce gap between elements */
  .gap-3 {
    gap: 10px !important;
  }

  .gap-4 {
    gap: 15px !important;
  }

  /* Margin adjustments */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 12px !important;
    margin-top: 12px !important;
  }

  p {
    margin-bottom: 10px !important;
  }

  /* List padding */
  ul,
  ol {
    padding-left: 20px;
    margin-bottom: 10px;
  }

  /* Table padding */
  table {
    font-size: 12px;
  }

  thead th {
    padding: 8px 5px;
  }

  tbody td {
    padding: 8px 5px;
  }

  .hero-image-right {
    flex: 0 0 90%;
    max-width: 90%;
    margin: 0 auto 20px auto;
    text-align: center;
    order: -1;
  }
}

/* Extra small screens - 380px */
@media (max-width: 380px) {
  .section-padding {
    padding: 30px 0 !important;
  }

  .container {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }

  .row {
    --bs-gutter-x: 10px !important;
    --bs-gutter-y: 10px !important;
  }

  .section-title {
    padding-bottom: 15px;
  }

  .btn+.btn {
    margin-left: 6px;
  }

  .card {
    padding: 12px;
  }

  .gap-3 {
    gap: 8px !important;
  }

  .gap-4 {
    gap: 12px !important;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 10px !important;
    margin-top: 10px !important;
  }

  p {
    margin-bottom: 8px !important;
  }
}

.rmp-container .rmp-menu-title .rmp-menu-title-image {
  margin-bottom: 28px !important;
}

#rmp-menu-wrap-109 .rmp-submenu .rmp-menu-item-link::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 7px;
  background: url(../images/white-bullet.webp) no-repeat center center;
  background-size: contain;
  margin-right: 10px;
  vertical-align: middle;
}

/* Mobile polish for HK Star landing page */
@media (max-width: 576px) {
  button.rmp_menu_trigger {
    z-index: 999 !important;
  }

  #metrics {
    padding: 40px 0 !important;
  }

  #metrics .row {
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 24px !important;
  }

  #metrics .col-lg-3,
  #metrics .col-md-3 {
    width: 50%;
    max-width: 50%;
  }

  #metrics .metrics-item,
  #metrics .mobile-metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    min-height: 156px;
    padding: 0 8px !important;
    text-align: center;
  }

  #metrics .metrics-img,
  #metrics .mobile-metric-item .metrics-img {
    width: 78px;
    max-width: 78px;
    height: 78px;
    margin: 0 auto 4px;
    object-fit: contain;
  }

  #metrics .metricsasd {
    line-height: 1;
  }

  #metrics .metricsasd .purecounter,
  #metrics .metricsasd .pllas,
  #metrics .metrics-item span,
  #metrics .mobile-metric-item .purecounter,
  #metrics .mobile-metric-item .pllas {
    font-size: 30px;
    line-height: 1;
  }

  #metrics .metrics-item p,
  #metrics .mobile-metric-item p {
    width: 100%;
    margin: 4px 0 0 !important;
    font-size: 13px !important;
    line-height: 1.35;
  }

  .mobile-hero-btns,
  #features-cards .text-center,
  .mobile-cta-stack,
  .why-choose-cloud .hero-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .mobile-hero-btns .btn-book-demo,
  .mobile-hero-btns .btn-view-pricing,
  #features-cards .btn-book-demo,
  #features-cards .btn-view-pricing,
  .mobile-cta-stack .btn-book-demo,
  .mobile-cta-stack .btn-view-pricing,
  .why-choose-cloud .btn-book-demo,
  .why-choose-cloud .btn-view-pricing {
    width: 100%;
    margin: 0 !important;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-cta-stack .btn-book-demo+.btn-view-pricing,
  #features-cards .btn-book-demo+.btn-view-pricing {
    margin-top: 10px !important;
  }

  .feature-list-modern {
    margin-top: 18px;
    padding-left: 0 !important;
  }

  .feature-list-modern li {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.45;
  }

  .feature-list-modern li i {
    width: 22px;
    height: 22px;
    margin-top: 1px;
    font-size: 20px;
    line-height: 1;
  }

  .highlights-2 .highlight-item {
    margin-bottom: 14px !important;
  }

  .highlights-2 .highlight-item .highlight-item-inner {
    gap: 14px !important;
    padding: 24px 18px;
  }

  .highlights-2 .highlight-item .highlight-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto;
  }

  .highlights-2 .highlight-item .highlight-content h3 {
    margin: 0 0 8px !important;
    line-height: 1.25;
  }

  .highlights-2 .highlight-item .highlight-content p {
    max-width: 260px;
    margin: 0 auto !important;
    line-height: 1.5;
  }
}

@media (max-width: 430px) {
  .footer {
    padding-top: 46px;
    background-size: 360px auto;
  }

  .mobile-footer-row {
    gap: 0;
  }

  .mobile-footer-nav {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-bottom: 8px;
  }

  .mobile-footer-nav+.mobile-footer-nav {
    margin-top: 8px;
  }

  .mobile-footer-nav h4,
  .footer h4 {
    margin-top: 18px !important;
    margin-bottom: 10px !important;
    font-size: 15px !important;
    letter-spacing: 0.4px;
  }

  .mobile-footer-nav ul {
    padding-left: 0 !important;
  }

  .footer .footer-links ul li {
    margin-bottom: 9px;
  }

  .footer .footer-links ul li a {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    align-items: start;
    gap: 8px;
    width: 100%;
    line-height: 1.35;
  }

  .footer .footer-links ul li a::before {
    margin: 2px 0 0;
  }
}

/* Page Title Banner */
.page-title-banner {
  background-color: #342647;
  background-image: url(../images/top-bar.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-title-banner .page-title {
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 38px;
  font-weight: 700;
  margin: 0;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .page-title-banner {
    padding: 20px 0;
    margin-bottom: 20px;
    background-size: 100% 100%;
  }

  .page-title-banner .page-title {
    font-size: 28px;
  }
}

.page-title-banner .page-title-description {
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  max-width: 800px;
  margin: 12px auto 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-title-banner .page-title-description {
    font-size: 14px;
    margin-top: 10px;
  }
}


/* Faq */
.faq-sectiongroup .accordion-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}

.faq-sectiongroup .accordion-content-wrapper .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-sectiongroup .accordion-body {
  background-color: #f7f6fb;
  /* Premium soft brand purple/violet tint */
  padding: 33px 37px;
  border-bottom: 3px solid #3a166d;
  /* Brand purple border bottom accent */
  padding-bottom: 16px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  font-family: var(--default-font);
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 12px !important;
}

.faq-sectiongroup .accordion-item {
  border-radius: 12px;
  border: none;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  background-color: #ffffff;
  overflow: hidden;
}

.faq-sectiongroup .accordion-button {
  background-color: #ffffff;
  box-shadow: none;
  border: 1px solid rgba(126, 106, 154, 0.15);
  color: var(--primary-color);
  font-family: var(--heading-font);
  font-weight: 600;
  padding: 18px 25px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.faq-sectiongroup .accordion-button.collapsed {
  border: 1px solid rgba(126, 106, 154, 0.15);
  background-color: #ffffff;
  border-radius: 12px;
}

.faq-sectiongroup .accordion-button:not(.collapsed) {
  background-color: #3a166d;
  color: #ffffff;
  border-color: #3a166d;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.faq-sectiongroup .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.faq-sectiongroup .accordion-button h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  font-family: var(--heading-font);
  transition: color 0.3s ease;
}

.faq-sectiongroup .accordion-button:not(.collapsed) h5 {
  color: #ffffff;
  font-weight: 600 !important;
}

.faq-sectiongroup .accordion-body .box {
  background-color: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(126, 106, 154, 0.15);
  padding: 30px 25px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.faq-sectiongroup .accordion-body ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.faq-sectiongroup .accordion-body ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: 1.6;
  font-family: var(--default-font);
}

.faq-sectiongroup .accordion-body ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--tick-color);
  /* Dynamically uses the theme tick color: #3fb6ce */
  font-weight: bold;
  font-size: 16px;
}

.accordion {
  width: 1000px;
  margin: 0 auto;
  max-width: 100%;
}

.accordion-body .box .text {
  width: calc(100% - 50px);
  padding-left: 15px;
}

.faq-sectiongroup .accordion-body .box .description {
  width: 94%;
}

.faq-sectiongroup .accordion-body .box h6 {
  color: var(--primary-color);
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  margin-bottom: 4px;
}

.faq-sectiongroup .accordion-body .box p {
  font-size: 14px;
  line-height: 20px;
  color: var(--black-color);
  font-family: var(--default-font);
  margin-bottom: 0;
}

.faq-sectiongroup .accordion {
  border-collapse: collapse;
}

@media (max-width: 768px) {
  .faq-sectiongroup .accordion-body {
    padding: 20px 15px !important;
  }

  .accordion-body .box .text {
    width: 100%;
    padding-left: 0;
    margin-top: 10px;
  }

  .faq-sectiongroup .accordion-body .box {
    text-align: center;
    justify-content: center;
  }
}

/* Support Page */
.product-highlights {
  padding: 50px 0 10px 0;
  position: relative;
  background-image: url(../images/productHighlight.png);
  background-size: 100%;
  background-position: bottom;
  overflow: hidden;
  background-repeat: no-repeat;
}

.product-highlights .comon-heading {
  padding-bottom: 50px;
}

.product-highlights .box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 24px);
  text-align: center;
  border: 1px solid rgba(126, 106, 154, 0.15);
  border-radius: 12px;
  /* Matches standard theme border-radius */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  padding: 35px 25px;
  transition: all 0.3s ease;
  margin-bottom: 24px;
  background: #fff;
}

.product-highlights .box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(45, 51, 135, 0.08);
  border-color: rgba(45, 51, 135, 0.2);
}

.product-highlights .row>div {
  display: flex;
}

.product-highlights .box h6 {
  line-height: 25px;
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  padding: 15px 0;
  padding-bottom: 8px;
  margin: 0;
}

.product-highlights .box p {
  line-height: 1.6;
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--black-color);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.product-highlights.no-clamp .box p {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}

.product-highlights .bg-text {
  position: absolute;
  top: 0;
  left: 0;
}

.box span {
  display: inline-flex;
  border-radius: 100%;
  width: 80px;
  height: 80px;
  align-items: center;
  justify-content: center;
  border: 1px solid;
  font-size: 28px;
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.product-highlights .box:hover span {
  transform: scale(1.08);
}

.product-highlights .row>div:nth-child(12n+1) .box span {
  border-color: #7DE5FB;
  color: #7DE5FB;
}

.product-highlights .row>div:nth-child(12n+2) .box span {
  border-color: #BD2183;
  color: #BD2183;
}

.product-highlights .row>div:nth-child(12n+3) .box span {
  border-color: #F1BF13;
  color: #F1BF13;
}

.product-highlights .row>div:nth-child(12n+4) .box span {
  border-color: #92D307;
  color: #92D307;
}

.product-highlights .row>div:nth-child(12n+5) .box span {
  border-color: #FF9F43;
  color: #FF9F43;
}

.product-highlights .row>div:nth-child(12n+6) .box span {
  border-color: #0ABDE3;
  color: #0ABDE3;
}

.product-highlights .row>div:nth-child(12n+7) .box span {
  border-color: #EE5253;
  color: #EE5253;
}

.product-highlights .row>div:nth-child(12n+8) .box span {
  border-color: #5F27CD;
  color: #5F27CD;
}

.product-highlights .row>div:nth-child(12n+9) .box span {
  border-color: #48DBFB;
  color: #48DBFB;
}

.product-highlights .row>div:nth-child(12n+10) .box span {
  border-color: #FF6B6B;
  color: #FF6B6B;
}

.product-highlights .row>div:nth-child(12n+11) .box span {
  border-color: #1DD1A1;
  color: #1DD1A1;
}

.product-highlights .row>div:nth-child(12n+12) .box span {
  border-color: #0984E3;
  color: #0984E3;
}

.product-highlights .box-content {
  height: 100%;
  margin-bottom: 15px;
}

.product-highlights .box-content ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-highlights .box-content li {
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ==========================================================================
   Reservation System / Smart Housekeeping Management Page Custom Styles
   ========================================================================== */

/* Dark purple color utility and text accent overrides */
.text-purple {
  color: #4f1e94 !important;
}

.text-dark-purple {
  color: #342647 !important;
}

/* 1. Hero Section Metric / Text Styling Specifics */
.hero-cloud-pms .h-metric .m-title {
  color: #4f1e94 !important;
  font-weight: 700;
}

.hero-cloud-pms .h-metric .m-desc {
  color: #666 !important;
  font-weight: 500;
}

.hero-cloud-pms .h-metric i {
  color: #4f1e94 !important;
  transition: all 0.3s ease;
}

.hero-cloud-pms .h-metric:hover i {
  transform: scale(1.2);
  text-shadow: 0 0 10px rgba(79, 30, 148, 0.3);
}

/* 2. End-to-End Workflow Timeline Stepper */
.hk-workflow-stepper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  width: 100%;
}

.workflow-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 15px;
  transition: all 0.3s ease;
}

.step-num-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.workflow-step .step-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f4ebff;
  color: #4f1e94;
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #ebd6ff;
  box-shadow: 0 4px 10px rgba(79, 30, 148, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.workflow-step:hover .step-num {
  background: #4f1e94;
  color: #fff;
  border-color: #4f1e94;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(79, 30, 148, 0.25);
}

.workflow-step .step-label {
  font-weight: 700;
  color: #342647;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.workflow-step .step-desc {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.4;
  margin-bottom: 0;
}

.workflow-connector {
  flex-grow: 1;
  height: 3px;
  background: #ebd6ff;
  margin-top: 24px;
  position: relative;
  max-width: 80px;
  border-radius: 2px;
}

/* 3. Three Pillar Value Cards */
.pillar-card {
  background: #fff;
  border: 1px solid rgba(79, 30, 148, 0.08);
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  text-align: center;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(79, 30, 148, 0.08);
  border-color: rgba(79, 30, 148, 0.2);
}

.pillar-icon {
  width: 60px;
  height: 60px;
  background: #f4ebff;
  color: #4f1e94;
  font-size: 1.75rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon {
  background: #4f1e94;
  color: #fff;
  transform: rotateY(180deg);
}

.pillar-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #342647;
  margin-bottom: 15px;
}

.pillar-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* 4. 14 Key Housekeeping Features Grid */
.hk-feature-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.03);
  padding: 10px;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.01);
  transition: all 0.3s ease;
  height: 100%;
}

.hk-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(79, 30, 148, 0.06);
  border-color: rgba(79, 30, 148, 0.12);
}

.hk-feat-icon {
  width: 50px;
  height: 50px;
  background: #fdfcff;
  border: 1px solid #ebd6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f1e94;
  font-size: 1.35rem;
  transition: all 0.3s ease;
}

.hk-feature-card:hover .hk-feat-icon {
  background: #f4ebff;
  transform: scale(1.08);
}

.hk-feature-card h5 {
  font-size: 1rem;
  color: #342647;
  margin-bottom: 10px;
}

.hk-feature-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* 5. Why Choose Badges and Cards */
.hk-card-badge {
  background: #f4ebff;
  color: #4f1e94;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(79, 30, 148, 0.1);
}

.feature-card-modern {
  border-left: 5px solid #4f1e94;
  padding: 30px 25px !important;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.feature-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(79, 30, 148, 0.07);
}

.feature-card-modern p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Multi-room Compatibility Badges */
.compat-badge {
  background: #fff;
  border: 1px solid #ebd6ff;
  color: #342647;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.compat-badge:hover {
  background: #f4ebff;
  color: #4f1e94;
  border-color: #4f1e94;
  transform: scale(1.05);
}

.compat-badge.star-compat {
  background: #4f1e94;
  color: #fff;
  border-color: #4f1e94;
  box-shadow: 0 4px 15px rgba(79, 30, 148, 0.3);
}

.compat-badge.star-compat:hover {
  background: #3a166d;
  color: #fff;
  border-color: #3a166d;
}

/* 6. Interconnected Operations Ecosystem Node Map */
.ecosystem-map-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle, rgba(79, 30, 148, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  padding: 20px;
}

.ecosystem-map {
  position: relative;
  width: 100%;
  height: 100%;
}

.eco-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.conn-line {
  stroke: #4f1e94;
  stroke-width: 2.5px;
  stroke-dasharray: 6 5;
  stroke-linecap: round;
  opacity: 0.25;
  animation: ecoDash 15s linear infinite;
}

@keyframes ecoDash {
  to {
    stroke-dashoffset: -100;
  }
}

.eco-node {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.eco-node .node-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
  border-radius: 50%;
  box-sizing: border-box;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

/* Central Node */
.center-node {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.center-node .node-inner {
  width: 150px;
  height: 150px;
  padding: 16px;
  background: #4f1e94;
  color: #fff;
  border: 5px solid #fff;
  box-shadow: 0 10px 30px rgba(79, 30, 148, 0.35);
  position: relative;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.18;
}

.center-node::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid #4f1e94;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: nodePulse 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

@keyframes nodePulse {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.35);
    opacity: 0;
  }
}

.center-node .node-inner i {
  font-size: 2.35rem;
  margin-bottom: 7px;
  animation: pulseIcon 3s ease-in-out infinite alternate;
}

@keyframes pulseIcon {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.15);
  }
}

/* Satellite Nodes */
.satellite-node .node-inner {
  width: 96px;
  height: 96px;
  padding: 11px;
  border: 3px solid #ebd6ff;
  color: #4f1e94;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.15;
}

.satellite-node .node-inner i {
  font-size: 1.55rem;
  margin-bottom: 5px;
}


/* Satellite Node Positions */
.sat-1 {
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sat-2 {
  top: 30%;
  left: 84.5%;
  transform: translate(-50%, -50%);
}

.sat-3 {
  top: 70%;
  left: 84.5%;
  transform: translate(-50%, -50%);
}

.sat-4 {
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sat-5 {
  top: 70%;
  left: 15.5%;
  transform: translate(-50%, -50%);
}

.sat-6 {
  top: 30%;
  left: 15.5%;
  transform: translate(-50%, -50%);
}

/* Hover Effects on Nodes */
.satellite-node:hover {
  z-index: 5;
}

.satellite-node br {
  display: none;
}

.satellite-node:hover .node-inner {
  transform: scale(1.18);
  background: #f4ebff;
  border-color: #4f1e94;
  box-shadow: 0 12px 30px rgba(79, 30, 148, 0.2);
}

.center-node:hover .node-inner {
  transform: scale(1.08);
  box-shadow: 0 15px 40px rgba(79, 30, 148, 0.55);
}

/* SVG Line Hover highlights */
.ecosystem-map:has(.sat-1:hover) .conn-1 {
  stroke-width: 4px;
  stroke: #4f1e94;
  opacity: 0.8;
}

.ecosystem-map:has(.sat-2:hover) .conn-2 {
  stroke-width: 4px;
  stroke: #4f1e94;
  opacity: 0.8;
}

.ecosystem-map:has(.sat-3:hover) .conn-3 {
  stroke-width: 4px;
  stroke: #4f1e94;
  opacity: 0.8;
}

.ecosystem-map:has(.sat-4:hover) .conn-4 {
  stroke-width: 4px;
  stroke: #4f1e94;
  opacity: 0.8;
}

.ecosystem-map:has(.sat-5:hover) .conn-5 {
  stroke-width: 4px;
  stroke: #4f1e94;
  opacity: 0.8;
}

.ecosystem-map:has(.sat-6:hover) .conn-6 {
  stroke-width: 4px;
  stroke: #4f1e94;
  opacity: 0.8;
}

/* 7. Responsiveness Media Queries */
@media (max-width: 991px) {
  .hk-workflow-stepper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
  }

  .workflow-step {
    width: 100%;
    max-width: 450px;
    display: flex;
    text-align: left;
    align-items: center;
    background: #fff;
    border: 1px solid rgba(79, 30, 148, 0.05);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.01);
  }

  .workflow-step:hover {
    transform: translateX(10px);
  }

  .step-num-wrap {
    margin-bottom: 0;
    margin-right: 20px;
  }

  .workflow-connector {
    width: 3px;
    height: 25px;
    background: #ebd6ff;
    margin: -10px 0 -10px 42px;
    z-index: 1;
  }

  .ecosystem-map-wrapper {
    max-width: 420px;
    margin: 40px auto 0;
  }
}

@media (max-width: 480px) {
  .ecosystem-map-wrapper {
    max-width: 340px;
    padding: 10px;
  }

  .center-node .node-inner {
    width: 118px;
    height: 118px;
    padding: 12px;
    font-size: 0.68rem;
  }

  .center-node::after {
    width: 128px;
    height: 128px;
  }

  .center-node .node-inner i {
    font-size: 1.75rem;
  }

  .satellite-node .node-inner {
    width: 78px;
    height: 78px;
    padding: 7px;
  }

  .satellite-node .node-inner i {
    font-size: 1.2rem;
    margin-bottom: 3px;
  }

  .satellite-node .node-inner span {
    font-size: 0.58rem;
  }
}

/* Helper typography and component styles to avoid inline CSS */
.hk-lead-text {
  color: #4f1e94;
  font-weight: 500;
}

.hk-feature-intro {
  max-width: 800px;
  font-size: 1.1rem;
  color: #525252;
}

.hk-divider {
  width: 50px;
  height: 3px;
  background: #4f1e94;
  margin: 15px auto;
  border-radius: 2px;
}

.hk-cta-lead {
  font-weight: 500;
  font-size: 1.25rem;
  color: #525252;
}

.hk-cta-heading {
  font-size: 1.5rem;
}

/* Nested CSS for bullet list items with checkmark pseudo elements */
.hk-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hk-check-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #666;
  line-height: 1.2;
}

.hk-check-list li::before {
  content: "\f26a";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0px;
  color: #4f1e94;
  font-size: 0.8rem;
  line-height: 1.2;
}

.hk-check-list li strong {
  color: #342647;
}

/* ==========================================================================
   Reservation System Page – Section 3: Manual vs Automated Comparison Cards
   ========================================================================== */

.rs-compare-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.rs-compare-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.07);
}

.rs-compare-manual {
  border-top: 5px solid #e74c3c;
}

.rs-compare-automated {
  border-top: 5px solid #27ae60;
}

.rs-compare-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.rs-compare-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0;
  color: #342647;
}

.rs-compare-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.rs-icon-manual {
  background: #fdecea;
  color: #e74c3c;
}

.rs-icon-auto {
  background: #eafaf1;
  color: #27ae60;
}

.rs-compare-card>p {
  color: #666;
  font-size: 0.97rem;
  margin-bottom: 18px;
}

.rs-compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rs-compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.97rem;
  color: #444;
  line-height: 1.5;
}

.rs-compare-list li:last-child {
  border-bottom: none;
}

.rs-compare-list li i {
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: -2px;
}

.text-success-hk {
  color: #27ae60 !important;
}

/* Reservation System – Why these Features Matter highlight card */
.rs-highlight-card {
  background: linear-gradient(135deg, #f4ebff 0%, #eef1ff 100%);
  border-left: 5px solid #4f1e94;
  text-align: left;
}

.rs-highlight-card .f-icon-box {
  background: #4f1e94;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.rs-highlight-card h5 {
  color: #342647;
}

.rs-highlight-card p {
  color: #555;
  font-size: 0.97rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .rs-compare-card {
    padding: 24px 20px;
  }

  .rs-compare-header h3 {
    font-size: 1.05rem;
  }
}

/* Compatibility Hover Card Styles */
.hk-cta-heading {
  font-size: 1.5rem;
}

/* Nested CSS for bullet list items with checkmark pseudo elements */
.hk-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hk-check-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #666;
  line-height: 1.2;
}

.hk-check-list li::before {
  content: "\f26a";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0px;
  color: #4f1e94;
  font-size: 0.8rem;
  line-height: 1.2;
}

.hk-check-list li strong {
  color: #342647;
}

/* ==========================================================================
   Reservation System Page – Section 3: Manual vs Automated Comparison Cards
   ========================================================================== */

.rs-compare-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.rs-compare-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.07);
}

.rs-compare-manual {
  border-top: 5px solid #e74c3c;
}

.rs-compare-automated {
  border-top: 5px solid #27ae60;
}

.rs-compare-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.rs-compare-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0;
  color: #342647;
}

.rs-compare-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.rs-icon-manual {
  background: #fdecea;
  color: #e74c3c;
}

.rs-icon-auto {
  background: #eafaf1;
  color: #27ae60;
}

.rs-compare-card>p {
  color: #666;
  font-size: 0.97rem;
  margin-bottom: 18px;
}

.rs-compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rs-compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.97rem;
  color: #444;
  line-height: 1.5;
}

.rs-compare-list li:last-child {
  border-bottom: none;
}

.rs-compare-list li i {
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: -2px;
}

.text-success-hk {
  color: #27ae60 !important;
}

/* Reservation System – Why these Features Matter highlight card */
.rs-highlight-card {
  background: linear-gradient(135deg, #f4ebff 0%, #eef1ff 100%);
  border-left: 5px solid #4f1e94;
  text-align: left;
}

.rs-highlight-card .f-icon-box {
  background: #4f1e94;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.rs-highlight-card h5 {
  color: #342647;
}

.rs-highlight-card p {
  color: #555;
  font-size: 0.97rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .rs-compare-card {
    padding: 24px 20px;
  }

  .rs-compare-header h3 {
    font-size: 1.05rem;
  }
}

/* Premium Advantage Card Styles */
.advantage-card-premium {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.advantage-card-premium img {
  object-fit: cover;
  min-height: 220px;
}

.advantage-card-premium .card-body p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Compatibility Hover Card Styles */
.compat-hover-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.compat-hover-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Standardize paragraph sizes across templates (excluding header/footer/hero) */
main p:not(.hero-subtext),
section p:not(.hero-subtext),
.section p:not(.hero-subtext) {
  font-size: 1rem;
  line-height: 1.6;
}

/* Blog Realted Style Started */
/* Latest Blog Section */
.latest-blog-section {
  background-color: #fcfcfc;
}

.blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border-bottom: 3px solid var(--primary-color);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.blog-image img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-date {
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: var(--heading-color);
  color: #fff;
  padding: 5px 15px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 0 10px 0 0;
  z-index: 1;
}

.blog-content {
  padding: 25px;
}

.blog-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-content h5 a {
  color: var(--heading-color);
  transition: color 0.3s;
}

.blog-content h5 a:hover {
  color: var(--primary-color);
}

.blog-content p {
  color: var(--black-color);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-content .read-more {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 14px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s;
}

.blog-content .read-more:hover {
  gap: 12px;
}

/* Blog Listing Page */
.blog-listing-section,
.single-post-section,
.latest-blog-section {
  background-image: url(../images/outcome.png);
  background-size: 100% 50%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position-y: 50%;
  position: relative;
}

.blog-listing-section::before,
.single-post-section::before,
.latest-blog-section::before,
.faq-sectiongroup::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../images/banner.png);
  background-size: contain;
  background-position: left top -200px;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 0;
}

.blog-item-row {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border-bottom: 4px solid var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-item-row:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.blog-item-row .blog-image {
  border-radius: 15px;
  overflow: hidden;
  height: 280px;
}

.blog-item-row .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-item-row:hover .blog-image img {
  transform: scale(1.05);
}

.blog-meta {
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 600;
}

.blog-meta .category a {
  color: var(--primary-color);
  text-transform: uppercase;
}

.blog-meta .divider {
  margin: 0 10px;
  color: #ccc;
}

.blog-meta .date {
  color: #888;
}

.blog-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.blog-title a {
  color: var(--heading-color);
  transition: color 0.3s;
}

.blog-title a:hover {
  color: var(--primary-color);
}

.blog-excerpt p {
  color: var(--black-color);
  line-height: 1.8;
  margin-bottom: 25px;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.read-more-link {
  color: var(--heading-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

.read-more-link:hover {
  color: var(--primary-color);
}

.blog-share {
  font-size: 14px;
  color: #888;
  cursor: pointer;
  transition: color 0.3s;
}

.blog-share:hover {
  color: var(--primary-color);
}

/* Pagination */
.pagination-wrapper {
  display: flex;
  justify-content: center;
}

.pagination-wrapper .navigation.pagination {
  display: block;
}

.pagination-wrapper .nav-links {
  display: flex;
  gap: 10px;
}

.pagination-wrapper .page-numbers {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  color: var(--heading-color);
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.pagination-wrapper .page-numbers:hover,
.pagination-wrapper .page-numbers.current {
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
}

/* Featured Blog Post */
.blog-item-featured {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 50px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border-bottom: 5px solid var(--primary-color);
}

.blog-item-featured .blog-image.large {
  border-radius: 15px;
  overflow: hidden;
  height: 450px;
}

.blog-item-featured .blog-image.large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-item-featured:hover .blog-image.large img {
  transform: scale(1.03);
}

.blog-title.large {
  font-size: 36px;
  line-height: 1.3;
}

/* Sidebar Styling */
.blog-sidebar {
  padding-left: 20px;
}

.sidebar-widget {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary-color);
}

.widget-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
  position: relative;
}

.widget-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-color);
}

/* Popular Posts Widget */
.popular-item {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e3e3e3;
}

.popular-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.popular-item .thumb {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}

.popular-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-item .info h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* Number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.popular-item .info h6 a {
  color: var(--heading-color);
}

.popular-item .info h6 a:hover {
  color: var(--primary-color);
}

.popular-item .info span {
  font-size: 14px;
  color: #888;
}

/* Category & Archive Lists */
.sidebar-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-widget ul li {
  padding: 10px 0;
  border-bottom: 1px solid #e3e3e3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-widget ul li:last-child {
  border-bottom: none;
}

.sidebar-widget ul li a {
  color: #555;
  font-weight: 500;
  transition: all 0.3s;
}

.sidebar-widget ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.sidebar-widget ul li span {
  background: #f0f0f0;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  color: #888;
}

/* Search Form Sidebar */
.search-form-wrapper form {
  display: flex;
  position: relative;
}

.search-form-wrapper label {
  display: none;
}

.search-form-wrapper input[type="search"] {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #eee;
  border-radius: 30px;
  font-size: 14px;
  background: #fcfcfc;
}

.search-form-wrapper input[type="submit"] {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  border: none;
  background: var(--primary-color);
  color: #fff;
  padding: 0 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
}

/* Single Post Styling */
.single-post-content {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.post-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
}

.rounded-20 {
  border-radius: 20px !important;
}

.post-entry-content {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.post-entry-content h2,
.post-entry-content h3 {
  margin-top: 30px;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-weight: 700;
}

.post-entry-content p {
  margin-bottom: 20px;
}

.post-tags .tag-label {
  font-weight: 700;
  color: var(--heading-color);
  margin-right: 10px;
}

.post-tags a {
  display: inline-block;
  background: #f0f0f0;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 13px;
  color: #666;
  margin-right: 10px;
  transition: all 0.3s;
}

.post-tags a:hover {
  background: var(--primary-color);
  color: #fff;
}

.nav-box {
  transition: transform 0.3s, box-shadow 0.3s;
}

.nav-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.nav-box h6 a {
  color: var(--heading-color);
  transition: color 0.3s;
}

.nav-box h6 a:hover {
  color: var(--primary-color);
}

nav.post-navigation,
.pagination-wrapper {
  position: relative;
}

/* restore bullets & numbers */
.single .post-entry-content ul,
.single .post-entry-content ol {
  list-style-type: initial !important;
  list-style-position: outside !important;
  padding-left: 1.5em !important;
  margin-left: 1.5em !important;
}

/* optional: finer control on list items */
.single .post-entry-content ul li,
.single .post-entry-content ol li {
  margin-bottom: 0.5em;
}

.single .post-entry-content ul li {
  list-style: disc;
}

.single .post-entry-content ol li {
  list-style: decimal;
}

/* --- Blog & Sidebar UI Enhancements --- */
.blog-sidebar .sidebar-widget {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.blog-sidebar .widget-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
  display: inline-block;
}

.blog-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-sidebar ul li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.blog-sidebar ul li:last-child {
  border-bottom: none;
}

.blog-sidebar ul li a {
  color: var(--black-color);
  transition: color 0.3s;
}

.blog-sidebar ul li a:hover {
  color: var(--primary-color);
}

.popular-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.popular-item .thumb img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}

.popular-item .info h6 {
  font-size: 0.95rem;
  margin-bottom: 5px;
  line-height: 1.4;
}

/* Pagination */
.pagination-wrapper .nav-links {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.pagination-wrapper .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  color: var(--heading-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  font-weight: 600;
}

.pagination-wrapper .page-numbers.current,
.pagination-wrapper .page-numbers:hover {
  background: var(--primary-color);
  color: #fff;
}

.pagination-wrapper .page-numbers i {
  font-size: 1.2rem;
}

/* Contact page Group*/
.contactInfo h2,
.contactForm h2 {
  font-size: 32px;
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 15px;
}

.formGroup {
  padding-bottom: 20px;
}

.formGroup input,
.formGroup textarea {
  width: 100%;
  background-color: #f1f1f1;
  border-radius: 40px;
  outline: 0px;
  color: var(--heading-color);
  font-size: var(--inner-heading-size-two);
  padding: 15px 25px;
  border: 0px;
  font-weight: 500;
  transition: background-color 0.3s, box-shadow 0.3s;
}

.formGroup input {
  height: 60px;
}

.formGroup textarea {
  height: 170px;
  resize: none;
}

.formGroup input:focus,
.formGroup textarea:focus {
  background-color: #e9e9e9;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.contact-page-seca {
  position: relative;
  overflow: hidden;
  padding-top: 25px;
  padding-bottom: 25px;
}

.contact-page-seca .container {
  border-top: 1px solid #e0e0e0;
  padding-top: 50px;
}

.sbmtBtn {
  background: #000;
  color: #fff;
  border-radius: 40px;
  font-size: var(--inner-heading-size-two);
  border: 0px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 500;
  padding: 14px 35px;
}

.sbmtBtn i {
  margin-left: 8px;
}

.sbmtBtn:hover {
  background: #333;
}

.contactForm {
  padding-left: 5%;
}

.btmfooter {
  background: rgb(254 210 43 / 30%);
  text-align: center;
}

.btmfooter p {
  margin: 0px;
  color: #414141;
  text-align: center;
  padding: 25px 0px;
  font-size: 12px;
  ;
}

/* ================================
   Dynamic Section Background Title
================================ */
.section-bg-title {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.section-bg-title::before {
  content: attr(data-bgtitle);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 200px;
  font-weight: 800;
  text-transform: uppercase;
  color: rgb(0 0 0 / 2%);
  white-space: nowrap;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: -1;
}

.section-bg-title .comon-heading {
  position: relative;
  z-index: 2;
}

.comon-heading {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.comon-heading h2 {
  font-size: 48px;
  color: #333;
  font-weight: 800;
}


.contactInfo h2 {
  margin-bottom: 35px;
}

.contactInfoItem span i {
  font-size: 20px;
  color: var(--white-color);
}

.contactForm p {
  font-size: 16px;
  color: var(--black-color);
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Contact Details Wrapper */
.contactInfo {
  background: transparent;
}

/* Section Title */
.contactTitle {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

/* Each Item */
.contactInfoItem {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* Icon Style */
.contactInfoItem span {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  font-size: 18px;
}

/* Text Wrapper */
.contactInfoItemtxt label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

/* Text / Links */
.contactInfoItemtxt p,
.contactInfoItemtxt a {
  margin: 0;
  font-size: 15px;
  color: var(--black-color);
  line-height: 1.6;
  text-decoration: none;
}

.contactInfoItemtxt a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.contact-page-btm p {
  font-size: 18px;
  color: var(--black-color);
  line-height: 1.5;
  margin: 0;
}


/* CF7 Form Button Match Theme */
.wpcf7-submit {
  background-color: var(--primary-color) !important;
  color: var(--white-color) !important;
  border: 2px solid var(--primary-color) !important;
  border-radius: 50px !important;
  padding: 10px 30px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.wpcf7-submit:hover {
  background-color: transparent !important;
  color: var(--primary-color) !important;
}


/* Hide auto-injected AddToAny share buttons */
.blog-excerpt .addtoany_share_save_container,
.post-entry-content>.addtoany_share_save_container {
  display: none !important;
}

/* Fix search input text color */
.search-form-wrapper input.search-field,
.search-field {
  color: var(--black-color) !important;
  background-color: #f5f5f5 !important;
}

.search-form-wrapper input.search-field::placeholder,
.search-field::placeholder {
  color: #888 !important;
}

/* Custom Padding Utilities */
.section-padding-top-50 {
  padding-top: 50px !important;
}

.section-padding-btm-50 {
  padding-bottom: 50px !important;
}

.section-padding-top-100 {
  padding-top: 100px !important;
}

.section-padding-btm-100 {
  padding-bottom: 100px !important;
}


/* Force textarea to full width on contact page */
.contactForm .col-md-6:has(textarea) {
  flex: 0 0 100%;
  max-width: 100%;
}


/* Added Box shadow to standard blog items */
.blog-item {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border-bottom: 4px solid var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-bg-title {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.section-bg-title::before {
  content: attr(data-bgtitle);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 200px;
  font-weight: 800;
  text-transform: uppercase;
  color: rgb(0 0 0 / 2%);
  white-space: nowrap;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: -1;
}

.section-bg-title .comon-heading {
  position: relative;
  z-index: 2;
}

.comon-heading {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.comon-heading h2 {
  font-size: 48px;
  color: #333;
  font-weight: 800;
}


.contactInfo h2 {
  margin-bottom: 35px;
}

.contactInfoItem span i {
  font-size: 20px;
  color: var(--white-color);
}

.contactForm p {
  font-size: 16px;
  color: var(--black-color);
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Contact Details Wrapper */
.contactInfo {
  background: transparent;
}

/* Section Title */
.contactTitle {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

/* Each Item */
.contactInfoItem {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* Icon Style */
.contactInfoItem span {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  font-size: 18px;
}

/* Text Wrapper */
.contactInfoItemtxt label {
  display: block;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--heading-color);
}

/* Text / Links */
.contactInfoItemtxt p,
.contactInfoItemtxt a {
  margin: 0;
  font-size: 15px;
  color: var(--black-color);
  line-height: 1.6;
  text-decoration: none;
}

.contactInfoItemtxt a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.contact-page-btm p {
  font-size: 18px;
  color: var(--black-color);
  line-height: 1.5;
  margin: 0;
}


/* CF7 Form Button Match Theme */
.wpcf7-submit {
  background-color: var(--primary-color) !important;
  color: var(--white-color) !important;
  border: 2px solid var(--primary-color) !important;
  border-radius: 50px !important;
  padding: 10px 30px !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.wpcf7-submit:hover {
  background-color: transparent !important;
  color: var(--primary-color) !important;
}


/* Hide auto-injected AddToAny share buttons */
.blog-excerpt .addtoany_share_save_container,
.post-entry-content>.addtoany_share_save_container {
  display: none !important;
}

/* Fix search input text color */
.search-form-wrapper input.search-field,
.search-field {
  color: var(--black-color) !important;
  background-color: #f5f5f5 !important;
}

.search-form-wrapper input.search-field::placeholder,
.search-field::placeholder {
  color: #888 !important;
}

/* Custom Padding Utilities */
.section-padding-top-50 {
  padding-top: 50px !important;
}

.section-padding-btm-50 {
  padding-bottom: 50px !important;
}

.section-padding-top-100 {
  padding-top: 100px !important;
}

.section-padding-btm-100 {
  padding-bottom: 100px !important;
}


/* Force textarea to full width on contact page */
.contactForm .col-md-6:has(textarea) {
  flex: 0 0 100%;
  max-width: 100%;
}


/* Added Box shadow to standard blog items */
.blog-item {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border-bottom: 4px solid var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

/* Fix Contact Form Styles - Sleek Card Look */
.contactForm {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
}

.contactForm input:not([type="submit"]),
.contactForm textarea {
  width: 100%;
  border: 2px solid #f0f0f0 !important;
  padding: 12px 18px !important;
  border-radius: 10px !important;
  font-weight: 500 !important;
  height: auto !important;
  background-color: #fcfcfc !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  color: var(--heading-color) !important;
}

.contactForm input:not([type="submit"]):focus,
.contactForm textarea:focus {
  border-color: var(--primary-color) !important;
  background-color: #fff !important;
  box-shadow: 0 8px 20px rgba(45, 51, 135, 0.05) !important;
  outline: none !important;
}

.contactForm label {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondaryy-color);
  margin-bottom: 8px;
  display: block;
}

.contactForm br {
  display: none;
}

.contactForm p {
  margin-bottom: 15px;
}

/* Force ANY column containing textarea to 100% */
.contactForm [class*="col-"]:has(textarea) {
  flex: 0 0 100% !important;
  max-width: 100% !important;
}

/* Reduce Textarea Height */
.contactForm textarea {
  height: 100px !important;
}


input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
textarea::placeholder {
  color: #bbbbbb;
}