/* bootstrap strat */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&display=swap');

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

a {
  color: #fff;
}

p {
  font-family: var(--font-s);
  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: "Old Standard TT", serif;
  --font-s: "Manrope", sans-serif;
  --p-color: #fff;
  --gray: #555555;
  --black: #000;
  --sec-color: #f0e6d3;
  --background: #f4f2eb;
  --dark: #cb7721;
}

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

::-webkit-scrollbar-track {
  background-color: var(--dark);
  /* light background */
}

::-webkit-scrollbar-thumb {
  background-color: var(--sec-color);
  /* secondary color */
  border-radius: 10px;
  border: 2px solid var(--background);
  /* matches track */
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--dark);
  /* highlight on hover */
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--dark) #f8d3ae;
}


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: var(--black);
  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);
}



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

/* Main menu links only */
.nav>li>a {
  font-family: var(--font-p);
  font-weight: 400;
  color: var(--black) !important;
  font-size: clamp(15px, 3vw, 20px);
  transition: color 0.3s ease-in-out;
  text-decoration: none;
  position: relative;
  display: inline-block;
  /* allows underline to match text only */
}

.nav>li>a:hover {
  color: var(--dark) !important;
}

/* Underline animation ONLY for top-level links */
.nav>li>a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: var(--dark);
  transition: width 0.3s ease-in-out;
}

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

/* Active state */
.nav>li.current-menu-item>a,
.nav>li.current_page_item>a,
.nav>li.current-menu-ancestor>a,
.nav>li.current_page_ancestor>a {
  color: var(--dark) !important;
}

.nav>li.current-menu-item>a::after,
.nav>li.current_page_item>a::after,
.nav>li.current-menu-ancestor>a::after,
.nav>li.current_page_ancestor>a::after {
  width: 100%;
  color: var(--dark);
}


.nav>li.menu-item-has-children>a::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0d7";
  font-size: 14px;
  margin-left: 6px;
  position: relative;
  top: -2px;
  color: #000;
  background-color: transparent !important;
  transition: color 0.3s ease;
}

.nav>li.current-menu-item>a::after,
.nav>li.current_page_item>a::after,
.nav>li.current-menu-ancestor>a::after,
.nav>li.current_page_ancestor>a::after {
  color: var(--dark) !important;
}

.nav>li.menu-item-has-children:hover>a::after {
  color: var(--dark);
}


.menu-gap {
  gap: 1rem;
}

.nav .sub-menu {
  background-color: var(--sec-color);
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  min-width: 180px;
  position: absolute;
  z-index: 999;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav li {
  position: relative;
}

.nav .sub-menu li {
  list-style: none;
}

.nav .sub-menu a {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: 15px;
  color: var(--black) !important;
  padding: 8px 16px;
  display: block;
  position: relative;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.nav .sub-menu li:first-child>a {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.nav .sub-menu li:last-child>a {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

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

.nav .sub-menu a:hover {
  color: var(--black) !important;
  background-color: #f0c396;
}

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

.nav .sub-menu .sub-menu {
  background-color: var(--sec-color);
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  min-width: 180px;
  position: absolute;
  left: 100%;
  top: 0;
  z-index: 999;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.nav .sub-menu .sub-menu a {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: 15px;
  color: var(--black) !important;
  padding: 8px 16px;
  display: block;
  position: relative;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.nav .sub-menu .sub-menu li:first-child>a {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.nav .sub-menu .sub-menu li:last-child>a {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.nav .sub-menu .sub-menu a:hover {
  color: var(--black) !important;
  background-color: #f0c396;
}

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









@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: 100%;
  transition: all 0.3s ease-in-out;
}

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

.site-header .custom-logo {
  width: 312px;
  padding: 20px 0 !important;
}

.site-header.scrolled .custom-logo {
  width: 250px;
  padding: 10px 0 !important;
}

#masthead2 .custom-logo {
  width: 200px;
  padding: 35px 0;
}

#masthead2.scrolled .custom-logo {
  width: 160px;
  padding: 25px 0;
}

.site-header .custom-logo:hover,
#masthead2 .custom-logo:hover {
  filter: drop-shadow(0 0 6px var(--sec-color)) drop-shadow(0 0 5px var(--sec-color));
}

#masthead.scrolled::after,
#masthead2.scrolled::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(240, 230, 211, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  z-index: -1;
}

#masthead,
#masthead2 {

  z-index: 10;
}


.button1 {
  position: relative;
  overflow: hidden;
  color: var(--black);
  border: 1px solid var(--black);
  padding: 10px 20px;
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(15px, 3vw, 20px);
  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: 262px;
  min-height: 57px;
}

.button1::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  aspect-ratio: 1 / 1;
  background-color: var(--black);
  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(--black) !important;
  padding: 10px 20px !important;
  font-family: var(--font-p) !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  font-size: clamp(15px, 3vw, 20px) !important;
  border-radius: 50rem !important;
  background-color: var(--black) !important;
  z-index: 1 !important;
  transition: color 0.4s ease, background-color 0.4s ease !important;
  cursor: pointer !important;
  min-width: 210px;
  min-height: 61px;
}

.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(--black) !important;
  background-color: transparent !important;
}

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


