/*!
Theme Name: Symbiosis
Theme URI: http://underscores.me/
Author: Bivatech
Author URI: https://bivatech.com/
Description: Theme is developed by bivatech and useful for the make a beautiful e-commerce website with high speed and well performance.
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: symbiosis
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Symbiosis is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/* ===================================
   CSS Variables (Design Tokens)
   =================================== */
:root {
  /* Colors - HSL Format */
  --cream-hsl: hsl(42 47% 95%);
  --cream-dark-hsl: hsl(42 30% 88%);
  --primary-hsl: hsl(201, 96%, 22%);
  --primary-light-hsl: hsl(201, 96%, 30%);
  --primary-dark-hsl: hsl(201, 96%, 10%);
  --primary-color-hsl: hsl(201, 96%, 22%);
  --gold-hsl: hsl(43 74% 66%);
  --white-hsl: hsl(0 0% 100%);
  --black-hsl: hsl(0 0% 10%);
  --gray-hsl: hsl(0 0% 60%);
  --gray-light-hsl: hsl(0 0% 95%);
  --menu-bg-hsl: hsl(95, 18%, 87%);
  --text-color-hsl: hsl(0 0% 10%);
  --accent-hsl: hsl(32, 91%, 54%);
  --white: 0 0% 100%;
  --black: 0 0% 10%;
  --cream-light-hsl: HSL(33°, 39%, 95%);
  --purewhite: #ffffff;

  /* Gradients #ddd8ca*/

  --light-gradient: linear-gradient(
    135deg,
    var(--cream-hsl) 0%,
    var(--cream-dark-hsl) 100%
  );
  --dark-gradient: linear-gradient(
    135deg,
    var(--primary-hsl) 0%,
    var(--primary-dark-hsl) 100%
  );

  /* Typography */
   --font-serif: "Montserrat", sans-serif;
  --font-sans: "Montserrat", sans-serif; 
  /*--font-serif: "Josefin Sans", sans-serif;
  --font-sans: "Josefin Sans", sans-serif;*/

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Transitions */
  --transition: all 0.3s ease;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

  /* Forms */
  --form-font-size: 1rem;
  --form-line-height: 1.4;
  --form-color: #222;
  --form-bg: #fff;
  --form-border: #d1d5db;
  --form-border-radius: 6px;
  --form-focus-ring: rgba(59, 130, 246, 0.25);
  --form-padding: 0.6rem 0.75rem;
  --form-gap: 0.75rem;
  --form-label-color: #111827;
  --form-help-color: #6b7280;
  --form-error-color: #dc2626;
  --form-success-color: #16a34a;
  --form-button-bg: #0b6ef6;
  --form-button-color: #fff;
  --form-button-padding: 0.65rem 1rem;
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  /*font-family: var(--font-sans);*/
  background-color: var(--cream-hsl);
  color: var(--black-hsl);
  line-height: 1.6;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
}

button, btn{font-family: "DM Sans", sans-serif;}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600 !important;
  line-height: 1.2;
}
p strong{
	font-weight: 600 !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: var(--light-color);
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/* ===================================
   Container & Layout
   =================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* .section-header {
  margin-bottom: var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
} */
.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: var(--spacing-lg);
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 2rem);
  color: var(--primary-hsl);
  margin-bottom: var(--spacing-sm);
  font-weight: 300;
}

.section-header .arrowbtnholder {
  justify-content: flex-end;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--gray-hsl);
}
.section-header-center {
  display: grid;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--spacing-lg);
}

.section-header-center h2 {
  font-size: clamp(2rem, 5vw, 2rem);
  font-weight: 300;
  text-align: center;
}

.section-header-center p {
  font-size: 1.125rem;
  color: var(--gray-hsl);
  text-align: center;
}

/* ===================================
   Navigation
   =================================== */
.navigation {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: 4;
  transition: var(--transition);
}

.navigation .rightholder {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* .side-menu-footer .btn-outline,
.navigation .rightholder .btn-outline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
} */
.arrowbtnholder {
  display: flex;
}

.btn.btn-withicon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  align-self: flex-start;
  width: auto;
  flex: 0 0 auto;
  margin: 0 auto;
}
.btn.btn-withicon:after {
  content: "";
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.arrowbtnholder .btn.btn-withicon {
  margin: 0;
}

.hero-buttons.arrowbtnholder .btn.btn-withicon {
  margin: 0 auto;
}

/* .side-menu-footer .btn-outline:after,
.navigation .rightholder .btn-outline:after {
  content: "";
  width: 18px;
  height: 18px;
  background: url(./assets/img/login-icon.svg) no-repeat center;
  background-size: contain;
} */

.side-menu-footer .btn-outline:after,
.navigation .rightholder .btn-outline:after {
  background-image: url(./assets/img/login-icon.svg);
}
.arrowbtnholder .btn.btn-withicon:after {
  background-image: url(./assets/img/right_arrow.svg);
  width: 12px;
  height: 12px;
}

.navigation .container {
  background-color: hsl(var(--white) / 0.5);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  border-radius: 200px;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) 0;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-hsl);
}
.logo img {
  max-height: 40px;
}

