/* bootstrap strat */

@import url("https://fonts.googleapis.com/css2?family=Alice&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

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

a {
  color: #fff;
}

p {
  font-family: var(--font-reg);
  font-size: clamp(15px, 3vw, 20px);
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
  /* all: unset; */
  font-weight: unset;
  line-height: inherit;
}

button {
  outline: none;
  background: none;
  background-color: none;
  border: none;
  color: inherit;
  font-size: inherit;
  transition: all 0.3s ease-in-out;
}

/* 
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border: 2px solid #cb188b;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.2s ease;
  opacity: 1;
}

.custom-cursor.dissolve {
  opacity: 0;
  transform: scale(0.8) translate(-50%, -50%);
}

@media screen and (max-width:992px){
	.custom-cursor {
		display:none;
	}
} */

input:hover,
input:focus,
textarea:hover,
textarea:focus,
input,
textarea {
  outline: none;
  /* border: none; */
}

dl,
ol,
ul {
  margin-bottom: 0;
}

ol,
ul {
  padding-left: 0;
}

p {
  margin-bottom: 0;
}

a:hover {
  text-decoration: none !important;
}

a {
  text-decoration: none;
}

.upper {
  text-transform: uppercase;
}

.mt-50px {
  margin-top: 50px;
}

.mx-80px {
  margin-top: 80px;
  margin-bottom: 80px;
}

.mx-20px {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mb-50px {
  margin-bottom: 50px;
}

.mb-80px {
  margin-bottom: 80px;
}

.mb-20px {
  margin-bottom: 20px;
}

.px-15px {
  padding-left: 15px;
  padding-right: 15px;
}

a:focus {
  outline: none !important;
}

.w-80 {
  width: 80%;
}

.w-60 {
  width: 60%;
}

.align-center {
  align-items: center;
}

.img-wp img {
  width: 100%;
}

.img-wp {
  width: 100%;
}

.mt-80px {
  margin-top: 80px;
}

.mt-30px {
  margin-top: 30px;
}

.mt-60px {
  margin-top: 60px;
}

.mb-30px {
  margin-bottom: 30px;
}

.pb-10px {
  padding-bottom: 10px;
}

.pb-20px {
  padding-bottom: 20px;
}

.px-150 {
  padding: 0 150px;
}

img {
  height: auto;
}

/* bootstrap end */

/* fonts */

:root {
  --font-p: "Montserrat", sans-serif;
  --font-s: "Poppins", sans-serif;
  --font-h: "Alice", serif;
  --p-color: #fff;
  --gray: #555555;
  --sec-color: #8d46d1;
  --background: #15011f;
}


/* For WebKit browsers */
/* WebKit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #2b0f3a;
  /* lighter than --background */
}

::-webkit-scrollbar-thumb {
  background-color: var(--sec-color);
  border-radius: 10px;
  border: 2px solid #2b0f3a;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #a460de;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--sec-color) #2b0f3a;
  /* thumb | track */
}



a {
  transition: all 0.3s ease-in-out;
}

a:hover {
  cursor: pointer;
  color: var(--sec-color);
}

body {
  background-color: var(--background) !important;
}

html,
body {
  background-color: var(--background);
  max-width: 100%;
  overflow-x: hidden;
  margin-bottom: 0 !important;
  padding: 0 !important;
}

.site-header,
#masthead2 {
  background-color: transparent;
  color: #fff;
  transition: all 0.4s ease;
  backdrop-filter: none;
}

.site-header.scrolled::before,
#masthead2.scrolled::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(21, 1, 31, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: -1;
  pointer-events: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.grecaptcha-badge {
  display: none !important;
}

body.page-id-11 .grecaptcha-badge {
  display: block !important;
}


.container-custom-gap {
  padding-left: clamp(1rem, 7vw, 160px);
  padding-right: clamp(1rem, 7vw, 160px);
  width: 100%;
  max-width: 100%;
}

.nav a {
  font-family: var(--font-p);
  font-weight: 600;
  color: var(--p-color) !important;
  font-size: clamp(15px, 2vw, 18px);
  transition: color 0.3s ease-in-out;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
}

.nav a:hover {
  color: var(--sec-color) !important;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: var(--sec-color);
  transition: width 0.3s ease-in-out;
}

.nav a:hover::after {
  width: 100%;
}

.nav .current-menu-item>a,
.nav .current_page_item>a {
  color: var(--sec-color) !important;
}