/* Home design */

.banner {
  width: 100%;
  height: 720px;
  background: linear-gradient(to right,
      #f5f3ec 40%,
      #f0e6d3 20%,
      #f0e6d3 100%);
  position: relative;
  margin-bottom: 200px;
}

.banner-text {
  background: transparent;
  padding: 80px;
  left: 0;

}

.banner-text .small-text {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 80px);
  color: #000;
  padding-left: 80px;
}

.banner-text .big-text {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(50px, 8vw, 200px);
  line-height: 1;
  letter-spacing: 12px;
  text-transform: uppercase;
  color: #000;
  margin: 0;
  padding-left: 110px;
}

.banner-text .bottom-text {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 80px);
  color: #000;
}

.banner-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 25px;
  background: #000;
  color: #fff;
  border-radius: 25px;
  font-size: 16px;
  text-decoration: none;
}

.banner-btn:hover {
  background: #333;
}

.banner-image {
  background-color: #f1e4d7;
  border-radius: 30px;
  max-height: 794px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.banner-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  border-radius: 30px;
  object-fit: cover;
}

.home-about-section {
  background: #f5f3ec;
  position: relative;
  min-height: 1150px;
  overflow-y: visible;
}

.award-text p {
  font-family: var(--font-p);
  font-weight: normal;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000;
}

.background-big-text {
  font-family: var(--font-p);
  font-weight: bold;
  text-transform: uppercase;
  font-size: clamp(80px, 10vw, 200px);
  font-weight: bold;
  color: #eee9db;
  line-height: 0.3;
  z-index: 0;
  padding: 80px 0 0 60px;
  pointer-events: none;
}

.heading {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(34px, 3vw, 60px);
  margin-bottom: 1rem;
}

.about-description p {
  font-family: var(--font-s);
  font-weight: 500;
  color: #555555;
  font-size: clamp(14px, 3vw, 18px);
  line-height: 1.6;
  max-width: 500px;
}

.about-images {
  position: relative;
  gap: 1rem;
}

.about-images .main-image {
  border-radius: 40rem 120px 120px 120px;
  width: 60%;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(203, 119, 33, 0.25),
    0 2px 5px rgba(203, 119, 33, 0.15);

}

.about-images .secondary-image {
  border-radius: 50px 50px 15rem 50px;
  width: 40%;
  height: 70%;
  object-fit: cover;
  position: absolute;
  bottom: -160px;
  right: 20%;
  box-shadow: 0 5px 15px rgba(203, 119, 33, 0.25),
    0 2px 5px rgba(203, 119, 33, 0.15);
}

.btn-dark {
  background: black;
  color: white;
  border-radius: 50px;
  padding: 10px 25px;
  text-decoration: none;
}

.about-images img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  cursor: pointer;
}

.about-images img:hover {
  transform: perspective(800px) rotateX(5deg) rotateY(5deg) scale(1.05);
  box-shadow: 0 20px 30px rgba(203, 119, 33, 0.35);
}


.tesimonials-section {
  background-color: var(--sec-color);
  padding: 80px 50px;
  border-radius: 30px;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sib_signup_box_inside_1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.newsletter-input-wrapper {
  position: relative;
  display: inline-block;
  width: 60%;
  margin: 0 auto;
}

.newsletter-input-wrapper input {
  width: 100%;
  height: 72px;
  background-color: transparent !important;
  border: 1px solid #31312f !important;
  border-radius: 50px !important;
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(14px, 3vw, 18px);
  padding: 0 25px !important;
}

.newsletter-input-wrapper input::placeholder {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(14px, 3vw, 18px);
  color: #555;
}

.newsletter-input-wrapper .button2 {
  position: absolute !important;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.custom_hr {
  background-color: #000 !important;
  height: 1px !important;
  width: 85%;
  margin: 100px auto 0px;
  opacity: 1 !important;
}



/* Breadcrumbs */

.breadcrumb-title {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 80px);
  color: #000;
}

#breadcrumbs {
  font-family: var(--font-s);
  font-weight: 500;
  color: #555555;
  font-size: clamp(14px, 3vw, 18px);
  line-height: 1.6;
}