/* Hamburger button */
.hamburger {
  position: relative;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--text-color-hsl);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.hamburger span {
  position: absolute;
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-color-hsl);
  border-radius: 2px;
  transition: transform 0.3s ease;
  top: 50%;
}

.hamburger span:first-child {
  transform: translateY(-6px);
}
.hamburger span:last-child {
  transform: translateY(6px);
}

/* Active (X) state */
.hamburger.active span:first-child {
  transform: translateY(0) rotate(45deg);
}
.hamburger.active span:last-child {
  transform: translateY(0) rotate(-45deg);
}

/* Side menu */
.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  max-width: 100%;
  background: var(--white-hsl);
  transform: translateX(100%);
  transition: var(--transition);
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-md);
  min-height: 100%;
}
.side-menu .nav-links {
  text-align: left;
  padding: 0 var(--spacing-md);
}
.side-menu .nav-links a {
  font-size: 1.8rem;
  font-weight: 300;
  display: block;
}
.side-menu.show {
  transform: translateX(0);
}
.side-menu .nav-links li {
  position: relative;
  margin: 0.5rem 0;
}
.side-menu-wrapper {
  display: flex;

  overflow-y: auto;
  width: 100%;
  flex-direction: column;
}

.side-menu .side-menu-wrapper ul ul {
  padding-left: var(--spacing-sm);
}

.side-menu .side-menu-wrapper ul ul a {
  font-size: 1rem;
}

.side-menu-holder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-top: 6rem;
  width: 100%;
}
.side-menu-footer {
  position: sticky;
  width: 100%;
  text-align: center;
  display: flex;
  background: var(--cream-dark-hsl);
  padding: var(--spacing-sm);
  bottom: 0;
}
.side-menu-footer ul {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}

.side-menu-wrapper .sub-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.side-menu-wrapper .sub-menu li a {
  font-size: 0.95rem;
  color: #555;
}

.side-menu-wrapper .nav-links > li:has(.sub-menu) > a::after {
  content: "";
  font-size: 0.8rem;
  position: absolute;
  right: 20px;
  top: 20px;
  transition: transform 0.3s ease;
  background: url(./assets/img/dropdown-arrow.svg) no-repeat center;
  background-size: contain;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
}

/* Rotate arrow when open */
.side-menu-wrapper .nav-links > li.open > a::after {
  transform: translateY(-50%) rotate(90deg);
}

/* ===== Open submenu ===== */
.side-menu-wrapper .nav-links > li.open > .sub-menu {
  max-height: 500px; /* Enough to show all items */
  opacity: 1;
  visibility: visible;
}

/* Navigation links */
.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.nav-links li {
  margin: 14px 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-color-hsl);
  font-size: 1rem;
  font-weight: 400;
  transition: color var(--transition);
}
.nav-links a:hover {
  color: var(--accent);
}
.btn.btn-orange {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border: 0px solid var(--accent-hsl);
  border-radius: 100vw;
  background: var(--accent-hsl);
}
.btn.btn-orange:hover {
  background: var(--primary-hsl);
  color: var(--white-hsl);
}

/* ===================================
   Buttons
   =================================== */
.btn {
  display: inline-block;
  padding: 0.5rem 2rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 100vw;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-primary:hover {
  background-color: var(--primary-light-hsl);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-hsl);
  border-color: var(--primary-hsl);
}

.btn-secondary:hover {
  background-color: var(--primary-hsl);
  color: var(--white-hsl);
}

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

.btn-light:hover {
  background-color: var(--cream-hsl);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-hsl);
  border-color: var(--primary-hsl);
}

.btn-outline:hover {
  background-color: hsl(var(--white) / 0.1);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  padding: calc(50px + var(--spacing-xl)) 0 var(--spacing-xl);
  background: linear-gradient(
    135deg,
    var(--cream-hsl) 0%,
    var(--cream-dark-hsl) 100%
  );
  position: relative;
}
#inner.hero {
padding-bottom:0;
}

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

.hero-content {
  display: grid;
  gap: var(--spacing-lg);
  align-items: center;
}

.hero-text {
  text-align: center;
  max-width: 1012px;
  margin: 0 auto;
}

.hero-text p{
	 max-width: 800px;
	 margin: 0 auto;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 6vw, 3rem);
  color: var(--primary-hsl);
  margin-bottom: var(--spacing-md);
  font-weight: 300;
}
.hero-text h2 {
  font-weight: 300;
  margin-bottom: var(--spacing-md);
}

#inner .hero-text h1{
	margin-bottom: var(--spacing-sm);
}
#inner .hero-text h2{
	font-weight: 600;
}


.hero-marquee {
  column-gap: 2rem;
  row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: grid;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg) auto;
}
.hero-marquee .rating {
  object-fit: contain;
  width: 10rem;
  height: 10rem;
  margin: 0 auto;
  
  border-radius: 100%;
  padding: 0.5rem;
 
  transition: transform 0.5s ease;
	/* box-shadow: var(--shadow-sm);
	background: #fff;
  background-color: rgba(255, 255, 255, 0.7);*/
}
.hero-marquee .rating:hover {
  transform: scale(1.05);
  /*box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;*/
}
/* .hero-picture {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100vh;

  background-image: linear-gradient(180deg, #f8f4ef00 67%, var(--white)),
    linear-gradient(to bottom, #f8f4ef80 0%, #f8f4e2 100%),
    url("./assets/img/symb-banner.webp");

  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  background-blend-mode: overlay;

  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
*/
.hero-img_overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;

  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