.nav .current-menu-item>a::after,
.nav .current_page_item>a::after {
  width: 100%;
}

.menu-gap {
  gap: 1rem;
}

@media (min-width: 1250px) {
  .menu-gap {
    gap: 1.5rem;
  }
}

@media (min-width: 1650px) {
  .menu-gap {
    gap: 2rem;
  }
}

@media (min-width: 1900px) {
  .menu-gap {
    gap: 3rem;
  }
}

.custom-logo {
  height: auto;
  max-width: 200px;
  transition: all 0.3s ease-in-out;
}

.custom-logo {
  transition: all 0.3s ease-in-out;
}

.site-header .custom-logo {
  width: 200px;
}

.site-header.scrolled .custom-logo {
  width: 140px;
}

#masthead2 .custom-logo {
  width: 150px;
  padding: 20px 0;
}

#masthead2.scrolled .custom-logo {
  width: 100px;
  padding: 10px 0;
}

.site-header .custom-logo:hover,
#masthead2 .custom-logo:hover {
  filter: drop-shadow(0 0 2px #8d46d1) drop-shadow(0 0 2px #8d46d1);
}


.button1 {
  position: relative;
  overflow: hidden;
  color: var(--p-color);
  border: 2px solid var(--p-color);
  padding: 10px 20px;
  font-family: var(--font-p);
  font-weight: 600;
  font-size: clamp(15px, 3vw, 18px);
  border-radius: 50rem;
  background-color: transparent;
  z-index: 1;
  transition: color 0.4s ease;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 250px;
  min-height: 63px;
  text-transform: uppercase;
}

.button1::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  aspect-ratio: 1 / 1;
  background-color: var(--p-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease;
  z-index: -1;
}

.button1:hover {
  color: var(--background);
}

.button1:hover::before {
  width: 500px;
}

.button2 {
  position: relative !important;
  overflow: hidden !important;
  color: var(--background) !important;
  border: 2px solid var(--p-color) !important;
  padding: 10px 20px !important;
  font-family: var(--font-p) !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  font-size: clamp(15px, 3vw, 18px) !important;
  border-radius: 50rem !important;
  background-color: var(--p-color) !important;
  z-index: 1 !important;
  transition: color 0.4s ease, background-color 0.4s ease !important;
  cursor: pointer !important;
  text-transform: uppercase !important;
  min-width: 250px !important;
  min-height: 63px !important;
}

.button2::before {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 0 !important;
  aspect-ratio: 1 / 1 !important;
  background-color: var(--background) !important;
  border-radius: 50% !important;
  transform: translate(-50%, -50%) !important;
  transition: width 0.6s ease !important;
  z-index: -1 !important;
}

.button2:hover {
  color: var(--p-color) !important;
  background-color: transparent !important;
}

.button2:hover::before {
  width: 500px !important;
}

.phone_number {
  font-family: var(--font-p) !important;
  font-weight: 600 !important;
  font-size: clamp(15px, 3vw, 22px) !important;
  color: var(--p-color);
}

/* Home design */

.chakra-banner {
  background-size: cover;
  background-position: center;
  padding: 10px 20px;
  position: relative;
  color: white;
  text-align: center;
}

.chakra-heading {
  font-size: clamp(70px, 10vw, 230px);
  font-weight: 600;
  font-family: var(--font-h);
  margin: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: clamp(0rem, 10vw, 13rem);
  white-space: nowrap;
}

.chakra-subheading {
  font-size: clamp(40px, 10vw, 160px);
  font-weight: 400;
  font-family: var(--font-h);
  margin-bottom: 2rem;
  color: white;
  line-height: clamp(5rem, 10vw, 13rem);
  display: inline-block;
  transform-origin: top center;
}

.chakra-icons {
  margin: 2rem 0;
}

.chakra-icon {
  height: 162px;
  width: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
  animation: chakra-spin 60s linear infinite;
  will-change: transform;
}