#breadcrumbs a {
  color: var(--dark);
  transition: all 0.3s ease-in-out;
}

#breadcrumbs a:hover {
  color: #693705;
}


.custom_breadcrumbs {
  width: 100%;
  height: 384px;
  background: linear-gradient(to right,
      #f5f3ec 40%,
      #f0e6d3 20%,
      #f0e6d3 100%);
  position: relative;
  margin-bottom: 200px;
}

.page-id-17 .custom_breadcrumbs {
  margin-bottom: 250px;
}

.page-id-17 .tesimonials-section {
  padding: 30px 50px;
}

.grwp_verified {
  display: none !important;
}


.breadcrumbs-text {
  background: transparent;
  padding: 80px;
  left: 5%;
  z-index: 1;
}

.breadcrumbs-image {
  background-color: #f1e4d7;
  border-radius: 30px;
  min-height: 384px;
  max-height: 384px;
  aspect-ratio: 16/5;
  overflow: hidden;
  position: relative;
}

.breadcrumbs-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/5;
  border-radius: 30px;
  object-fit: contain;
  object-position: right center;
}

.page-id-13 .breadcrumbs-image-overlay {
  background: linear-gradient(to right, #f1e4d7 60%, rgba(241, 228, 215, 0) 70%) !important;
}
.page-id-15 .breadcrumbs-image-overlay {
  background: linear-gradient(to right, #f1e4d7 65%, rgba(241, 228, 215, 0) 75%) !important;
}

.breadcrumbs-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(to right, #f1e4d7 15%, #f1e4d7 33%, rgba(241, 228, 215, 0.1) 61%);
  pointer-events: none;
}


.section-content .greet {
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(27px, 3vw, 36px);
  color: var(--dark);
  margin-bottom: 10px;
}

.section-content p {
  font-family: var(--font-s);
  font-weight: 500;
  color: #555555;
  font-size: clamp(14px, 3vw, 18px);
  line-height: 1.6;
}

.section-content p strong {
  color: #000;
  font-size: clamp(16px, 3vw, 24px);
}

.about-image1:hover {
  box-shadow: 0 20px 30px rgba(203, 119, 33, 0.35);
}


.about-image1 {
  border-radius: 20rem 50px 50px 50px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(203, 119, 33, 0.25),
    0 2px 5px rgba(203, 119, 33, 0.15);
}

.about-image2 {
  border-radius: 50px 50px 20rem 50px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(203, 119, 33, 0.25),
    0 2px 5px rgba(203, 119, 33, 0.15);
}



.certifications-section {
  padding: 80px 0;
  color: #fff;
  position: relative;
  margin: 14px 0;
}

.certifications-overlay {
  pointer-events: none;
}

.certifications-columns {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  width: 72%;
  margin: 0 auto;
}

.cert-column {
  flex: 1;
}


.cert-column p {
  font-family: var(--font-s);
  font-weight: 500;
  color: #000;
  font-size: clamp(14px, 3vw, 18px);
}

.cert-item {
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 28px;
}

.cert-item i {
  color: var(--dark);
  margin-right: 8px;
  position: absolute;
  left: 0;
  top: 0.2em; /* adjust vertical alignment if needed */
}


/* Contact page design */


.map-wrapper iframe {
  border: 3px solid #fff !important;
  border-radius: 12px;
}

.company-title {
  font-family: var(--font-s);
  font-weight: 600;
  font-size: clamp(25px, 3vw, 36px);
  color: #000;
}

.company-meta {
  margin: 0;
  padding: 0;
  list-style: none;
}

.company-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 25px;
  /* Equal gap between all li */
}

.company-meta li {
  display: flex;
  align-items: center;
}


.company-meta .meta-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid #000;
  border-radius: 15px;
  margin-right: 12px;
  font-size: 16px;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

.company-meta .meta-icon i {
  color: #000;
  font-size: 22px;
}

.company-meta .meta-text a,
.company-meta .meta-text {
  color: #000;
  font-family: var(--font-s);
  font-weight: 500;
  font-size: clamp(15px, 3vw, 22px);
  /* line-height: 1.4; */
  text-decoration: none;
}

.company-meta .meta-text a:hover {
  color: #cb7721;
  text-shadow: 0 0 1px #000, 0 0 1px #000;
}

.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;
}