/* .hero-picture {
  z-index: 1;
  background-image: linear-gradient(
      180deg,
      #f8f4ef00 67%,
      var(--cream-light-hsl)
    ),
    linear-gradient(to bottom, #f8f4ef80, #f8f4ef80),
    url(./assets/img/symb-banner.webp);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  width: 100%;
  height: 100vh;
  display: flex;
  position: absolute;
  inset: 0;
} */

.hero-picture {
  z-index: 1;
  background-image: linear-gradient(180deg, #f8f4ef00 67%, #f8f4ef),
    linear-gradient(to bottom, #f8f4ef80, #f8f4ef80),
    url(./assets/img/symb-banner.webp);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.hero-text p,
.hero-subtitle {
  font-size: 1.25rem;
  color: var(--black-hsl);
  margin-bottom: var(--spacing-md);
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  padding-top: var(--spacing-md);
  border-top: 2px solid #ddd;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-hsl);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-hsl);
  margin-top: var(--spacing-xs);
}

.hero-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.inner-picture {
  z-index: 1;
  background-image: linear-gradient(180deg, #f8f4ef00 67%, #f8f4ef),
    linear-gradient(to bottom, #f8f4ef80, #f8f4ef80),
    url(./assets/img/symb-banner.webp);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-position: 0 0, 0 0, 50%;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, cover;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.inner-picture-details {
  background-position: top center, top center, 50% 20%;
}

#move-to-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  background-color: #f59120;
  color: #fff;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
}

#move-to-top span {
  display: block;
  width: 24px;
  height: 24px;
}

#move-to-top svg {
  transform: rotate(180deg);
}

#move-to-top:hover {
  background-color: #6d3a00;
}

/* ===================================
   About Section
   =================================== */
.about {
  padding: var(--spacing-xl) 0;
	padding-top: 1rem;
}
.innerpagesection{
	padding-top: 1rem;
}
.about .about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  margin-bottom: var(--spacing-xl);
}
.about .about-content:last-child {
  margin-bottom: 0;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-text h3 {
  font-size: clamp(2rem, 4vw, 2.2rem);
  color: var(--primary-hsl);
  margin-bottom: var(--spacing-md);
  font-weight: 600;
}

.about-text h2 {
  color: var(--accent-hsl);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
}

.about-text > p {
  font-size: 1rem;
  color: var(--black-hsl);
  margin-bottom: var(--spacing-md);
  line-height: 1.5;
}

.about-features {
  margin-bottom: var(--spacing-md);
}

.about-features li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) 0;
  font-size: 1rem;
  color: var(--black-hsl);
}

.about-features .icon {
  width: 24px;
  height: 24px;
  color: var(--primary-hsl);
  flex-shrink: 0;
}

/* ===================================
   Services Section
   =================================== */
.services {
  padding: var(--spacing-xl) 0;
  background-color: var(--white-hsl);
}

.services-grid {
  display: grid;
  grid-template-columns: 70% 30%;
}
.services-grid .services-left {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 0;
  position: relative;
}
.services-grid .services-right img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.services-grid .services-left .feature-card:nth-child(1) {
  border-top: none;
  border-left: none;
}
.services-grid .services-left .feature-card:nth-child(2) {
  border-top: none;
  border-right: none;
}
.services-grid .services-left .feature-card:nth-child(3) {
  border-bottom: none;
  border-left: none;
}
.services-grid .services-left .feature-card:nth-child(4) {
  border-bottom: none;
  border-right: none;
}

.services-grid .services-left .feature-card:hover {
  box-shadow: unset;
  transform: none;
}

/* Add white rounded "middle" box overlay */
.services-grid .services-left::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; /* adjust for your design */
  height: 60px;
  background: white;
  border-radius: 50%;
  z-index: 1;
}

/* ===================================
   Feature Card
   =================================== */
.feature-card {
  background-color: var(--white-hsl);
  border: 1px solid var(--gray-light-hsl);
  border-radius: 16px;
  padding: var(--spacing-md);
  transition: var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: hsl(var(--green) / 0.2);
  margin-bottom: var(--spacing-sm);
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--primary-hsl);
  margin-bottom: var(--spacing-sm);
}

.feature-card p {
  color: var(--gray-hsl);
  line-height: 1.4;
}

.feature-card-dark {
  background-color: var(--primary-hsl);
  border-color: var(--primary-hsl);
}

.feature-card-dark .feature-number {
  color: hsl(var(--white) / 0.3);
}

.feature-card-dark h3 {
  color: var(--white-hsl);
}

.feature-card-dark p {
  color: hsl(var(--white) / 0.8);
}

