* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--ff-roboto);
}

:root {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
}

.container,
.container-fluid {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row>* {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1240px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

@media screen and (min-width: 768px) {
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

@media screen and (min-width: 992px) {

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}

img,
svg {
  vertical-align: middle;
}

.img-fluid {
  width: 100%;
  height: auto;
}

input {
  width: 100%;
}

input:focus,
button {
  border: none;
  outline: none;
}

input:focus,
textarea:focus {
  outline: none;
}

button {
  background: unset;
}

button,
[role="button"],
[class*="btn"] {
  cursor: pointer;
}

figure {
  max-width: 100%;
}

[class~="ellipse"],
[class*="-title"] {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ellipse {
  -webkit-line-clamp: 3;
}

[class*="-title"] {
  -webkit-line-clamp: 2;
}

/* attr __________ selector ______  Starts */

[class*="flex"] {
  display: flex;
}

[class*="grid"] {
  display: grid;
}

[class*="flex"][class*="column"] {
  flex-direction: column;
  align-items: start;
}

:where([class*="flex"]:not([class*="flex"][class*="column"]), [class*="grid"]),
[class*="items-center"] {
  align-items: center !important;
}

[class*="-between"] {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

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

[class*="flex"][class*="wrap"] {
  flex-wrap: wrap;
}

[class*="row-gap"] {
  row-gap: 1.25rem;
}

.row-gap-3 {
  row-gap: 2rem;
}

.row-gap-5 {
  row-gap: 3rem;
}

.gap-20 {
  gap: 20px;
}

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

.mt-5 {
  margin-top: 50px !important;
}

.mt-3 {
  margin-top: 30px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mx-auto {
  margin-inline: auto;
}

.py-5 {
  padding-block: 50px;
}

.pb-5 {
  padding-bottom: 50px !important;
}

.flex-grpBtn {
  gap: 10px 20px;
  flex-wrap: wrap;
}

.flex-btn {
	gap:10px;
  padding: 12px 20px !important;
  width: fit-content !important;
}

.full-btn {
  width: 100% !important;
  justify-content: center;
}

.img-placeholder {
  aspect-ratio: 16/9;
}

:is(.img-placeholder, .img-placeholder img) {
  height: auto;
  width: 100%;
  object-fit: cover;
}

.sticky-card {
  position: sticky !important;
  top: 100px;
}

.head-seprator-center {
  align-items: center !important;
  text-align: center;
}

[class*="head-seprator"] {
  gap: 15px;
  margin-bottom: 30px;
}

[class*="head-seprator"] :is(h2, .h3, p){
  margin-bottom: 0 !important;
}

/* ---------------site-form-------------- */

form [class*="flex-"] {
  gap: 10px;
}

form :is(input, select, textarea) {
  padding: 8px 15px;
  width: 100%;
}

form textarea {
  height: 100px;
  resize: none;
}

input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

/* -----------site-pagination------------ */

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px
}

.pagination .nav-links :is(a, span) {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-header {
    padding-block: 50px;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.page-header .container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-header h1 {
    margin-bottom: 0 !important
}

/* ------------------------Header-start-**********----------------- */

header .grid-header .header-rightbar {
  justify-content: flex-end;
}

header nav ul {
  gap: 20px 30px;
  display: flex;
  align-items: center;
}

header .grid-header .flex-searchBtn {
  height: 40px;
  width: 40px;
}

.dropdown {
  position: relative;
}

.dropdown ul {
  display: flex;
  position: absolute;
  left: 0;
  top: 70px;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  transform: scale(1, 0);
  transform-origin: 0 0;
  min-width: 100%;
  background: var(--white);
  padding: 20px;
  border-radius: 0 0 var(--rad-sm) var(--rad-sm);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease-in-out;
}

@media (min-width: 1024px) {
  header .grid-header {
    grid-template-columns: 44% 11% auto;
  }

  header .menu-toggle-btn {
    display: none;
  }

  header nav>ul>li {
    padding-block: 25px;
  }

  header .dropdown ul {
    border-top: 0;
    white-space: nowrap;
  }

  header .dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  .cat-container .row [class*="col-lg"] {
    padding-inline: 6px;
  }

  .allGallery-container .row [class*="col-lg"] {
    padding-inline: 3px !important;
  }

  .slider-category .swiper :is(.swiper-button-next, .swiper-button-prev) {
    width: 40px;
  }

  .grid-blog-card {
    grid-template-columns: 30% auto;
  }

  .grid-blog-card :is(.img-placeholder, .img-placeholder img) {
    border-radius: var(--rad-md);
    height: 100px;
  }

  .blog-sidebar .col-lg-12:not(:first-child) .grid-blog-card {
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    margin-top: 5px;
  }

  .grid-blog-card .blog-card-content {
    padding-block: 0 !important;
  }

  .form-info .col-lg-4:not(:first-child) .info-col {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 40px;
    height: 100%;
  }

  .form-wrapper .form-container {
    position: absolute;
  }

  .cat-container .cat-col-wrapper img.lg-img {
    height: 705px;
  }

  .copyright .copyright-list li:not(:first-child) a {
    border-left: 1px solid var(--border-color);
    padding-left: 20px;
    margin-left: 20px;
  }

  footer .logo-box {
    align-items: center !important;
  }

  .bg-img-container .content-col {
    max-width: 400px;
    min-height: 450px;
    position: absolute;
    padding: 45px 30px;
  }

  .post-meta .post-summary .flex-ath:not(:first-child) {
    padding-left: 15px;
    margin-left: 15px;
    border-left: 1px solid rgba(0, 0, 0, 25%);
  }

  main .single-blog .blog-sidebar-social {
    writing-mode: sideways-lr;
    flex-direction: row-reverse;
  }
	
	.page-hero .hero-border-wrap{
    border-left: 4px solid var(--pc);
    padding-left: 20px;
    margin-left: 30px;
}
	
}

@media (max-width: 1024px) {
	
	header.headerUp{
		overflow:hidden
	}
  header .grid-header {
    grid-template-columns: 10% 45% auto;
    justify-content: space-between;
  }

  header nav {
    position: absolute;
  }

  header nav>ul {
    flex-direction: column;
    align-items: flex-start !important;
    transform: translateX(100%);
    transition: all 0.3s ease-out 0s;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    padding: 30px;
    background: var(--white);
    z-index: 9999;
  }

  header nav>ul.show-ul {
    transform: translateX(0%);
  }

  header ul li.showMenu>ul {
    display: flex !important;
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    position: unset;
    margin-top: 5px;
    border-radius: var(--rad-sm);
  }

  header .primary-btn {
    display: none;
  }
}

/* ------------------------Hero-start-**********----------------- */

.homepage-hero .hero-grid {
  grid-template-columns: 30% auto 30%;
}

.homepage-hero .hero-grid [class*="head-seprator"] {
  padding-inline: 30px;
}

/* ------------------------Service-card-start-**********----------------- */

.service-card .service-content {
  padding: 15px;
  gap: 10px;
}

/* ------------------------img-content-container-start-**********----------------- */

.img-content-container {
  position: relative;
}

.img-content-container .img-wrap {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  max-width: 480px;
  padding: 0;
}

.img-content-container .img-wrap img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* ------------------------site-icon-col-start-**********----------------- */

.flex-icon-col .card-content {
  gap: 10px;
}

.flex-main-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  justify-content: center;
  display: flex;
  align-items: center;
}

/* ------------------------category-sec.-start-**********----------------- */

.row:has(.cat-col-wrapper),
.cat-col-wrapper {
  height: 100%;
}

.cat-container .row {
  row-gap: 5px;
}

.cat-container .cat-col-wrapper img {
  height: 350px;
  width: 100%;
  object-fit: cover;
}

.cat-container .cat-col-wrapper {
  position: relative;
  overflow: hidden;
}

.cat-container .cat-col-wrapper .cat-detl {
  position: absolute;
  left: 50%;
  bottom: -45px;
  text-align: center;
  z-index: 999;
  gap: 30px;
  /*visibility: hidden;*/
  transform: translateX(-50%);
  transition: all 0.3s;
  /*opacity: 0;*/
  /*transform: scale(0);*/
}

.cat-container .cat-col-wrapper:hover .cat-detl {
  visibility: visible;
  transition: all 0.3s;
  opacity: 1;
  bottom: unset !important;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* ------------------------why-choose-col.-start-**********----------------- */

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 15px 40px;
  align-items: flex-start !important;
}

.wcu-col {
  height: 100%;
  gap: 15px;
  text-align: center;
}

/* ------------------------custom-swiper-start-**********----------------- */

.slider-category .swiper {
  background: var(--pc-light);
  overflow: hidden;
  padding-inline: 40px;
}

.slider-category .swiper .swiper-slide {
  margin: 0 !important;
}

.flex-icon-col {
  padding: 15px 30px;
}

/* ------------------------Team-Card-start-**********----------------- */

.team-card .team-img {
  width: 100%;
  position: relative;
}

.team-card img {
    height: 290px;
    width: 100%;
    object-fit: cover;
    object-position: top center;
}

.team-card .team-img ul {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

/* ------------------------siteTabs-start-**********----------------- */

.tabsCon {
  position: relative;
}

.tabsCon .tabcontent {
  display: none;
  animation: fadeEffect 1s;
  margin-top: 50px;
}

.tabsCon .flex-tabs::-webkit-scrollbar {
  display: none;
}

.tabsCon .flex-tabs {
  position: relative;
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid var(--border-color);
  flex: 1;
  gap: 30px;
  margin-inline: 20px;
}

.tabsCon .flex-tabs button {
  flex-shrink: 0;
  padding: 15px 10px;
}

.underline {
  position: absolute;
  bottom: 0;
  height: 3px;
  background: var(--pc);
  transition: all 0.3s ease;
}

.arrow {
  background: #f2f2f2;
  border: none;
  height: 30px;
  width: 30px;
  cursor: pointer;
  border-radius: var(--rad-lg);
}

.arrow.hidden {
  display: none;
}

/* ------------------------Project-Card-start-**********----------------- */

.project-card {
  overflow: hidden;
  border-radius: var(--rad-md);
  position: relative;
}

.project-card img {
  height: 400px;
  width: 100%;
  object-fit: cover;
  transition: all 0.5s ease-in-out 0s;
}

.project-card :is(a, span, h3) {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  z-index: 999;
  min-width: 250px;
}

/* ------------------------Process-sec.-start-**********----------------- */

.process-wrapper .process-col .content-box,
.process-wrapper .process-strip {
  position: relative;
}

.process-col .content-box :is(.h6, p) {
  margin-bottom: 5px;
}

.process-col .content-box span {
  display: flex;
  height: 50px;
  width: 2px;
  background: var(--pc);
}

.process-col .content-box .number {
  position: absolute;
  height: fit-content;
  left: 30%;
  transform: translateX(-30%);
}

.top-content .number {
  bottom: 15px;
}

.bottom-content .number {
  top: 15px;
}

.process-col .process-icon-box {
  justify-content: center;
  margin-inline: auto;
  height: 140px;
  width: 140px;
  position: relative;
}

.top-content .process-icon-box {
  margin-top: 20px;
}

.bottom-content .process-icon-box {
  margin-bottom: 20px;
}

/* ------------------------Blog-Card-start-**********----------------- */

.blog-card .blog-card-content {
  padding: 20px;
  gap: 10px;
}

.blog-card .blog-card-content .flex-post-meta {
  gap: 20px 40px;
}

/* ------------------------form-sec.(Homepage)-start-**********----------------- */

.form-bg-container {
  margin-block: 100px;
  background: rgba(34, 34, 34, 1) url("https://wallinsiders.batterseaconsultant.com/wp-content/uploads/2026/04/form-bg.webp") center left / contain no-repeat;
}

.form-info{
  padding-block: 100px;	
}

.contact-form{
  	padding-block: 70px 150px !important;
	margin-block: 0 !important;	
}

.contact-form .form-container {
	top: -160px !important;
	max-width: 600px !important;
}

 .info-col {
  gap: 15px 25px;
}

.info-col .flex-info-icon {
  justify-content: center;
	flex-shrink:0;
  height: 60px;
  width: 60px;
}

.form-wrapper {
  position: relative;
}

.form-wrapper .form-container {
  top: -125px;
  right: 0;
  max-width: 500px;
  width: 100%;
  height: 100%;
  min-height: 665px;
  padding: 30px;
  z-index: 9;
}

/* -----------------Accordians-start-------------------- */

.wp-block-create-block-bwe-addons-faq .wp-block-create-block-bwe-addons-details:not(:first-child) details {
  margin-top: 20px;
}

.wp-block-create-block-bwe-addons-faq .wp-block-create-block-bwe-addons-details details summary {
  padding: 12px 30px 12px 20px;
}

.wp-block-create-block-bwe-addons-faq .wp-block-create-block-bwe-addons-details details .content {
  padding: 12px 20px;
}


/* -----------------Footer-start-------------------- */

footer {
  background: #222222;
  padding-block: 100px 50px;
  position: relative;
  margin-top: 130px
}

footer .newsletter-wrap {
  padding: 20px 30px;
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1270px;
  top: -50px;
}

footer form {
  position: relative;
}

footer form input {
  border: 0 !important;
  padding: 20px 15px;
}

footer form button {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

footer .footer-menu-cols .menu-ttl {
  margin-bottom: 15px;
}

footer .footer-menu-cols ul {
  gap: 15px;
}

.flex-social-media {
  gap: 10px;
}

.flex-social-media a {
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -----------------Single-Service-start-------------------- */

.numeric-faq details .content {
  padding: 10px 48px 0;
}

div>.flex-rating {
  gap: 5px;
}

.review-card .review-info {
  padding: 15px 20px;
	margin-top: auto;
  width: 100%;
  line-height: 2;
}

.review-card .review-info span {
  height: 48px;
  width: 48px;
  justify-content: center;
}

.bg-img-container {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(https://wallinsiders.batterseaconsultant.com/wp-content/uploads/2026/04/bg-img-container.webp) no-repeat center center / cover;
  padding-block: 50px 35px;
  position: relative;
}

.bg-img-container .content-col {
  width: 100%;
  justify-content: center;
  height: 100%;
  top: -18px;
  padding: 25px;
}

.bg-img-container .project-card {
  height: 280px !important;
}

/* -----------------Single-Blog-start-------------------- */

.default-hero {
  padding-block: 50px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%), url("https://wallinsiders.batterseaconsultant.com/wp-content/uploads/2026/04/default-hero.webp") no-repeat center / cover;
}

.yoast-breadcrumbs>span {
  gap: 10px;
  flex-wrap: wrap;
}

.post-meta .post-summary .flex-ath {
  gap: 5px;
  white-space: nowrap;
}

.yoast-breadcrumbs>span,
main .single-blog .blog-sidebar-social {
  display: flex;
  align-items: center;
}

main .single-blog .blog-sidebar-social {
  gap: 15px;
}

main .single-blog .col-lg-11 :is(ul, ol),  :is(main .single-blog, body.author main) :is(ul, ol):not(.flex-social-media),
:is(body.single-inspiration, body.page) main :is(ul, ol){
  padding-left: 18px;
}

main .single-blog .col-lg-11 :is(ul, ol) li, :is(body.single-inspiration, body.page) main :is(ul, ol) li{
  padding-left: 5px;
}

main .single-blog .col-lg-11 :is(ul) li, :is(main .single-blog, body.author main) :is(ul) li:not(.flex-social-media li), 
:is(body.single-inspiration, body.page) main :is(ul, ol) li{
  list-style: disc;
}

:is(main .single-blog, body.author main, body.page main, body.single-inspiration main ) :is(p, ul, ul li, ol, ol li, h2, h3, h4, h5, h6):not(.media-wrap li){
  margin-bottom: 15px;
}

.flex-rating , .flex-rating li{
	list-style: none !important;
	margin:  0 !important;
	padding: 0 !important
}

.sidebar-blog-wrapper .blog-card .blog-card-content {
  padding: 0 !important;
}

/* -----------------Single-Gallery-start-------------------- */

.grid-50 {
  grid-template-columns: repeat(2, 1fr);
}

.gap-5 {
  gap: 5px;
}

.glry-img-card img {
  height: 200px;
  width: 100%;
  cursor: pointer;
  object-fit: cover;
}

.main-img img {
  height: 405px;
}

.galleryCollection .glry-img-card#viewMore {
  position: relative;
}

.galleryCollection .glry-img-card#viewMore .countOtherImg {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 50px;
  width: 50px;
  transform: translate(-50%, -50%);
}

.galleryCollection .glry-img-card#viewMore img {
  filter: brightness(0.2);
}


/* lightbox-css  */

.custom-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
  z-index: 99999999;
}

.custom-lightbox .lightbox-img {
  max-width: 90%;
  max-height: 80%;
}

.custom-lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
}

.custom-lightbox .prev,
.custom-lightbox .next {
  position: absolute;
  top: 50%;
  font-size: 30px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  transform: translateY(-50%);
}

.custom-lightbox .prev {
  left: 20px;
}

.custom-lightbox .next {
  right: 20px;
}

/* -----------------Journey-card----------------------- */

.scrollbar {
  display: flex !important;
  flex-wrap: nowrap !important;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.scrollbar {
  cursor: grab;
user-select: none;
scroll-behavior: auto
}

.scrollbar.active {
  cursor: grabbing;
}

.scrollbar::-webkit-scrollbar {
  display: none;
}

/* -----------------CTA-CSS----------------------- */

.site-cta{
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) -4.67%, rgba(0, 0, 0, 0.4) 49.4%, rgba(0, 0, 0, 0.8) 103.47%), url(https://wallinsiders.batterseaconsultant.com/wp-content/uploads/2026/04/cta-bg-img.webp);
        padding: 50px 20px;
        border-radius: var(--rad-md)
      }

/* mediaQuery css start */

@media (width <=1400px) {
  .img-content-container .img-wrap {
    max-width: 420px !important;
  }

  footer .newsletter-wrap {
    max-width: 1190px !important;
  }
}

@media (width <=1024px) {
  .homepage-hero .hero-grid {
    grid-template-columns: auto !important;
  }

  .homepage-hero .hero-grid [class*="head-seprator"] {
    padding: 20px;
  }

  .d-md-none {
    display: none;
  }

  .mt-auto {
    margin-top: 50px !important;
  }

  .process-wrapper .process-strip:after {
    content: unset !important;
  }

  .process-strip .process-icon-box {
    margin-block: 0 !important;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .grid-blog-card {
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: var(--rad-md);
  }

  .form-info{
    margin-block: 50px !important;
  }

  .form-wrapper .form-container {
    margin-top: 30px;
    padding: 20px;
    min-height: auto;
    max-width: 100%;
  }

  footer {
    padding-block: 250px 30px !important;
    margin-top: 100px !important;
  }

  .copyright :is(.container, ul) {
    gap: 15px 20px;
  }

  .tab-bg-wrapper {
    background: #efefefad;
  }

  .tabsCon .flex-tabs {
    gap: 15px;
  }

  .overflow-scroller {
    overflow-x: auto;
    width: 100%;
    padding-bottom: 10px;
    gap: 20px;
  }

  .overflow-scroller .wcu-col {
    white-space: nowrap;
  }

  .page-hero img {
    height: 500px;
  }

  .page-hero .head-seprator-center {
    bottom: 20px !important;
    width: 95%;
  }

  .default-hero {
    padding-block: 20px 30px !important;
  }

  .default-hero .post-summary {
    gap: 10px;
    justify-content: center;
  }

  .post-meta .post-summary .flex-ath {
    font-size: 12px !important;
  }

}

@media (600px <=width <=1024px) {
  header nav>ul {
    max-width: 40%;
  }

  .before-after-slider {
    height: 500px !important;
  }

  footer .newsletter-wrap {
    max-width: 670px !important;
  }
}

@media (width <=600px) {
  header nav>ul {
    max-width: 75%;
  }

  .p-light-bg {
    padding-block: 30px !important;
  }

  .flex-main-icon {
    width: 70px;
    height: 70px;
  }

  .flex-icon-col .card-content p {
    font-size: 13px;
  }

  .flex-grpBtn {
    gap: 10px !important;
  }

  .flex-btn {
    font-size: 14px !important;
    padding: 12px 15px !important;
  }

  .flex-icon-col {
    padding: 15px !important;
  }

  footer .newsletter-wrap {
    padding: 20px !important;
    max-width: 310px !important;
  }

  .before-after-slider {
    height: 350px !important;
  }

  .page-hero .head-seprator-center {
    padding: 15px 12px !important;
  }

  .galleryCollection>.grid-50 {
    grid-template-columns: auto;
  }

  .galleryCollection>.grid-50 .grid-50 {
    grid-template-columns: repeat(4, 1fr);
  }

  .main-img img {
    height: 200px !important;
  }

  .glry-img-card img {
    height: 70px;
  }
	
	.page-hero, 
	.site-cta{
    	padding-block: 25px !important; 
	}
}


      /* ========== Search Overlay (simple smooth fade) ========== */
   .search-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.72);
      -webkit-backdrop-filter: blur(6px);
      backdrop-filter: blur(6px);
      z-index: 999998;

      opacity: 0;
      visibility: hidden;
      transition:
         opacity 0.4s ease,
         visibility 0s linear 0.4s;
   }

   body.search-open .search-overlay {
      opacity: 1;
      visibility: visible;
      transition:
         opacity 0.4s ease,
         visibility 0s linear 0s;
   }

   /* ========== Form wrap (soft fade + slide) ========== */
   .searching-form-wrap {
      position: fixed;
      inset: 0;
      z-index: 999999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;

      pointer-events: none;
      opacity: 0;
      transform: translateY(20px);
      transition:
         opacity 0.4s ease,
         transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
   }

   body.search-open .searching-form-wrap {
      pointer-events: auto;
      opacity: 1;
      transform: none;
      transition-delay: 0.1s;
   }

   /* ========== Close button ========== */
   .search-close {
      position: absolute;
      top: 28px;
      right: 32px;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.25);
      background: rgba(255, 255, 255, 0.06);
      color: #fff;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.25s ease, background 0.3s ease, border-color 0.3s ease;
   }

   .search-close:hover {
      transform: rotate(90deg);
      background: rgba(255, 255, 255, 0.14);
      border-color: rgba(255, 255, 255, 0.5);
   }

   /* ========== Form (pill shape) ========== */
   .searching-form {
      position: relative;
      width: min(640px, 100%);
      display: flex;
      align-items: center;
      padding-right: 20px !important;
      gap: 10px;
      background: #fff;
      border-radius: 999px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
   }

   .searching-form .search-icon {
      color: #a55422;
      flex-shrink: 0;
   }

   .searching-form input {
      flex: 1;
      min-width: 0;
      padding: 20px 0 20px 22px !important;
      border: none !important;
      outline: none;
      background: transparent;
   }



   /* ========== Mobile ========== */
   @media (max-width: 480px) {
      .searching-form input {
         padding: 6px 6px 6px 16px;
      }
      
      .search-close {
         top: 16px;
         right: 16px;
         width: 42px;
         height: 42px;
      }
   }