@keyframes chakra-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.chakra-icon:hover {
  animation-play-state: paused;
  transform: scale(1.1);
  filter: drop-shadow(0 0 2px #8e46d191) drop-shadow(0 0 2px #8e46d170);
}


.chakra-desc {
  margin: 0;
  font-size: clamp(40px, 10vw, 120px);
  font-weight: 600;
  font-family: var(--font-s);
  text-transform: uppercase;
  letter-spacing: 0.9rem;
  color: transparent;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.chakra-letter,
.chakra-subletter {
  display: inline-block;
  transform-origin: top center;
  perspective: 600px;
  backface-visibility: hidden;
  will-change: transform;
}

.about-background {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

.about-heading {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: clamp(35px, 3vw, 70px);
  margin: 0;
}

.about-subheading {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(16px, 3vw, 24px);
  line-height: 2;
  text-align: center;
}

.about-description {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(13px, 3vw, 17px);
  line-height: 2;
}

/* Chakra section start */

[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}

.chakra-section {
  min-height: 1000px;
  position: relative;
  overflow: hidden;
}

.chakra-galaxy-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 562px;
  height: auto;
  max-width: 562px;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  z-index: 1;
  opacity: 1;
  overflow: visible;
}

.chakra-wrapper {
  position: relative;
  width: 87vw;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  z-index: 4;
  background-color: #261230;
  border-radius: 50%;
}

.chakra-center-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0.2;
}

.chakra-center-title {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  font-weight: 500;
  font-family: var(--font-h);
  font-size: clamp(28px, 4vw, 70px);
  line-height: 1.2;
  text-align: center;
  pointer-events: none;
}

.chakra-center-title strong {
  text-transform: uppercase;
  font-size: clamp(40px, 4vw, 100px);
}

.chakra-item {
  position: absolute;
  transform: translate(-50%, -50%);
  /* width: clamp(60px, 12vw, 100px); */
  width: 100px;
  height: 100px;
  text-align: center;
  z-index: 2;
}

.chakra-connector {
  position: absolute;
  height: 2px;
  background: white;
  transform-origin: left center;
  z-index: 2;
}

.web-design{
	color:var(--sec-color) !important;
	transition:all 0.3s ease-in-out;
}
.web-design:hover{
	color:#fff !important;
	transition:all 0.3s ease-in-out;
}

.connector-dot {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-51%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

.chakras-icon {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.chakras-icon img {
  max-width: 76%;
  height: auto;
}

.chakra-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) !important;
  white-space: nowrap;
  text-align: center;
  font-family: var(--font-p);
  font-weight: 600;
  font-size: clamp(14px, 3vw, 20px);
}

@media (max-width: 580px) {
  .chakra-wrapper {
    max-width: 130px !important;
  }

  .chakra-galaxy-bg {
    width: 150px !important;
    max-width: 90vw;
  }

  .chakra-item {
    width: 60px !important;
    height: 60px !important;
  }

  .chakras-icon img {
    max-width: 70%;
  }

  .chakra-label {
    font-size: 12px !important;
    max-width: 100px;
    white-space: wrap !important;
  }

  .chakra-center-title {
    font-size: clamp(20px, 5vw, 32px);
  }

  .chakra-center-title strong {
    font-size: clamp(26px, 6vw, 40px);
  }

  .connector-dot {
    width: 10px;
    height: 10px;
  }

  .chakra-section {
    padding-top: 130px !important;
  }
}

@media (max-width: 767px) {
  .chakra-wrapper {
    max-width: 240px;
  }

  .chakra-galaxy-bg {
    width: 270px;
    max-width: 90vw;
  }

  .chakra-item {
    width: 70px;
    height: 70px;
  }

  .chakras-icon img {
    max-width: 70%;
  }

  .chakra-label {
    font-size: 14px;
    max-width: 100px;
    white-space: normal;
  }

  .chakra-center-title {
    font-size: clamp(20px, 5vw, 32px);
  }

  .chakra-center-title strong {
    font-size: clamp(26px, 6vw, 40px);
  }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
  .chakra-wrapper {
    max-width: 305px;
  }

  .chakra-galaxy-bg {
    width: 350px;
    max-width: 85vw;
  }

  .chakra-item {
    width: 80px;
    height: 80px;
  }

  .chakras-icon img {
    max-width: 72%;
  }

  .chakra-label {
    font-size: 16px;
  }
}

.knowmore-wrapper {
  background-color: #15011f;
  background-size: cover;
  background-position: center;
}

.knowmore-title {
  font-family: var(--font-h);
  font-size: clamp(30px, 7vw, 70px);
  font-weight: 500;
}

.knowmore-highlight {
  font-family: var(--font-h);
  font-size: clamp(40px, 7vw, 120px);
  font-weight: 500;
  color: #cb5eff;
  display: inline-block;
}

.knowmore-desc {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(16px, 3vw, 24px);
  line-height: 1.6;
  max-width: 1600px;
}

.knowmore-button {
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.knowmore-button:hover {
  background-color: #c681e5;
  color: #fff;
  transform: scale(1.05);
}

.custom-banner-section {
  background-size: cover;
  background-position: center;
  padding: 50px 0;
  position: relative;
  text-align: center;
}

.custom-banner-section .banner-heading {
  font-family: var(--font-h);
  font-size: clamp(35px, 7vw, 90px);
  color: #fff;
}

.custom-banner-section .yoast-breadcrumbs {
  font-family: var(--font-reg);
  font-size: clamp(14px, 3vw, 18px);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.custom-banner-section .banner-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 20px;
  padding: 50px 0;
}

.custom-banner-section .banner-divider-line {
  flex-grow: 1;
  height: 2px;
  /* background: linear-gradient(to right, #301d39 0%, #1a0f20 100%); */
}

.custom-banner-section .banner-divider-line.left {
  background: linear-gradient(to right, #1a0f20 0%, #301d39 60%, #301d39 100%);
}

.custom-banner-section .banner-divider-line.right {
  background: linear-gradient(to right, #301d39 0%, #301d39 40%, #1a0f20 100%);
}

.custom-banner-section .banner-divider-icon {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.about-section {
  color: white;
  background-color: #15011f;
  /* fallback if image fails */
}

.about-subheading {
  max-width: 1400px;
  margin: 0 auto;
}

.about-middle-section .container {
  background-color: #1e0a28;
  border-radius: 30px;
}

.about-middle-image-wrapper {
  position: relative;
  display: inline-block;
  perspective: 1000px;
}

.about-middle-image {
  display: block;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.4, 1);
  will-change: transform;
  max-width: 100%;
  border-radius: 30px;
}

.about-middle-image:hover {
  filter: drop-shadow(0 6px 12px rgba(141, 70, 209, 0.5));
}

.about-middle-heading {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: clamp(35px, 3vw, 70px);
  color: #8d46d1;
  margin-bottom: 1rem;
}

.about-middle-subheading {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(16px, 3vw, 24px);
}

.about-middle-description p {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(15px, 3vw, 17px);
  line-height: 2;
}

.about-chakras-section {}

.about-chakras-heading {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: clamp(45px, 3vw, 70px);
  margin: 0;
}

/* .chakras-bottom-grid {
  display: flex;
  flex-wrap: wrap;
} */

.chakra-item-box {
  padding: 10px;
  border-radius: 10px;
  background: transparent;
}

/* 1️⃣  Keyframes  */
@keyframes chakra-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.chakra-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  animation: chakra-spin 40s linear infinite;
  will-change: transform;
}

/* (optional) Pause on hover */
.chakra-circle:hover {
  animation-play-state: paused;
}

.chakra-img {
  width: 70%;
  height: auto;
}

.chakra-name {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: clamp(25px, 3vw, 36px);
  margin-bottom: 0.5rem;
}

.chakra-details {
  font-family: var(--font-p);
  font-weight: 400;
  font-size: clamp(14px, 3vw, 17px);
}

.chakra-meta {
  font-family: var(--font-p);
  font-weight: 400;
  font-size: clamp(14px, 3vw, 17px);
}

.chakra-meta strong {
  font-family: var(--font-p);
  font-weight: 600;
  font-size: clamp(17px, 3vw, 24px);
}

/* Contact design */

/* ---------- SECTION BASE ---------- */
.contact-section {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* ---------- company meta ---------- */
.company-title {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: clamp(25px, 3vw, 46px);
}

.company-meta {
  margin-left: 0;
}

.company-meta li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  font-family: var(--font-p);
  font-size: 15px;
  align-items: center;
}

.meta-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  background: var(--sec-color, #8d46d1);
  color: #fff;
  font-size: 18px;
}

.meta-text {
  font-family: var(--font-p);
  font-weight: 400;
  font-size: clamp(15px, 3vw, 17px);
}

.meta-text strong {
  font-family: var(--font-p);
  font-weight: 600;
  font-size: clamp(14px, 3vw, 20px);
}

/* ---------- map ---------- */
.map-wrapper iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* ---------- divider line ---------- */
.contact-divider {
  border-color: rgba(255, 255, 255, 0.15);
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- contact heading ---------- */
.contact-heading {
  font-family: var(--font-h);
  font-weight: 500;
  font-size: clamp(35px, 3vw, 70px);
  margin-bottom: 40px;
}

/* ---------- Contact Form 7 styling ---------- */
.wpcf7 form .wpcf7-form-control:not(.wpcf7-submit) {
  background: transparent;
  border: 2px solid #46354e;
  color: #fff;
  border-radius: 40px;
  padding: 12px 20px;
  width: 100%;
  font-family: var(--font-p);
  font-size: clamp(15px, 3vw, 17px);
  font-weight: normal;
}

.wpcf7 form .wpcf7-form-control::placeholder {
  font-family: var(--font-p);
  font-size: clamp(15px, 3vw, 17px);
  font-weight: normal;
  color: #fff;
}

/* keep textarea’s custom radius */
.wpcf7 form textarea.wpcf7-form-control {
  border-radius: 25px;
  min-height: 160px;
  resize: none;
}

.wpcf7-spinner {
  display: block !important;
  margin: 10px auto 0 auto !important;
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
  float: none !important;
  transform: none !important;
}

.wpcf7-form .wpcf7-form-control:focus:not(.wpcf7-submit) {
  outline: none;
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 40px;
  background-image: linear-gradient(#1a0f20, #1a0f20),
    linear-gradient(90deg, #8d46d1, #db59ff, #8d46d1);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 0 12px rgba(141, 70, 209, 0.5);
  transition: all 0.3s ease-in-out;
}

.wpcf7-form textarea.wpcf7-form-control:focus {
  border-radius: 25px;
}

@media (min-width: 992px) {
  .chakra-section .row.g-4 {
    align-items: center;
  }
}

/* Services */

.services-archive-section {
  background-color: transparent;
}

.service-card {
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}

.service-card:hover {
  background-image: linear-gradient(#1a0f20, #1a0f20),
    linear-gradient(90deg, #8d46d1, #db59ff, #8d46d1);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 0 12px rgba(141, 70, 209, 0.5);
  transform: translateY(-4px);
}

.services-archive-section .button1 {
  min-width: 180px;
  min-height: 50px;
}

.service-image img {
  border-radius: 30px;
  object-fit: cover;
  max-height: 230px;
  width: 100%;
}

.service-title {
  font-family: var(--font-reg);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  color: #fff;
}

.service-price {
  font-family: var(--font-reg);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  color: #8d46d1;
}

.service-excerpt {
  font-family: var(--font-reg);
  font-size: clamp(15px, 3vw, 20px);
  font-weight: 400;
  line-height: 2;
  color: #fff;
}

.single_img {
  border-radius: 30px;
}

.lead {
  font-family: var(--font-reg);
  font-size: clamp(15px, 3vw, 24px);
  line-height: 1.8;
  font-weight: 500;
  color: #fff;
}

.single_details p {
  font-family: var(--font-reg);
  font-size: clamp(15px, 3vw, 18px);
  line-height: 1.8;
  font-weight: 500;
  color: #fff;
}



















/* Footer Design */

.footer-bottom {
  border-top: 2px solid #472f53;
  font-family: var(--font-p);
  font-weight: normal;
  font-size: clamp(13px, 3vw, 16px);
}

#menu-footer-menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#menu-footer-menu .current-menu-item>a,
#menu-footer-menu .current_page_item>a {
  color: var(--sec-color) !important;
}

#menu-footer-menu a {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(13px, 3vw, 17px);
  transition: all 0.3s ease-in-out;
}

#menu-footer-menu a:hover {
  color: var(--sec-color);
}

.footer-heading {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(13px, 3vw, 16px);
}

.footer-link {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(14px, 3vw, 18px);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}

.social-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.4s ease-in-out;
  border-radius: inherit;
}

.social-icon i {
  position: relative;
  z-index: 1;
  font-size: clamp(14px, 3vw, 20px);
}

/* Facebook */
.social-icon.facebook::before {
  background: linear-gradient(45deg, #1877f2, #4e9dfc);
}

.social-icon.facebook:hover::before {
  opacity: 1;
}

/* Instagram */
.social-icon.instagram::before {
  background: linear-gradient(45deg,
      #feda75,
      #fa7e1e,
      #d62976,
      #962fbf,
      #4f5bd5);
}

.social-icon.instagram:hover::before {
  opacity: 1;
}

/* Google */
.social-icon.google::before {
  background: linear-gradient(45deg,
      #4285f4,
      #34a853,
      #fbbc05,
      #ea4335,
      #db4437);
}

.social-icon.google:hover::before {
  opacity: 1;
}

/* Yelp */
.social-icon.yelp::before {
  background: linear-gradient(45deg, #ff1a1a, #d10e0e, #af0606);
}

.social-icon.yelp:hover::before {
  opacity: 1;
}

.social-icon i {
  position: relative;
  z-index: 1;
  font-size: clamp(14px, 3vw, 20px);
  color: #fff !important;
  /* keep icon pure white */
  transition: color 0.4s ease;
}

/* optional: still ensure hover is white */
.social-icon:hover i {
  color: #fff !important;
}

/* 3‑D tilt base --------------------------------------- */

.tilt-3d {
  display: inline-block;
  perspective: 1000px;
  /* depth */
}

.tilt-3d img {
  display: block;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.4, 1);
  transform-style: preserve-3d;
  /* keep depth on child */
  will-change: transform;
}

/* optional: glow on hover (purple) */
.tilt-3d:hover img {
  filter: drop-shadow(0 8px 18px rgba(141, 70, 209, 0.4));
}


.entry-title {
  font-weight: 500;
  font-family: var(--font-h);
  font-size: clamp(22px, 4vw, 50px);
  color: #fff;
  text-align: center;
}

.site-main a {
  color: var(--sec-color);
  transition: all 0.3s ease-in-out;
}

.site-main a:hover {
  color: var(--p-color);
}




/* Blog listing design */


@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');


.blog-heading{
font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-size:clamp(25px,3vw,38px);
  color:#222222;
}


.page-heading-blog{
font-family: "Instrument Sans", Sans-serif;
	font-weight: 600;
  font-size:clamp(35px,3vw,80px);
  color: #18b6ea;
}



/* === BLOG CONTAINER === */
.blog-page-wrapper {
	width: 100%;
	max-width: 1500px !important;
	margin: 0 auto;
	padding: 0 15px;
}

/* === BLOG CARD WRAPPER === */
.blog-posts-grid {
	margin: 0 20px;
}
.blog-post-item {
	padding: 0 10px;
}

/* === BLOG CARD === */
.blog-post-card .card,
.blog-posts-grid .card {
	border: 1px solid #ddd;
	border-radius: 15px;
	transition: all 0.3s ease;
	background-color: #fffdf7;
}
.blog-post-card .card:hover {
	box-shadow: 0 8px 16px rgba(0,0,0,0.12);
	transform: translateY(-5px);
}

/* === IMAGE STYLING === */
.gradient-border {
 position: relative;
  display: inline-block;
  padding: 10px;
  background: linear-gradient(135deg, #27324c, #1c2538);
}

.gradient-border .card-img-top {
  display: block;
  border-radius: 0px !important;
  width: 100%;
  height: 250px;
	object-fit:cover;
}


/* Styling only for single blog post pages */
body.single .card-img-top {
    height: auto !important;
    object-fit: cover;
    max-width: 100%;
    width: auto;
    display: block;
    
}


/* === TEXT STYLING INSIDE CARD === */
.blog-date {
    font-family: "Inter", sans-serif;
	font-weight: 500;
	color: #555555;
	font-size: 17px;
	padding-bottom: 6px;
	border-bottom: 1px solid #e1e1e1;
}
.card-title, .card-title a {
font-family: "Libre Baskerville", serif;
	font-weight: 600;
	color: #121722;
	font-size: clamp(19px, 3vw, 30px);
	text-decoration: none;
	transition:all 0.3s ease-in-out;
}

.card-title:hover, .card-title a:hover {
color:gray;
}
.card-text {
     font-family: "Inter", sans-serif;
	font-weight: 400;
	color: #222222;
	font-size: clamp(15px,3vw,21px);
}

/* === READ MORE BUTTON === */
.read-more-btn {
    font-family: "Inter", sans-serif;
    color: #121722;
    font-weight: 500;
    font-size: clamp(15px, 3vw, 21px);
    text-decoration: none;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(90deg, #edd27c, #fdf589, #d4b24c);
    background-size: 200% 100%;
    background-position: left center;
    transition: background-position 0.6s ease-in-out, color 0.3s ease;
    display: inline-block;
}

.read-more-btn:hover {
    background-position: right center;
    color: #121722;
    text-decoration: none;
    cursor: pointer;
}


/* === SECTION TITLES === */
.section-title,
.widget-title {
	font-size: clamp(18px, 3vw, 24px);
	font-weight: bold;
	color: #000;
	margin-bottom: 1.5rem;
}

/* === SIDEBAR === */
.custom-sidebar-widgets {
	padding: 1rem;
	background: #f2f6ff;
	border-radius: 12px;
}

/* === SEARCH FORM === */
.search-form {
	max-width: 100%;
	margin-bottom: 1.5rem;
}
.search-label {
	position: relative;
	display: flex;
	width: 100%;
}
.search-input {
	width: 100%;
	padding: 0.6rem 3rem 0.6rem 1rem;
	border-radius: 15px !important;
	border: 1px solid #a3bce6 !important;
	background: linear-gradient(145deg, #dbe8ff, #c7d8f5); 
	font-size: 1rem;
	color: #1d2e5e;
	box-shadow: 0 4px 10px rgba(35, 65, 135, 0.15); /* glossy shadow */
	transition: 0.3s ease;
}
.search-input:focus {
	border-color: #467de8;
	box-shadow: 0 0 10px rgba(70, 125, 232, 0.5);
	outline: none;
}
.search-input::placeholder {
	color: #6f8cb8;
	font-size: 16px;
}
.search-button {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: #467de8;
	cursor: pointer;
	font-size: 1.2rem;
}
.search-button:hover {
	color: #1f4fb2;
}
.no-post-message {
  color: red;
  font-weight:900;
	text-align:center;
	font-family: "Londrina Solid", Sans-serif;
	font-size:clamp(16px,3vw,30px);
	
}

/* === CATEGORIES DROPDOWN === */
.widget-categories {
	background-color: #234187;
	padding: 2rem;
	border-radius: 0.75rem;
}
.widget-categories .widget-title {
	color: #fff;
	font-weight: 600;
	margin-bottom: 1rem;
}
.categories-select {
	width: 100%;
	padding: 0.6rem 1rem;
	font-size: 1rem;
	border-radius: 6px;
	border: 1px solid #ccc;
	color: #333;
	background-color: #fff;
	cursor: pointer;
}

/* === RECENT POSTS (Updated with Gloss and Hover Effect) === */
.widget-recent-posts {
	background: linear-gradient(145deg, #c7d8f5, #a3bce6); /* slightly darker blue tint */
	box-shadow: 0 8px 20px rgba(35, 65, 135, 0.25);
	padding: 1.2rem 1.5rem;
	border-radius: 12px;
	position: relative;
	overflow: hidden;
}


.recent-posts-list {
	list-style: disc;
	padding-left: 1.2rem;
}

.recent-posts-list li {
	margin-bottom: 10px;
	padding: 6px 10px;
	border-radius: 6px;
	transition: background-color 0.3s ease;
}

/* Blue hover effect on li */
.recent-posts-list li:hover {
	background-color: rgba(35, 65, 135, 0.1); /* light blue hover */
}

.recent-posts-list li::marker {
	color: #234187;
	font-size: 1.1rem;
}

.recent-post-link {
	text-decoration: none;
	color: #1c2d5a;
	font-weight: 700;
	transition: color 0.3s ease, text-decoration 0.3s ease;
}

.recent-post-link:hover {
	color: #234187;
}


/* === PAGINATION === */
.pagination-wrapper {
	text-align: center;
	margin-top: 3rem;
}

.page-numbers {
	display: inline-block;
	margin: 0 6px;
	padding: 8px 14px;
	border: 1px solid transparent;
	background: linear-gradient(90deg, #edd27c, #fdf589, #d4b24c);
	color: #121722;
	font-weight: 700;
	text-decoration: none;
	border-radius: 6px;
	transition: all 0.4s ease;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.page-numbers:hover,
.page-numbers.current {
	color: #fff;
	border-color: #d4b24c;
	background: #121722;
}

.page-numbers:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


.single_title{
 font-family: "Libre Baskerville", serif;
	font-weight: 700;
  color: #222222;
	font-size:clamp(25px,3vw,38px) !important;
  border-bottom: 1px solid #e1e1e1;
}

.post-meta{
font-family: "Instrument Sans", Sans-serif;
  font-weight: 500 !important;
	font-size:clamp(13px,3vw,18px) !important;
	color:#555 !important;
}

.category-badge {
  background-color: #234187; /* your requested blue */
  color: #fff; /* white text for contrast */
  padding: 5px 20px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  font-family: "Advent Pro", Sans-serif;
  font-size: clamp(14px,3vw,20px);
	font-weight:600;
}

.category-badge:hover {
  background-color: #1a3269; /* slightly darker on hover */
  color: #fff;
}

.post-content p strong{
	font-family: "Inter", sans-serif;
	font-weight: 600;
  font-size: clamp(15px,3vw,21px);
  color: #555;
}

.post-content, .post-content p,.show-content p{
	font-family: "Inter", sans-serif;
	font-weight: 500;
  font-size: clamp(15px,3vw,21px);
  color: #222222;
}

.post-nav-btn {
	display: inline-block;
	padding: 10px 18px;
	background-color: #234187;
	color: #fff;
	text-decoration: none;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
	white-space: nowrap;
	border:1px solid #d9d9d9;
}

.post-nav-btn:hover {
	background: linear-gradient(45deg, #f5b332, #ffcc00);
	color: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	border: 1px solid #c86c0b;
}


.custom-hr {
  border: none;
  height: 2px;
  background: linear-gradient(to top, #a0a2a7, #71747a);
  margin: 2rem 0;
}

.post_box {
  background-color: var(--p-color, #ffffff);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.post_box ul li {
  position: relative;
  margin-bottom: 12px;
  padding: 14px 20px 14px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.post_box ul li:hover {
  background-color: rgba(0, 45, 109, 0.1); 
  transform: translateX(5px);
}

.post_box ul li a {
   font-family: "Libre Baskerville", serif;
	font-weight: 500;
  font-size: clamp(22px,3vw,30px);
  color: #121722;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.post_box ul li a:hover {
  color: var(--sec-color, #0056b3);
}

.recent-post-thumb {
  width: 120px;
  height: 80px;
  object-fit: cover;
	border: 2px solid #000;
}
.archive_section, .category_section {
  padding: 1rem;
}

.category_section {
  background: linear-gradient(to right, #28365d, #0a0c12);
}

.archive_section {
  background: linear-gradient(to right, #f6e27a, #c59d2f);
}

.archive_section .archive_heading{
	color:#000;
}


.archive_heading {
   font-family: "Libre Baskerville", serif;
	font-weight: 600;
  font-size: clamp(22px,3vw,30px);
  color: #fff;
  margin-bottom: 1.5rem;
}

/* Base style */




/* Category section overrides */
.category_section .form-select {
  color: var(--p-color);
}

/* 👇 These control the custom hover/focus behavior in category section */
.category_section .form-select:hover {
  color: #fff !important;
}

.category_section .form-select:focus {
  color: #000 !important;
}

.search-wrapper {
  position: relative;
  width: 100%;
}

.search-wrapper .search-input {
  width: 100%;
  padding-right: 60px; 
  border-radius: 0px !important;
  height: 50px;
  padding-left: 15px !important;
	border: 1px solid #121722 !important;
}
.search-wrapper .search-input::placeholder {
font-family: "Instrument Sans", Sans-serif;
  font-weight: 500;
  color: #555;
  font-size: clamp(12px, 3vw, 18px);
}

.search-wrapper .search_icon {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border: none;
  background-color: #121722 !important;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search-wrapper .search_icon i{color: #fff;}    


/* Related posts design */

.related-post-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.related-post-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.read-more {
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 8px;
    display: inline-block;
}
 .recent_posts{
  font-family: "Libre Baskerville", serif;
	font-weight: 600;
  font-size: clamp(22px,3vw,30px);
  color: #121722;
  border-bottom: 1px solid #d9d9d9;
}

.each_post{
  font-family: "Instrument Sans", Sans-serif;
	font-weight: 500;
   font-size: clamp(14px,3vw,18px);
   color: #555;
   transition: all 0.3s ease-in-out;
   
}

.each_post:hover{
  color: #104b91 !important;
}

.form-select {
  width: 100% !important;
  padding: 0.6rem 1rem !important;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #555555 !important;
  font-size: 17px;
  background-color: #FFF !important;
  border-radius: 5px !important;
  box-shadow: 0 2px 6px rgb(0 0 0 / 0.1) !important;
  cursor: pointer;
  appearance: none !important;

  /* Dropdown arrow color changed to #555 */
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23555'/%3E%3C/svg%3E");
  
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  background-size: 10px 6px;
  transition: box-shadow 0.3s ease, color 0.3s ease;
}

.form-select:hover {
  color: #555;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.2);
}

.form-select:focus {
  color: #000 !important;
  outline: none;
  border-color: #fff !important;
  box-shadow: 0 4px 8px rgb(0 0 0 / 0.2);
}