.feature-service-title, .feature-iconholder {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.feature-iconholder .feature-number {
  line-height: 1;
  font-size: 2.5rem;
}
.feature-service-title .feature-icon img , .feature-iconholder .feature-icon img {
  width: 36px;
  height: 36px;
}

/* ===================================
   Process Section
   =================================== */
.blog-section {
  padding: var(--spacing-xl) 0;
 /* background: linear-gradient(
    135deg,
    var(--primary-hsl) 0%,
    var(--primary-dark-hsl) 100%
  );*/
	background: #fff;
}

.blog-section .section-header-center h2,
.blog-section .section-header-center p {
  /*color: var(--white-hsl);*/
}

.blog-section .section-header-center p {
  opacity: 0.9;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.blog-section-listing .blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.blog-card .blog-media {
  width: 100%;
}
.blog-card .blog-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--spacing-sm);
}
.blog-card .blog-content {
  padding: var(--spacing-md) 0 0 0;
}
.blog-card .blog-content .blog-title {
  font-size: 1.25rem;
  color: var(--white-hsl);
  margin-bottom: var(--spacing-sm);
  font-weight: 400;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;  
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
	line-height: 1.5;
}
.blog-card .blog-content .blog-title:hover {
  color: var(--gold-hsl);
}
.post-details-meta {
  display: flex;
  gap: var(--spacing-sm);
  font-size: 0.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width: fit-content;
  padding: 0.5rem 1rem;
  background-color: hsl(var(--white) / 0.5);
  border-radius: 9999px;
  box-shadow: var(--shadow-sm);
}
.post-details-meta svg {
  width: 16px;
  height: 16px;
  color: var(--primary-hsl);
}
.post-details-meta div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.blog-post-detail {
  margin: 0 auto 2rem auto;
  max-width: 900px;
}
.blog-post-detail .post-thumbnail {
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 2px 20px #0003;
  margin-bottom: 2rem;
}
.blog-post-detail .post-details-content p,
.blog-post-detail .post-details-content ol,
.blog-post-detail .post-details-content ul {
  font-size: 1.125rem;
  margin-bottom: var(--spacing-md);
}
body.single-post #inner {
  display: none;
}
/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
  padding: var(--spacing-xl) 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-md);
}

/* Swiper slides equal height - override grid when Swiper is active */
.testimonials-grid.swiper {
  display: block;
}

.testimonials-grid.swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.testimonials-grid.swiper .swiper-slide {
  display: flex;
  height: auto;
  align-items: stretch;
}

.testimonial-card {
  background-color: var(--white-hsl);
  border: 1px solid var(--gray-light-hsl);
  border-radius: 16px;
  padding: var(--spacing-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.rating {
  display: flex;
  gap: 4px;
  margin-bottom: var(--spacing-sm);
}
.testimonial-card .rating{display: none}
.star {
  width: 20px;
  height: 20px;
  color: var(--gold-hsl);
}

.star-filled {
  fill: currentColor;
}

.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--black-hsl);
  margin-bottom: var(--spacing-md);
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--gray-light-hsl);
  margin-top: auto;
}

.testimonial-author strong {
  display: block;
  font-size: 1rem;
  color: var(--primary-hsl);
  margin-bottom: 4px;
}

.testimonial-author span {
  font-size: 0.875rem;
  color: var(--gray-hsl);
}
/*
.testimonial-card-dark {
  background-color: var(--primary-hsl);
  border-color: var(--primary-hsl);
}

.testimonial-card-dark blockquote {
  color: var(--white-hsl);
}

.testimonial-card-dark .testimonial-author {
  border-top-color: hsl(var(--white) / 0.2);
}

.testimonial-card-dark .testimonial-author strong {
  color: var(--white-hsl);
}

.testimonial-card-dark .testimonial-author span {
  color: hsl(var(--white) / 0.7);
}*/

/* ===================================
   CTA Section
   =================================== */
.cta {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(
    135deg,
    var(--primary-hsl) 0%,
    var(--primary-dark-hsl) 100%
  );
}

.cta-content {
  text-align: center;
}

.cta-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white-hsl);
  margin-bottom: var(--spacing-sm);
}

.cta-text p {
  font-size: 1.25rem;
  color: hsl(var(--white) / 0.9);
  margin-bottom: var(--spacing-md);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
  padding: var(--spacing-xl) 0;
  background-color: var(--white-hsl);
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--spacing-lg);
}

.contact-form {
  background-color: var(--cream-hsl);
  padding: var(--spacing-md);
  border-radius: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm);
}

.form-group {
  margin-bottom: var(--spacing-sm);
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--primary-hsl);
  margin-bottom: var(--spacing-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 1px solid var(--gray-light-hsl);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  background-color: var(--white-hsl);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-hsl);
  box-shadow: 0 0 0 3px hsl(var(--green) / 0.1);
}