.contact-form-section {
  background-color: #f0e6d3;
  border-radius: 30px;
  /* min-height: 820px; */
  display: flex;
  align-items: center;
  justify-content: center;
}



.wpcf7 form .wpcf7-form-control:not(.wpcf7-submit) {
  background: #fff;
  border: 2px solid transparent;
  color: #555;
  border-radius: 10px;
  padding: 12px 20px;
  width: 100%;
  font-family: var(--font-p);
  font-size: clamp(16px, 3vw, 20px);
  font-weight: normal;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

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

/* keep textarea’s custom radius */
.wpcf7 form textarea.wpcf7-form-control {
  border-radius: 10px;
  min-height: 160px;
  resize: none;
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

.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: 10px;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 0 12px #cb762194;
  transition: all 0.3s ease-in-out;
}

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



/* Services design */

.service-card {
  width: 90%;
  border-radius: 15px;
  background: #f4f2eb;
  transition: transform 0.3s ease;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100% !important; /* ensure equal height sticks */
}

.service-card .service-title,
.service-card .service-price,
.service-card .service-excerpt {
  flex-shrink: 0;
}

.service-card .service-excerpt {
  flex-grow: 1; /* pushes read more to the bottom */
}

.service-card .btn-read-more {
  margin-top: auto;
  align-self: center;
	}


.service-card:hover {
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

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

.rounded-custom {
  border-radius: 20rem 50px 50px 50px;
  object-fit: cover;
  width: 100%;
  height: 400px;
}

@media (min-width: 768px) {
  .rounded-custom {
    height: 500px;
  }
}


.service-title {
  font-family: var(--font-p);
  font-size: clamp(25px, 3vw, 30px);
  font-weight: 500;
  margin-top: 10px;
  color: #000;
}

.service-price {
  color: #000;
  font-family: var(--font-p);
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 500;
  margin-bottom: 10px;
}

.service-excerpt {
  font-family: var(--font-s);
  font-size: clamp(14px, 3vw, 18px);
  color: #555555;
  margin-bottom: 20px;
}


.btn-read-more {
  position: relative;
  overflow: hidden;
  color: var(--black);
  border: 1px solid var(--black);
  padding: 10px 20px;
  font-family: var(--font-p);
  font-weight: 500;
  font-size: clamp(15px, 3vw, 20px);
  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: 180px;
  min-height: 57px;
}

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

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

.btn-read-more:hover::before {
  width: 500px;
}



.rounded-single-custom{
    border-radius: 20rem 50px 50px 50px;
    object-fit: cover;
    width: 100%;
    height: 400px;
    
}
@media (min-width: 768px) {
  .rounded-single-custom {
    height: 600px;
  }
  
}


.single-service-slider-thumbs .slide-thumb img{
    height: 140px; 
    object-fit: cover;
    cursor: pointer;
    border-radius: 10px;
	object-position:center;
}



/* Add gap between slides */
.single-service-slider-thumbs .slick-slide {
    margin: 0 10px; /* adjust spacing */
}




.single-service-slider .slick-slide {
    margin: 0 10px; 
    box-sizing: border-box;
}


.right-side-description p{
  font-family: var(--font-s);
  font-size: clamp(14px, 3vw, 18px);
  color: #555555;
}

/* Common font and color for all tags inside right-side-description and service-description */
.right-side-description p,
.right-side-description span,
.right-side-description strong,
.right-side-description em,
.right-side-description a,
.right-side-description li,
.right-side-description h1,
.right-side-description h2,
.right-side-description h3,
.right-side-description h4,
.right-side-description h5,
.right-side-description h6,
.service-description p,
.service-description span,
.service-description strong,
.service-description em,
.service-description a,
.service-description li,
.service-description h1,
.service-description h2,
.service-description h3,
.service-description h4,
.service-description h5,
.service-description h6 {
    font-family: var(--font-s);
    color: #555555;
}

/* Paragraphs, spans, strong, em, links, list items */
.right-side-description p,
.right-side-description li,
.right-side-description span,
.right-side-description strong,
.right-side-description em,
.right-side-description a,
.service-description p,
.service-description li,
.service-description span,
.service-description strong,
.service-description em,
.service-description a {
    font-size: clamp(14px, 3vw, 18px);
    line-height: 1.6;
}

/* Headings h1-h6 */
.right-side-description h1,
.service-description h1 {
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 700;
    margin-bottom: 1rem;
}
.right-side-description h2,
.service-description h2 {
    font-size: clamp(24px, 4.5vw, 32px);
    font-weight: 700;
    margin-bottom: 0.9rem;
}
.right-side-description h3,
.service-description h3 {
    font-size: clamp(20px, 4vw, 28px);
    font-weight: 600;
    margin-bottom: 0.8rem;
}
.right-side-description h4,
.service-description h4 {
    font-size: clamp(18px, 3.5vw, 24px);
    font-weight: 600;
    margin-bottom: 0.7rem;
}
.right-side-description h5,
.service-description h5 {
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 500;
    margin-bottom: 0.6rem;
}
.right-side-description h6,
.service-description h6 {
    font-size: clamp(14px, 2.5vw, 18px);
    font-weight: 500;
    margin-bottom: 0.5rem;
}









/* Footer Design */

.custom-footer {
  background: var(--background);
  color: var(--black);
  position: relative;
  text-align: center;
  height: fit-content;
  display: flex;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}


.custom-hr {
  height: 2px !important;
  background-color: #c7c7c7;
}
.custom-hr2 {
  margin: 40px auto;
  width: 90%;
  height: 2px !important;
  background-color: #000;
}

@media (min-width: 1000px) {
  .custom-hr2 {
  margin: 40px auto;
  width: 70%;
  }
}



.footer-slider {
  flex-shrink: 0;
}

.footer-overlay {
  flex-shrink: 0;
}

.footer-logo {
  max-width: 300px;
}

.footer-phone-label {
  color: var(--black);
  font-family: var(--font-s);
  font-weight: bold;
  font-size: clamp(16px, 3vw, 16px);
  display: block;
  margin-bottom: 10px;
}

.footer-phone a {
  font-family: var(--font-s);
  font-weight: 400;
  color: #000;
  font-size: clamp(14px, 3vw, 16px);
  transition: all 0.3s ease-in-out;
}

.footer-span {
  color: #000;
}


.footer-phone a:hover {
  color: #cb7721;
  text-shadow: 0 0 1px #000, 0 0 1px #000;
}

.footer-nav a {
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-s);
  font-size: clamp(16px, 3vw, 16px);
}

.footer-nav a:last-child {
  margin-right: 0 !important;
}

.footer-bottom {
  margin-top: 15px;
  min-height: 63px;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.web-design {
  display: inline;
  font-family: var(--font-s);
  font-size: clamp(14px, 3vw, 16px);
  color: #fff;
}

.web-design a {
  display: inline;
  font-family: var(--font-s);
  font-size: clamp(14px, 3vw, 16px);
  color: #eebf04;
}

.copyright {
  color: #fff;
  font-family: var(--font-s);
  font-size: clamp(14px, 3vw, 16px);
  margin: 0;
}

.footer-bottom a {
  color: #eebf04;
}

.footer-bottom a:hover {
  color: #fff;
  text-shadow: 0 0 5px #cb7721, 0 0 5px #cb7721;
}


.footer-slider .slick-track {
  display: flex;
  /* gap: 15px; */
}

.footer-slider .slick-slide {
  margin: 0;
  padding: 1rem;
}

.footer-bottom {
  background-color: var(--black);
}

.social_icon {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
  border-radius: 10px;
  box-shadow: 0 0 5px #555;
  color: #fff;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
  background-color: #000;
}

.social_icon i {
  font-size: 1.4rem;
}


.special {
  width: 52px;
  height: 52px;
}

.special i {
  font-size: 1.6rem;
}

/* Brand-specific background colors on hover */
.social_icon.facebook:hover {
  background-color: #1877F2;
  border: 1px solid #1877F2;
}

.social_icon.instagram:hover {
  background: radial-gradient(circle at 30% 107%,
      #fdf497 0%,
      #fdf497 5%,
      #fd5949 45%,
      #d6249f 60%,
      #285AEB 90%);
  border: 1px solid #cb188b;
}


/* Shared hover effect for icons */
.social_icon:hover,
.details_icon:hover {
  color: #fff;
  transition: all 0.3s ease-in-out;
}


.details_icon {
  width: 40px;
  height: 40px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  font-size: 1.2rem;
  background-color: #cb188b;
}




.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);
}