.form-group textarea {
  resize: vertical;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact-item {
  display: flex;
  gap: var(--spacing-sm);
  padding: var(--spacing-md);
  background-color: var(--cream-hsl);
  border-radius: 12px;
}

.contact-item .icon {
  width: 24px;
  height: 24px;
  color: var(--primary-hsl);
  flex-shrink: 0;
}

.contact-item h3 {
  font-size: 1.125rem;
  color: var(--primary-hsl);
  margin-bottom: 4px;
}

.contact-item p {
  color: var(--gray-hsl);
  font-size: 0.875rem;
}

/* ===================================
   OUR COMMUNITIES Section
   =================================== */
.communities-section .communities-padding {
  margin-left: auto;
  margin-right: auto;
  padding: 5em 1%;
  display: block;
}

.communities-section .communities-padding .communities-grid {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  background: linear-gradient(
    135deg,
    var(--primary-hsl) 0%,
    var(--primary-dark-hsl) 100%
  );
  color: var(--white);
  border-radius: 2.5rem;
  flex-flow: column;
  padding: 2.5rem;
  min-height: 590px;
}

.communities-section .communities-slider-holder {
  width: 100%;
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  overflow: visible;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.communities-section .section-header {
  margin-bottom: var(--spacing-md);
}
.communities-section .section-header p,
.communities-section .section-header h2 {
  color: var(--white-hsl);
}

.communities-section .slider-component .swiper-slide img {
  width: auto;
  margin: 0 auto;
}

.communities-section .slide-holder {
  position: relative;
  padding-bottom: 3rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.communities-section .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: unset;
  box-shadow: unset;
  transition: transform 0.3s ease;
  width: 100%;
  overflow: hidden;
  max-width: 350px;
  width: 100%;
  background: #fff;
  border-radius: var(--spacing-sm);
}
.communities-section .swiper-slide .slide-holder {
  padding: 8px;
}
.communities-section .swiper-slide .slide-holder img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--spacing-sm);
}
.communities-section .slide-media {
  position: relative;
}
.communities-section .slide-content {
  position: relative;
  padding: 1rem;
}
.communities-section .slide-content .slide-title {
  font-size: 1.25rem;
  line-height: 1.5;
}
.communities-section .swiper-slide .slide-number {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: var(--primary-hsl);
  color: var(--white-hsl);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 1.5rem;
  font-size: 40px;
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  min-width: 45px;
  min-height: 44px;
  border-radius: 500px;
  background-color: var(--primary-hsl);
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px !important;
  color: var(--white-hsl);
  max-width: 20px;
}

.testimonials .navigation-holder,
.communities-section .navigation-holder {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 2rem auto 0rem auto;
  min-height: 45px;
}
.testimonials .navigation-holder .container,
.communities-section .navigation-holder .container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.testimonials .navigation-holder .container .navigation-wrapper,
.communities-section .navigation-holder .container .navigation-wrapper {
  position: absolute;
  top: 0;
  right: 4rem;
  width: 120px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===================================
   Footer
   =================================== */
.footer {
  padding: var(--spacing-lg) 0 var(--spacing-md);
  background-color: var(--primary-dark-hsl);
  color: var(--white-hsl);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.footer-section h3,
.footer-section h4 {
  color: var(--white-hsl);
  margin-bottom: var(--spacing-sm);
}

.footer-section p,
.footer-section li {
  color: hsl(var(--white) / 0.8);
  margin-bottom: var(--spacing-xs);
  line-height: 1.4;
  font-size: 0.875rem;
}
.footer-section p {
  line-height: 1.2;
}

.footer-section a:hover {
  color: var(--gold-hsl);
}
.footer-cta-wrapper {
  margin-top: var(--spacing-sm);
}
.footer-cta-wrapper .btn {
  padding: 0 1.5rem;
}
.footer-bottom {
  padding-top: var(--spacing-md);
  border-top: 1px solid hsl(var(--white) / 0.1);
  text-align: center;
}

.footer-bottom p {
  color: hsl(var(--white) / 0.6);
}

.copyright-link {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  gap: 1rem;
}
.social-links {
  margin-top: var(--spacing-sm);
  border-top: 1px solid hsl(var(--white) / 0.1);
  padding-top: var(--spacing-sm);
}
.social-links ul {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-start;
}
.social-links ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: hsl(var(--white) / 0.1);
  color: var(--white-hsl);
  transition: var(--transition);
}
.social-links ul li a:hover {
  background-color: var(--gold-hsl);
  color: var(--white-hsl);
}
.social-links ul li svg {
  max-width: 16px;
}
.slide-menu-social-links {
  margin-top: auto;
  background: var(--primary-dark-hsl);
  padding: var(--spacing-sm) 0;
}
.slide-menu-social-links .social-links {
  border-top: 0px solid hsl(var(--white) / 0.1);
  margin: 0;
  padding: 0;
}
.slide-menu-social-links ul {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  border: none;
}
.slide-menu-social-links ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: hsl(var(--white) / 0.1);
  color: var(--white-hsl);
  transition: var(--transition);
}
.slide-menu-social-links ul li a:hover {
  background-color: var(--gold-hsl);
  color: var(--white-hsl);
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--white-hsl);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(1fr));
  gap: var(--spacing-md);
}

.faq-card {
  background-color: var(--white-hsl);
  border: 1px solid var(--gray-light-hsl);
  border-radius: 16px;
  padding: 0;
  transition: var(--transition);
  overflow: hidden;
}

.faq-card:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: var(--spacing-sm);
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--cream-hsl);
}

.faq-question h3 {
  font-size: 1.25rem;
  color: var(--primary-hsl);
  margin: 0;
  font-weight: 400;
  flex: 1;
  transition: var(--transition);
}

.faq-question:hover h3 {
  color: var(--accent-hsl);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  color: var(--primary-hsl);
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-question[aria-expanded="true"] .faq-icon svg {
  color: var(--accent-hsl);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 var(--spacing-md);
}

.faq-question[aria-expanded="true"] + .faq-answer {
  max-height: 500px !important;
  padding: var(--spacing-sm) var(--spacing-md) !important;
}

.faq-answer p {
  color: var(--gray-hsl);
  line-height: 1.8;
  margin: 0;
}

.contactsholder {
  margin-bottom: 4rem;
}

.contactsholder .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.contactsholder .grid .contact-box {
  background-color: var(--white-hsl);
  border: 1px solid var(--gray-light-hsl);
  border-radius: 16px;
  padding: var(--spacing-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
}

.contactsholder .grid .contact-box .contact-contentholder a {
  display: block;
  text-align: center;
}

.gridtwoholder {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--spacing-md);
  margin: 4rem 0;
}
.gridtwoholder .codedropz-upload-inner {
  gap: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.gridtwoholder .codedropz-btn-wrap {
  padding: 0rem 1rem;
  background: var(--gray-light-hsl);
  color: var(--black-hsl);
  cursor: pointer;
  font-weight: 600;
  position: absolute;
  right: 0;
  height: 100%;
  top: 0;
  display: flex;
  align-items: center;
}
.gridtwoholder label {
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}
.gridtwoholder .codedropz-upload-container {
  padding: 5px 20px;
}
.gridtwoholder .dnd-upload-counter {
  position: relative;
  width: 100%;
  text-align: center;
  background: #c5c5c5;
  padding: 4px 8px;
  color: #000;
  border-radius: 0 5px 5px 0;
  bottom: 0;
  left: 0;
}
.gridtwoholder .codedropz-upload-handler {
  border: 1px solid var(--form-border);
  overflow: hidden;
  background: var(--white-hsl);
  margin-bottom: 0;
}

.gridtwoholder .btnholder {
  align-self: end;
  grid-column: 1 / -1;
}

.frmbottom {
  margin-bottom: 4rem;
}

@media screen and (min-width: 900px) {
  .gridtwoholder .btnholder .grid {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }
  .gridtwoholder .btnholder .grid input {
    max-width: 100%;
  }
  .gridtwoholder .btnholder input {
    max-width: 150px;
  }
}
.gridtwoholder .btnholder p {
  margin: 0;
}
.gridtwoholder .btnholder .btn-primary {
  width: 100%;
}
.gridtwoholder .btnholder .btn-primary:disabled {
  color: #000;
}
.gridtwoholder .btnholder .wpcf7-spinner {
  position: absolute;
}

/* Make form elements inherit font & basic line-height */
form,
input,
button,
select,
textarea {
  font-family: var(--form-font-family);
  font-size: var(--form-font-size);
  line-height: var(--form-line-height);
  color: var(--form-color);
}

/* Form layout helpers */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--form-gap);
  margin-bottom: 0.75rem;
}
.form-col {
  flex: 1 1 0;
  min-width: 0;
}

/* Grouping */
.form-group {
  margin-bottom: 1rem;
}

/* Label */
.form-label {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: var(--form-label-color);
  font-size: 0.95rem;
}

/* Optional/required hint */
.form-label .optional {
  font-weight: 400;
  color: var(--form-help-color);
  font-size: 0.85rem;
  margin-left: 0.4rem;
}
.form-required {
  color: var(--form-error-color);
  margin-left: 0.25rem;
  font-weight: 700;
}

/* Inputs / Selects / Textarea */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
select,
textarea,
input[type="date"],
input[type="time"],
input[type="datetime-local"] {
  width: 100%;
  padding: var(--form-padding);
  border: 1px solid var(--form-border);
  border-radius: var(--form-border-radius);
  background: var(--form-bg);
  color: var(--form-color);
  transition: box-shadow 0.15s ease, border-color 0.12s ease;
  -webkit-appearance: none;
  appearance: none;
}

/* Textarea sizing */
textarea {
  min-height: 120px;
  resize: vertical;
}

/* Focus state (visible and accessible) */
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(59, 130, 246, 0.8);
  box-shadow: 0 0 0 4px var(--form-focus-ring);
}

/* Placeholder color */
::placeholder {
  color: #9ca3af;
  opacity: 1;
}

/* Disabled */
input:disabled,
textarea:disabled,
select:disabled,
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: #f9fafb;
}

/* Small compact inputs */
.input-sm {
  padding: 0.35rem 0.5rem;
  font-size: 0.9rem;
}

/* Input types: radio / checkbox (basic custom look) */
input[type="checkbox"],
input[type="radio"] {
  width: auto;
  height: auto;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* Better spacing for label with checkbox/radio */
.control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Inline helper text and validation text */
.form-help {
  display: block;
  font-size: 0.875rem;
  color: var(--form-help-color);
  margin-top: 0.35rem;
}
.form-error {
  display: block;
  font-size: 0.875rem;
  color: var(--form-error-color);
  margin-top: 0.35rem;
}
.form-success {
  display: block;
  font-size: 0.875rem;
  color: var(--form-success-color);
  margin-top: 0.35rem;
}

/* Invalid state (input-level) */
.is-invalid {
  border-color: var(--form-error-color) !important;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08) !important;
}
.is-valid {
  border-color: var(--form-success-color) !important;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.06) !important;
}

fieldset {
  border: 1px solid var(--form-border);
  padding: 0.8rem;
  border-radius: var(--form-border-radius);
}
legend {
  font-weight: 700;
  padding: 0 0.35rem;
}

.file-input {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.file-input input[type="file"] {
  display: none;
}
.file-input .file-btn {
  padding: 0.45rem 0.7rem;
  border-radius: var(--form-border-radius);
  background: #f3f4f6;
  border: 1px solid var(--form-border);
  cursor: pointer;
  font-size: 0.95rem;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 640px) {
  .form-row {
    flex-direction: column;
  }
}

.form-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-inline {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}

.three-grid-section .blog-content h4 {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white-hsl);
  margin-bottom: var(--spacing-sm);
}

/* Pagination Wrapper */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 40px 0;
  grid-column: 1 / -1;
  width: 100%;
}

/* Page Numbers */
.pagination .page-numbers {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  min-width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid #ddd;
  color: #333;
  background: #fff;
  transition: all 0.25s ease;
}

/* Hover */
.pagination .page-numbers:hover {
  border-color: #0073aa;
  color: #0073aa;
  transform: translateY(-2px);
}

/* Current Page */
.pagination .page-numbers.current {
  background: #0073aa;
  color: #fff;
  border-color: #0073aa;
  font-weight: 600;
  pointer-events: none;
}

/* Dots (…) */
.pagination .page-numbers.dots {
  border: none;
  background: transparent;
  color: #888;
}

/* Next/Prev Arrows */
.pagination .prev,
.pagination .next {
  padding: 10px 14px;
}

.error-404 .container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  margin-bottom: 4rem;
}

.error-container {
  text-align: center;
}

.error-container h1 {
  font-size: 10rem;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.error-container h1 span {
  display: inline-block;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

/* Staggered fade-in for each digit */
#error1 {
  animation-delay: 0s;
}
#error2 {
  animation-delay: 0.2s;
}
#error3 {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.error-container h3 {
  font-size: 2rem;
  margin: 20px 0;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.6s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .error-container h1 {
    font-size: 6rem;
  }
  .error-container h3 {
    font-size: 1.5rem;
  }
}

.blog-section-listing .blog-grid .no-posts-message {
  grid-column: 1 / -1; /* spans all 3 columns */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 0; /* optional */
}

.social-share-list {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  margin: 1rem auto;
  max-width: fit-content;
  padding: 0.5rem 1rem;
  background-color: hsl(var(--white) / 1);
  border-radius: 9999px;
  box-shadow: var(--shadow-sm);
  min-width: 300px;
}
.social-share-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--cream-hsl);
  color: var(--black-hsl);
  transition: var(--transition);
}
.social-share-list a:hover {
  background-color: var(--gold-hsl);
}
.social-share-list a svg {
  max-width: 16px;
}
.contact-form-section {
  background: var(--white-hsl);
  padding: var(--spacing-lg) 0;
}
.contact-form-section .gridtwoholder {
  grid-template-columns: 1fr 1fr;
}
.contact-form-section .gridtwoholder .btnholder {
  align-self: center;
}

.about-text ul {
  margin-bottom: var(--spacing-md);
  margin-left: 1rem;
}
.about-text ul li {
  margin-bottom: var(--spacing-xs);
  color: var(--gray-dark-hsl);
  line-height: 1.6;
  padding-left: 0.5rem;
}
.about-text ul li::marker {
  color: var(--primary-hsl);
  content: "•";
  width: 1rem;
  height: 1rem;
  display: inline-block;
}
.blog-grid-withoverlay {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: 4rem;
}
.blog-grid-withoverlay .card_wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  min-width: 100%;
}
.blog-grid-withoverlay .card_wrapper .card_info {
  display: flex;
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
  color: var(--white-hsl);
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
}

.blog-grid-withoverlay .card_wrapper .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.blog-grid-withoverlay .card_wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.blog-grid-withoverlay .card_wrapper:hover::after {
  opacity: 1;
}

.three_grid_box {
  display: grid;
  grid-template-columns: 1fr 1fr; /* left lists | right grid item */
}
.three_grid_box .blog-card .blog-content {
  padding: 0;
}
.three_grid_box .blog-card:nth-child(1),
.three_grid_box .blog-card:nth-child(2),
.three_grid_box .blog-card:nth-child(4) {
  grid-column: 1;
  padding: 1rem;
}

.three_grid_box .blog-card:nth-child(1) p,
.three_grid_box .blog-card:nth-child(2) p,
.three_grid_box .blog-card:nth-child(4) p {
  line-height: 1.3;
}

.three_grid_box .blog-card:nth-child(3) {
  grid-column: 2;
  grid-row: 1 / span 3;
}
.three-grid-section .section-header {
  flex-direction: column;
}

.three-grid-section .section-header h4,
.three-grid-section .section-header p,
.three-grid-section .section-header h2 {
  color: var(--white-hsl);
  margin-bottom: 0;
}

.gallery-images {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  min-width: 100%;
}

.gallery-images img {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  min-width: 100%;
}
.communities-gallery {
  background: var(--white-hsl);
  padding: var(--spacing-lg) 0;
}

.communities-gallery .blog-grid {
  grid-template-columns: repeat(3, 1fr);
}

.allpages #page h2,
.allpages #page p {
  margin-bottom: 1.5rem;
}
/* ===================================
   Responsive Design
   =================================== */

/* Desktop width (40%) */
@media (min-width: 768px) {
  .side-menu {
    width: 23%;
    max-width: 23%;
  }
	.side-menu-footer .btn.btn-withicon{display: none}
}
@media (max-width: 920px) {
  .navigation .container {
    margin: 0 var(--spacing-sm);
  }
  .logo img {
    max-height: 30px;
  }
  .nav-content {
    padding: var(--spacing-xs) 0;
  }
  .navigation .rightholder .btn {
    display: none;
  }
}

@media (max-width: 1024px) {
  .hero-content,
  .about-content {
    grid-template-columns: 1fr;
  }

  .hero-image,
  .about-image {
    order: -1;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .testimonials .navigation-holder .container .navigation-wrapper,
  .communities-section .navigation-holder .container .navigation-wrapper {
    position: relative;
    right: inherit;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
  }

  .nav-links.active {
    display: flex;
  }

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

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

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

  .hero {
    padding: calc(80px + var(--spacing-md)) 0 var(--spacing-md);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    margin-bottom: 0;
  }

  .btn {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section-header,
  .services-grid .services-left,
  .about .about-content,
  .services-grid,
  .process-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .section-header {
    flex-direction: column;
  }
  .services-right {
    display: none;
  }
  .hero-marquee {
    column-gap: 0.5rem;
    min-height: 84px;
    overflow-y: auto;
    flex-wrap: nowrap;
    display: flex;
  }

  .hero-marquee .rating {
    width: 6rem;
    height: 4.4rem;
  }
  .services .feature-card {
    margin-bottom: var(--spacing-md);
  }
  .section-header-desktop-button .section-header-right {
    display: none;
  }
  .communities-section .communities-padding .communities-grid {
    padding: 2.5rem 1rem;
    min-height: 800px;
  }
  .communities-section .swiper-slide .slide-holder {
    padding: 1rem;
  }
  /* .communities-section .communities-slider-holder {
    position: relative;
	  overflow: hidden;
	  display: block;
  } */
  .communities-section .section-header {
    text-align: center;
  }
  .communities-section .swiper-slide {
    max-width: 100%;
  }

  .services-grid .services-left .feature-card:nth-child(1) {
    border-top: 1px solid var(--gray-light-hsl);
    border-left: 1px solid var(--gray-light-hsl);
  }
  .services-grid .services-left .feature-card:nth-child(2) {
    border-top: 1px solid var(--gray-light-hsl);
    border-right: 1px solid var(--gray-light-hsl);
  }
  .services-grid .services-left .feature-card:nth-child(3) {
    border-bottom: 1px solid var(--gray-light-hsl);
    border-left: 1px solid var(--gray-light-hsl);
  }
  .services-grid .services-left .feature-card:nth-child(4) {
    border-bottom: 1px solid var(--gray-light-hsl);
    border-right: 1px solid var(--gray-light-hsl);
  }

  .services-grid .services-left .feature-card:hover {
    box-shadow: unset;
    transform: none;
  }
  .gridtwoholder {
    grid-template-columns: 1fr !important;
  }
  .gridtwoholder .btnholder .btn-primary {
    width: auto;
  }
  .blog-section-listing .blog-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .three_grid_box {
    grid-template-columns: 1fr;
  }
  .three_grid_box .blog-card:nth-child(3) {
    grid-column: 1;
    grid-row: 4;
  }
	.communities-gallery .blog-grid {
    grid-template-columns: repeat(1, 1fr);
}
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-image img,
  .about-image img {
    height: 300px;
  }
}

.footer-section .contlist li a{ display: flex;}
.footer-section .contlist li a svg {
    display: flex;
    max-width: 16px;
    margin-right: 0.5rem;
}
.three-grid-section.lightbg{
	padding-top:0;
}
.three-grid-section.lightbg .section-header h2{
    color: var(--primary-hsl);
}
.three-grid-section.lightbg .section-header h4{
    color: var(--black-hsl);
}
.three-grid-section.lightbg .section-header p{
    color: var(--gray-hsl);
}

.services-content{
	padding-bottom:2rem;
}

.footer-section .custom-logo{
	max-width: 190px;
    margin-bottom: 1rem;
}
