/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/***
=============================================
Common
=============================================
***/
:root {
  --billdins-font: "Public Sans", sans-serif;
  --billdins-font-two: "Exo", sans-serif;
  --billdins-base: #FF5E14;
  --billdins-base-rgb: 255, 94, 20;
  --billdins-black: #0E121D;
  --billdins-black-rgb: 14, 18, 29;
  --billdins-gray: #4D5765;
  --billdins-gray-rgb: 77, 87, 101;
  --billdins-white: #ffffff;
  --billdins-white-rgb: 255, 255, 255;
  --billdins-gray-bg: #F7F4ED;
  --billdins-gray-bg-rgb: 247, 244, 237;
  --billdins-bdr-radius: 5px;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--billdins-font);
  color: var(--billdins-gray);
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--billdins-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--billdins-font-two);
  color: var(--billdins-black);
  margin: 0;
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
  list-style-type: none;
  padding: 0px;
}


/*=============== scrollbar-Css =============*/
::-webkit-scrollbar-track,
::-webkit-scrollbar-track {
  box-shadow: none;
  -webkit-box-shadow: none;
  background-color: var(--billdins-base);
  border-radius: 10px;
}

::-webkit-scrollbar,
::-webkit-scrollbar {
  width: 8px;
  background-color: var(--billdins-base);
}

::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb {
  border-radius: 0px;
  background-image: linear-gradient(0deg, var(--billdins-base) 0%, var(--billdins-black) 47.60%, var(--billdins-black) 99.23%);
}

.xs-sidebar-widget::-webkit-scrollbar {
  width: 0px;
}




button {
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

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

.list-unstyled {
  padding-left: 0;
}

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

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

/***
=============================================
Custom Cursor
=============================================
***/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--billdins-base);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--billdins-base);
  opacity: .3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width .3s, height .3s, opacity .3s;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 999991;
}

.custom-cursor__hover {
  background-color: var(--billdins-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: .4;
}

/***
=============================================
Sec Title Css
=============================================
***/
.sec-title {
  position: relative;
  display: block;
  margin-top: -5px;
  padding-bottom: 47px;
  z-index: 1;
}

.sec-title__tagline {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 13px;
}

.sec-title.center .sec-title__tagline {
  justify-content: center;
}

.sec-title__tagline .left-line {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--billdins-base);
  margin-right: 15px;
}

.sec-title__tagline .left-line::before {
  position: absolute;
  top: 50%;
  right: 0px;
  width: 5px;
  height: 5px;
  background: var(--billdins-base);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.sec-title__tagline .left-line::after {
  position: absolute;
  top: 50%;
  right: -2px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--billdins-base);
  border-radius: 50%;
  transform: translateY(-50%);
  content: "";
}

.sec-title__tagline .text {
  position: relative;
  display: block;
}

.sec-title__tagline .text h4 {
  color: var(--billdins-base);
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--billdins-font-two);
}

.sec-title__tagline .right-line {
  position: relative;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--billdins-base);
  margin-left: 15px;
}

.sec-title__tagline .right-line::before {
  position: absolute;
  top: 50%;
  left: 0px;
  width: 5px;
  height: 5px;
  background: var(--billdins-base);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.sec-title__tagline .right-line::after {
  position: absolute;
  top: 50%;
  left: -2px;
  width: 10px;
  height: 10px;
  border: 1px solid var(--billdins-base);
  border-radius: 50%;
  transform: translateY(-50%);
  content: "";
}

.sec-title__title {
  font-size: 32px;
  line-height: 48px;
  font-weight: 700;
  text-transform: none;
  font-family: var(--billdins-font-two);
}
.sec-title__title span{
  font-size: 35px;
  text-transform: uppercase;
}
.shape1 .float-bob-y img{
  width:250px;
}
/***
=============================================
   Thm Btn Css
=============================================
***/
.thm-btn {
  position: relative;
  display: inline-block;
  color: var(--billdins-white);
  font-size: 14px;
  line-height: 55px;
  font-weight: 600;
  background: var(--billdins-base);
  border-radius: 5px;
  padding: 0px 35px 0px;
  overflow: hidden;
  font-family: var(--billdins-font);
  text-transform: uppercase;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  z-index: 1;
}

.thm-btn:hover {
  color: var(--billdins-white);
}

.thm-btn i {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  top: 1px;
  margin-left: 5px;
}

.hover-btn {
  background-color: var(--billdins-black);
  height: 100%;
  top: 0;
  opacity: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 25%;
  z-index: -1;
}

.hover-bx {
  left: 0;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
  border-radius: 5px 0px 0px 5px;
}

.hover-bx2 {
  left: 25%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.hover-bx3 {
  left: 50%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}

.hover-bx4 {
  left: 75%;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  border-radius: 0 5px 5px 0;
}

.thm-btn:hover .hover-btn {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}






/*---------------------------------
     Preloader CSS
-----------------------------------*/
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 20000;
  overflow-x: hidden !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader div {
  width: 20px;
  height: 20px;
  margin: 0 10px 0;
  border-radius: 50px;
  transform-origin: 50% 0;
  display: inline-block;
  animation: bouncing 1.4s linear infinite;
}

.loader div:last-child {
  margin: 0;
}

.loader div:nth-child(1) {
  background-color: rgba(var(--billdins-base-rgb), 1.0);
}

.loader div:nth-child(2) {
  background-color: rgba(var(--billdins-base-rgb), 0.70);
  animation-delay: 0.2s;
}

.loader div:nth-child(3) {
  background-color: rgba(var(--billdins-base-rgb), 0.40);
  animation-delay: 0.4s;
}

@keyframes bouncing {

  0%,
  100% {
    transform: translateY(0) scale(1, 1);
    animation-timing-function: ease-in;
  }

  45% {
    transform: translateY(50px) scale(1, 1);
    animation-timing-function: linear;
  }

  50% {
    transform: translateY(50px) scale(1.5, 0.5);
    animation-timing-function: linear;
  }

  55% {
    transform: translateY(50px) scale(1, 1);
    animation-timing-function: ease-out;
  }
}














/***
=============================================
   Rating Box
=============================================
***/
.rating-box {
  position: relative;
  display: block;
}

.rating-box a {
  position: relative;
  color: var(--billdins-base);
}

.rating-box a i::before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
}

/***
=============================================
   Styled Pagination
=============================================
***/
.styled-pagination {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  padding-top: 20px;
}

.styled-pagination li {
  position: relative;
  display: inline-block;
  margin-right: 11px;
}

.styled-pagination li:last-child {
  margin-right: 0;
}

.styled-pagination li a {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  background: transparent;
  border-radius: 0%;
  color: rgba(var(--billdins-gray-rgb), .50);
  font-size: 16px;
  line-height: 40px;
  font-weight: 600;
  border: 1px solid rgba(var(--billdins-gray-rgb), .50);
  text-align: center;
  transition: all 500ms ease;
  font-family: var(--billdins-font);
  z-index: 1;
}

.styled-pagination li:hover a,
.styled-pagination li.active a {
  color: var(--billdins-white);
  background: var(--billdins-base);
  border-color: var(--billdins-base);
}

.styled-pagination li.prev a,
.styled-pagination li.next a {
  border-radius: 0%;
  color: rgba(var(--billdins-gray-rgb), .50);
}

.styled-pagination li.prev a:hover,
.styled-pagination li.next a:hover {
  color: var(--billdins-white);
}

.styled-pagination li a span:before {
  position: relative;
  top: 0px;
  color: rgba(var(--billdins-gray-rgb), .50);
  font-size: 14px;
  font-weight: 700;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.styled-pagination li a:hover span:before,
.styled-pagination li.active a span:before {
  color: var(--billdins-white);
}


/***
=============================================
Scroll To Top Css
=============================================
***/
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}

.scroll-to-top:hover {
  color: var(--billdins-base);
}

.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-left: 10px;
}

.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--billdins-base);
  position: relative;
  overflow: hidden;
}

.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--billdins-black);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}

/***
=============================================
Search Popup Css
=============================================
***/
.search-popup {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100vw;
  height: 400px;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  visibility: hidden;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  transition: all 0.2s;
}

.search-popup.active {
  visibility: visible;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--billdins-black);
  opacity: 0.90;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--billdins-base);
  border: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn::after {
  background-color: var(--billdins-black);
  border-radius: 0;
}

.search-popup__content .thm-btn::before {
  background-color: var(--billdins-black);
  border-radius: 0;
}

.search-popup__content .thm-btn i {
  height: auto;
  width: auto;
  background-color: transparent;
  border-radius: 50%;
  color: var(--billdins-white);
  font-size: 22px;
  line-height: inherit;
  text-align: center;
  top: 0;
  margin-right: 0;
  padding-left: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn:hover i {
  color: var(--billdins-white);
}



.search-popup__close-btn {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0px;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  background-color: var(--billdins-base);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--billdins-black);
  font-size: 24px;
  z-index: -1;
}



/***
=============================================
Mobile Nav Css
=============================================
***/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: whitesmoke;
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color:#ff7300;
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: 0.5em;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a>.main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color:#ff7300;
  font-size: 14px;
  font-family: var(--billdins-font, "Rubik", sans-serif);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--billdins-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--billdins-base);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--billdins-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--billdins-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--billdins-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--billdins-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--billdins-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--billdins-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ff7300;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--billdins-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--billdins-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-right: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}


/***
=============================================
Home Showcase Css
=============================================
***/
.home-showcase {
  margin-top: -31px;
  margin-bottom: -31px;
}

.home-showcase__inner {
  padding: 40px 42px 30px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
}

.home-showcase__item {
  position: relative;
  display: block;
  margin-bottom: 7px;
}

.home-showcase__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--billdins-bdr-radius);
}

.home-showcase__image>img {
  width: 100%;
  border-radius: var(--billdins-bdr-radius);
  transition: filter 500ms ease;
  filter: blur(0px);
}

.home-showcase__image:hover>img {
  filter: blur(2px);
}

.home-showcase__image:hover .home-showcase__buttons {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: top center;
}

.home-showcase__buttons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  transform: scale(1, 0);
  transition: transform 500ms ease, opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0;
  background-color: rgba(var(--billdins-black-rgb), .70);
  border-radius: var(--billdins-bdr-radius);
}

.home-showcase__buttons__item {
  padding: 0px 17px 0px;
  width: 150px;
  text-align: center;
  color: var(--billdins-white);
  background-color: var(--billdins-base);
}

.home-showcase__buttons__item+.home-showcase__buttons__item {
  margin-top: 10px;
}

.home-showcase__title {
  margin: 0;
  text-align: center;
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  color: var(--billdins-black);
  margin-top: 18px;
  text-transform: capitalize;
  font-family: var(--billdins-font);
}

.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: rgba(0, 0, 0, 0);
}

.mobile-nav__wrapper .home-showcase__title {
  color: var(--billdins-white, #ffffff);
}


/***
=============================================
Main Header One Css
=============================================
***/
.main-header-one {
  position: relative;
  display: block;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header-one__top {
  position: relative;
  display: block;
  background-color: var(--billdins-black);
  z-index: 99;
}

.main-header-one__top::before {
  position: absolute;
  top: 0;
  left: 55%;
  bottom: 0;
  right: 0px;
  border-top: 42px solid var(--billdins-base);
  border-left: 23px solid transparent;
  content: "";
  z-index: -1;
}

.main-header-one__top .container {
  max-width: 1590px;
  width: 100%;
}

.main-header-one__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 8px 0px;
}

.header-style1__contact {
  position: relative;
  display: flex;
  align-items: center;
}

.header-style1__contact li {
  position: relative;
  display: flex;
  align-items: center;
}

.header-style1__contact li+li {
  margin-left: 45px;
}

.header-style1__contact li:before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 5px;
  left: -23px;
  width: 1px;
  background-color: rgba(var(--billdins-white-rgb), .60);
}

.header-style1__contact li:first-child:before {
  display: none;
}

.header-style1__contact li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.header-style1__contact li .icon i {
  position: relative;
  display: inline-block;
  color: var(--billdins-base);
  font-size: 16px;
  line-height: 16px;
}

.header-style1__contact li .text {
  margin-left: 10px;
}

.header-style1__contact li .text p {
  color: var(--billdins-white);
  font-size: 15px;
  line-height: 25px;
}

.header-style1__contact li .text p a {
  color: var(--billdins-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.header-style1__contact li .text p a:hover {
  color: var(--billdins-base);
}

.main-header-one__top-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-header__language-switcher {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 23px;
}

.main-header__language-switcher .icon {
  position: relative;
  display: block;
  margin-right: 10px;
}

.main-header__language-switcher .icon span {
  position: relative;
  display: inline-block;
  color: var(--billdins-white);
  font-size: 16px;
  line-height: 16px;
  top: 2px;
}

.main-header__language-switcher .language-switcher {
  position: relative;
  display: block;
}

.main-header__language-switcher .language-switcher form {
  position: relative;
  display: block;
  width: 65px;
}

.main-header__language-switcher .language-switcher form .select-box {
  position: relative;
  display: block;
}

.main-header__language-switcher .nice-select {
  background-color: var(--billdins-base);
  border-radius: 0px;
  color: var(--billdins-white);
  font-size: 15px;
  font-weight: 400;
  height: 25px;
  line-height: 25px;
  outline: none;
  padding-left: 0px;
  padding-right: 0px;
  width: 100%;
  font-family: var(--billdins-font);
}

.main-header__language-switcher .nice-select:after {
  right: 0px;
  margin-top: -5px;
  border-bottom: 1px solid var(--billdins-white);
  border-right: 1px solid var(--billdins-white);
}

.main-header__language-switcher .nice-select .list {
  width: 115px;
  background-color: var(--billdins-base);
}

.header-style1__social-links {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 0;
  padding-left: 20px;
}

.header-style1__social-links::before {
  position: absolute;
  top: -1px;
  left: 0;
  bottom: -2px;
  width: 1px;
  background-color: rgba(var(--billdins-white-rgb), .60);
  content: "";
}

.header-style1__social-links a {
  position: relative;
  display: inline-block;
  color: var(--billdins-white);
}

.header-style1__social-links a i::before {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
}

.header-style1__social-links a:hover {
  color: var(--billdins-black);
}

.header-style1__social-links a+a {
  margin-left: 20px;
}

.main-header-one__bottom {
  position: relative;
  display: block;
  background: var(--billdins-gray-bg);
  z-index: 2;
}

.main-header-one__bottom .container {
  max-width: 1590px;
  width: 100%;
}

.main-menu {
  position: relative;
  display: block;
}

.main-menu__wrapper {
  position: relative;
  display: block;
}

.main-menu__wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.main-header-one__bottom-left {
  position: relative;
  display: block;
}

.logo-one {
  position: relative;
  display: block;
}

.logo-one a {
  position: relative;
  display: block;
}

.logo-one a img {
  width: 100%;
}

.main-header-one__bottom-middle {
  display: block;
}

.main-menu__main-menu-box {
  display: block;
}

.main-header-one__bottom-right {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.header-search-box {
  position: relative;
  display: block;
}

.main-menu__search {
  position: relative;
  display: block;
  color: var(--billdins-black);
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search:hover {
  color: var(--billdins-base);
}

.main-header__shop {
  position: relative;
  display: block;
  margin-left: 18px;
}

.main-header__shop .icon-box {
  position: relative;
  display: block;
}

.main-header__shop .icon-box a {
  position: relative;
  display: inline-block;
  color: var(--billdins-black);
}

.main-header__shop .icon-box a:hover {
  color: var(--billdins-base);
}

.main-header__shop .icon-box a i::before {
  position: relative;
  display: inline-block;
  font-size: 21px;
  line-height: 21px;
  font-weight: 700;
}

.main-header__shop .icon-box .count {
  position: absolute;
  top: -2px;
  right: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  background: var(--billdins-base);
  border-radius: 50%;
}

.main-header__shop .icon-box .count span {
  position: relative;
  color: var(--billdins-white);
  font-size: 12px;
  font-weight: 500;
  top: -1px;
}

.main-header__btn {
  position: relative;
  display: block;
  margin-left: 43px;
  line-height: 0px;
}

.stricky-header.main-menu .main-header-one__bottom-right {
  display: none;
}

.stricky-header.main-menu {
  background-color: var(--billdins-gray-bg);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}

@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap:20px;
  }
}
@media (min-width: 1200px) {


  .main-menu .main-menu__list > li,
  .stricky-header .main-menu__list > li {
    margin-right: 0 !important;
  }
} 
.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  padding-top: 15px;
  padding-bottom: 13px;
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 20px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  color: var(--billdins-black);
  font-size: 16px;
  line-height: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--billdins-font-two);
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
  color: var(--billdins-base);
}

.main-menu .main-menu__list>li.dropdown>a {
  padding-right: 15px;
}

.main-menu .main-menu__list>li.dropdown>a:after {
  position: absolute;
  top: 49%;
  right: 0;
  font-family: 'icomoon' !important;
  content: "\e90d";
  font-size: 10px;
  color: var(--billdins-black);
  transform: translateY(-50%);
  font-weight: 700;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a::after,
.main-menu .main-menu__list>li:hover>a::after,
.stricky-header .main-menu__list>li.current>a::after,
.stricky-header .main-menu__list>li:hover>a::after {
  color: var(--billdins-base);
}

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 270px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  z-index: 99;
  background-color: rgb(255, 255, 255);
  padding: 31px 20px 31px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.shadow-box {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: none;
  margin-top: 10px;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  font-size: 16px;
  line-height: 16px;
  color: var(--billdins-gray);
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 12px 20px 12px;
  -webkit-transition: 500ms;
  transition: 500ms;
  background-color: var(--billdins-white);
  border-radius: var(--billdins-bdr-radius);
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  background-color: var(--billdins-extra-two);
  color: var(--billdins-black);
}

.main-menu .main-menu__list>li>ul>li>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li>a::before {
  position: absolute;
  top: 50%;
  right: 20px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f105";
  font-size: 14px;
  color: var(--billdins-base);
  transform: translateY(-50%) scale(0);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a::before {
  transform: translateY(-50%) scale(1);
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu-four__main-menu-box .main-menu__list>.megamenu,
.main-menu-three__main-menu-box .main-menu__list>.megamenu,
.main-menu-two__main-menu-box .main-menu__list>.megamenu,
.main-menu__wrapper .main-menu__list>.megamenu {
  position: static;
}

.main-menu-four__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu__wrapper .main-menu__list>.megamenu>ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
}

.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu__wrapper .main-menu__list>.megamenu>ul>li {
  padding: 0 !important;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--billdins-base);
  cursor: pointer;
}

.mobile-nav__buttons a+a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--billdins-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--billdins-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--billdins-black);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/***
=============================================
Main Header Two Css
=============================================
***/
.main-header-one.style2 {
  position: relative;
  display: block;
}

.main-header-one.style2 .main-header-one__top {
  background-color: var(--billdins-base);
}

.main-header-one.style2 .main-header-one__top::before {
  display: none;
}

.main-header-one.style2 .main-header-one__top-inner::before {
  position: absolute;
  top: 0px;
  left: -50px;
  right: -9999px;
  border-top: 42px solid var(--billdins-black);
  border-left: 23px solid transparent;
  content: "";
}

.main-header-one.style2 .main-header-one__top .container {
  max-width: 1550px;
  width: 100%;
}

.main-header-one.style2 .header-style1__social-links a:hover {
  color: var(--billdins-base);
}

.main-header-one.style2 .main-header__language-switcher .nice-select {
  background-color: transparent;
}

.main-header-one.style2 .main-header-one__bottom {
  background: var(--billdins-white);
}

.main-header-one.style2 .main-header-one__bottom .container {
  max-width: 1550px;
  width: 100%;
}

.main-header-one.style2 .logo-one {
  position: relative;
  display: block;
  padding-right: 90px;
  z-index: 1;
}

.main-header-one.style2 .logo-one::before {
  position: absolute;
  top: -19px;
  left: -99999px;
  right: 0px;
  border-bottom: 93px solid var(--billdins-base);
  border-right: 35px solid transparent;
  content: "";
  z-index: -1;
}


.stricky-header.stricky-header--two {
  background: var(--billdins-base);
}

.stricky-header.stricky-header--two .main-menu__list>li>a {
  color: var(--billdins-white);
}

.stricky-header.stricky-header--two .main-menu__list>li>a::after {
  color: var(--billdins-white);
}

/* newcode */

.highlight-keyword {
    color: #ff7300 !important;
    font-weight: bold;
}

.custom-service-highlight {
    color: #7c2d12 !important;
    font-weight: bold;
    display: block;
    margin-top: 15px;
}

/* core strength */

:root {
    --ux-brand-orange: #FF5E14;
    --ux-text-dark: #1c1c1c;
    --ux-text-muted: #666666;
    --ux-premium-brown: #7c2d12;
    --ux-light-bg: #fdfcfb;
    --ux-card-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    --ux-transition-smooth: cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ux-core-strengths-section {
    padding: 40px 0;
    background-color: var(--ux-light-bg);
    overflow: hidden;
    position: relative;
}

.ux-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Header Styling */
.ux-sec-title-wrapper {
    text-align: center;
    margin-bottom: 65px;
}

.ux-tagline-box {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.ux-line-left, .ux-line-right {
    width: 40px;
    height: 1px;
    background-color: var(--ux-brand-orange);
}

.ux-tagline-text {
    color: var(--ux-brand-orange);
    font-size: 16px;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
}

.ux-main-heading {
    font-size: 42px;
    font-weight: 700;
    color: var(--ux-text-dark);
    margin: 0;
    line-height: 1.3;
}

/* Asymmetrical Animated Grid Layout */
.ux-strengths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Individual Premium Card Layout */
.ux-strength-card-wrapper {
    perspective: 1000px;
}

.ux-strength-card {
    background: #ffffff;
    padding: 45px 40px;
    position: relative;
    border-radius: 8px;
    box-shadow: var(--ux-card-shadow);
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1;
    transform: translateZ(0);
    transition: transform 0.5s var(--ux-transition-smooth), box-shadow 0.5s var(--ux-transition-smooth);
}

/* Border Accent Colors */
.ux-border-accent-1 { border-left: 5px solid #d97706; }
.ux-border-accent-2 { border-left: 5px solid #451a03; }

/* Dynamic Background Glow Effect on Hover */
.ux-card-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,94,20,0.03) 0%, rgba(124,45,18,0.06) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s var(--ux-transition-smooth);
}

.ux-card-content {
    position: relative;
    z-index: 2;
}

.ux-card-title {
    color: var(--ux-premium-brown);
    font-size: 21px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.4;
    transition: color 0.4s ease;
}

.ux-card-desc {
    color: var(--ux-text-muted);
    font-size: 18px;
    line-height: 1.75;
    margin: 0;
}

/* Premium Dynamic Interactive Animations */
.ux-strength-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 25px 50px rgba(124, 45, 18, 0.08);
}

.ux-strength-card:hover .ux-card-bg-overlay {
    opacity: 1;
}

.ux-strength-card:hover .ux-card-title {
    color: var(--ux-brand-orange);
}

/* Full Responsive Management */
@media (max-width: 991px) {
    .ux-strengths-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .ux-main-heading {
        font-size: 32px;
    }
    .ux-strength-card {
        padding: 35px 30px;
    }
}
/* packages */


    /* ================= GLOBAL STYLES ================= */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background-color: #fcfcfc;
      color: #333333;
      /* padding: 40px 0; */
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* ================= HEADER SECTION ================= */
    .hcp-title {
      font-size: 36px;
      font-weight: 700;
      color: white; /* Deep premium brown accent */
      text-align: center;
      margin-bottom: 20px;
    }

    .hcp-sub {
      max-width: 1000px;
      margin: 0 auto 50px auto;
      font-size: 18px;
      line-height: 1.6;
      color: white;
      text-align: center;
    }

    .keyword-highlight {
      color: #ff7300;
      font-weight: 600;
    }

    /* ================= GRID & CARDS LAYOUT ================= */
    .hcp-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      align-items: start;
    }

    /* Responsive grid overrides */
    @media (max-width: 1200px) {
      .hcp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }
    }
    @media (max-width: 650px) {
      .hcp-grid {
        grid-template-columns: 1fr;
      }
    }

    .hcp-card {
      background: #ffffff;
      border: 1px solid #eef2f5;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
      overflow: hidden;
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    /* Highlight style matching the orange boundary frame for Favourite package */
    .hcp-card.highlighted {
      border: 2px solid #e27d18;
      box-shadow: 0 15px 40px rgba(226, 125, 24, 0.1);
    }

    /* ================= CORNER MOST POPULAR BADGE ================= */
    .badge-ribbon {
      position: absolute;
      top: 24px;
      right: -33px;
      background: #e27d18;
      color: #ffffff;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding: 6px 40px;
      transform: rotate(45deg);
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      z-index: 10;
    }

    /* ================= CARD HEADER STYLING ================= */
    .hcp-card-header {
      padding: 35px 20px 25px 20px;
      text-align: center;
      border-bottom: 1px dashed #d1dbdf;
    }

    .hcp-card-header h3 {
      font-size: 22px;
      font-weight: 600;
      color: #612306;
      margin-bottom: 12px;
    }

    .hcp-desc {
      font-size: 14px;
      color: black;
      margin-bottom: 15px;
      min-height: 20px; /* Aligns description text areas uniformly */
    }

    .hcp-calc {
      display: inline-block;
      background: #fffdf2;
      border: 1px dashed #ffd580;
      color: #e27d18;
      font-size: 15px;
      font-weight: 600;
      padding: 4px 20px;
      border-radius: 20px;
      margin-bottom: 20px;
      text-decoration: line-through;
    }

    .hcp-price {
      font-size: 20px;
      font-weight: 700;
      color: #612306;
    }

    .hcp-price span {
      font-size: 14px;
      color: #888888;
      font-weight: 400;
    }

    /* ================= ACCORDION HEADINGS STYLING ================= */
    .hcp-accordion {
      padding: 10px 0;
    }

    .hcp-item {
      border-bottom: 1px solid #f2f5f7;
    }

    .hcp-item:last-child {
      border-bottom: none;
    }

    .hcp-head {
      width: 100%;
      background: none;
      border: none;
      outline: none;
      padding: 16px 24px;
      text-align: left;
      font-size: 17px;
      font-weight: 600;
      color: #1a2b36;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: background 0.2s ease;
    }

    /* Box Border outline design wrapper targeting the focused menu example in reference image */
    .hcp-card.highlighted .hcp-item:first-child .hcp-head {
      border: 2px solid #111111;
      margin: 10px;
      width: calc(100% - 20px);
      border-radius: 4px;
      padding: 14px 18px;
    }

    .hcp-head span {
      color: #e27d18;
      font-size: 18px;
      font-weight: 500;
    }

    /* Hidden spec body contents container by default */
    .hcp-body {
      display: none;
      background: #fafbfc;
      padding: 15px 24px;
    }

    .hcp-body ul {
      list-style: none;
    }

    .hcp-body ul li {
      font-size: 15px;
      color: #555555;
      margin-bottom: 10px;
      position: relative;
      padding-left: 15px;
      line-height: 1.5;
    }

    .hcp-body ul li::before {
      content: "•";
      color: #e27d18;
      font-weight: bold;
      position: absolute;
      left: 0;
      top: 0;
    }

    .hcp-body ul li:last-child {
      margin-bottom: 0;
    }

    /* ================= CALL TO ACTION BUTTONS ================= */
    .hcp-cta {
      padding: 25px 20px;
      text-align: center;
      margin-top: auto; /* Pushes button systematically to footer */
    }

    .hcp-btn {
      display: block;
      /* width: 100%; */
      background: #8b3d1b;
      color: #ffffff;
      text-decoration: none;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.5px;
      padding: 14px 10px;
      border-radius: 6px;
      transition: background 0.2s ease;
    }

    .hcp-btn:hover {
      background: #612306;
      color: white;
    }

    /* logo ima */
    /* ==========================================================================
   Header Logo & Navigation Layout
   ========================================================================== */

/* Logo Container Layout */
.logo-one {
    display: inline-block;
    vertical-align: middle;
    padding: 10px 0; /* Adds crisp spacing above and below the logo */
}

/* Precise Logo Image Control */
.logo-one a img {
    display: block;
    width: 180px;         /* Default premium desktop width */
    height: auto;         /* Maintains the exact original aspect ratio */
    max-width: 100%;      /* Safety guard for layout fluidly */
    object-fit: contain;  /* Prevents any stretching or distortion */
    transition: all 0.3s ease-in-out; /* Smooth transition effect */
}

/* Header Bottom Flex Alignments */
.main-menu__wrapper-inner {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

/* ==========================================================================
   Responsive Breakpoints (Mobile and Tablet Media Queries)
   ========================================================================== */

/* Tablet Optimization (Max-width: 991px) */
@media (max-width: 991px) {
    .logo-one a img {
        width: 150px; /* Slightly scaled down for tablet headers */
    }
}

/* Mobile Optimization (Max-width: 575px) */
@media (max-width: 575px) {
    .logo-one a img {
        width: 130px; /* Perfectly sized for compact mobile views */
    }
}

/* banner */
/* ==========================================================================
   Main Slider Banner Height Control
   ========================================================================== */

/* Main Section Wrapper */
.main-slider-one {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Base Slider Container & Individual Slides */
.main-slider-one .main-slider__carousel,
.main-slider-one__single {
    position: relative;
    height: 860px; /* Standard premium desktop banner height */
    width: 100%;
    padding-bottom: 20px;
}
.shape1 .float-bob-y img{width: 250px;}
/* Background Image Adjustments to prevent stretching */
.main-slider-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; /* Keeps image sharp and un-distorted */
    height: 98%;
    width: 100%;
    margin-bottom: 20px;
}

/* Vertically Align Content inside the Slide */
.main-slider-one .container {
    height: 100%;
    display: flex;
    align-items: center; /* Centers text/buttons vertically */
}

.main-slider-one__content {
    position: relative;
    width: 100%;
    z-index: 5;
}
.site-footer__copyright p{font-size: 18px;}

/* ==========================================================================
   Mobile & Tablet View Custom Banner Settings
   ========================================================================== */

/* Tablet Screen Optimization (1024px and below) */
@media only screen and (max-width: 1024px) {
    /* .main-slider-one {
        height: 100vh !important;
    } */

    .main-slider-one .main-slider__carousel,
    .main-slider-one__single {
        height: 60vh !important;
        /* min-height: 680px !important; */
    }

    .slider-responsive-bg {
        background-position: center center !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
    }
}

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

    .slider-responsive-bg {
        /* SWAPS SEPARATE IMAGE FOR MOBILE VIEW */
        background-image: url('../images/Allimages/mobile-landingpage.jpeg') !important;
        
        background-position: center center !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        height:100vh !important;
        margin-top: 10px;
    }

    /* Clear floating asset shapes to ensure clean look over mobile image */
    .shape1, .shape2 {
        display: none !important;
    }
      .main-slider-one .main-slider__carousel,
    .main-slider-one__single {
        /* height: 60vh !important; */
        min-height: 680px !important;
    }
}
/* projects */

/* our projects */
/* --- Reset & Base Layout Setup --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: #ffffff;
            /* padding: 30px 0; */
            overflow-x: hidden;
        }

        /* --- Slider Main Container Outer Viewport --- */
        .arc-slider-viewport {
            width: 100%;
            max-width: 1440px;
            margin: 0 auto;
            padding: 10px 20px;
            overflow-x: auto;
            display: flex;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            
            /* Hide Scrollbars completely across all browsers */
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE/Edge */
        }

        /* Hide Scrollbar for Chrome, Safari, Opera */
        .arc-slider-viewport::-webkit-scrollbar {
            display: none;
            width: 0 !important;
            height: 0 !important;
        }

        /* --- Individual Project Container (1 Complete Person Block) --- */
        .arc-project-slide {
            flex: 0 0 100%;
            width: 100%;
            scroll-snap-align: start;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        /* --- Main Layout Grid System --- */
        .arc-grid-container {
            display: grid;
            grid-template-columns: 1.25fr 1fr;
            gap: 16px;
            width: 100%;
        }

        /* Common image box rules */
        .arc-grid-box {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            background-color: #f5f5f5;
            width: 100%;
        }

        .arc-grid-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Left Side: Big Living Room Feature */
        .arc-grid-left-feature {
            height: 100%;
            min-height: 520px;
        }

        /* Premium Price Tag Badge */
        .arc-grid-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background-color: rgba(0, 0, 0, 0.75);
            color: #ffffff;
            padding: 6px 14px;
            font-size: 0.75rem;
            font-family: 'Segoe UI', sans-serif;
            font-weight: 600;
            border-radius: 4px;
            letter-spacing: 0.5px;
            z-index: 2;
        }

        /* Right Side: 2x2 Sub Grid Setup */
        .arc-grid-right-subgrid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 1fr);
            gap: 16px;
        }

        /* Forces right grid elements to take uniform aspect ratios */
        .arc-grid-right-subgrid .arc-grid-box {
            aspect-ratio: 4 / 3;
        }

        /* --- Footer Info Details Block --- */
        .arc-project-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 5px 10px;
            font-family: 'Segoe UI', sans-serif;
        }

        .arc-meta-details h3 {
            font-size: 1.25rem;
            color: #0b2240;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .arc-meta-details p {
            font-size: 0.85rem;
            color: #666;
        }

        /* Consultation Button Action Link */
        .arc-consult-btn {
            background-color: #4caf50;
            color: white;
            padding: 12px 26px;
            font-size: 0.9rem;
            font-weight: 600;
            border: none;
            border-radius: 25px;
            cursor: pointer;
            transition: background 0.3s ease;
            text-decoration: none;
        }

        .arc-consult-btn:hover {
            background-color: #43a047;
        }


        /* ==========================================================================
           RESPONSIVE BREAKPOINTS (Tablet View)
           ========================================================================== */
        @media (max-width: 992px) {
            .arc-grid-container {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .arc-grid-left-feature {
                min-height: auto;
                aspect-ratio: 16 / 9;
            }
        }

        /* ==========================================================================
           RESPONSIVE BREAKPOINTS (Mobile Phone View)
           ========================================================================== */
        @media (max-width: 576px) {
            .arc-grid-container {
                gap: 12px;
            }

            .arc-grid-right-subgrid {
                grid-template-columns: 1fr; /* Stacks right side photos into single column layout */
                gap: 12px;
            }

            .arc-grid-left-feature {
                aspect-ratio: 4 / 3;
            }

            .arc-project-footer {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .arc-consult-btn {
                width: 100%;
                text-align: center;
                padding: 14px;
            }
        }
/* gallery */

/* gallery */


/* SECTION */
.arcmen-wrap{
  width:100%;
  padding:30px 0;
}

/* SWIPER */
.swiper{
  width:100%;
  overflow:visible;
}

/* SLIDE */
.swiper-slide{
  width:360px;
  height:460px;
  display:flex;
  justify-content:center;
  align-items:center;
  transition:0.5s;
}

/* CARD */
.arc-card{
  width:100%;
  height:350px;
  border-radius:25px;
  overflow:hidden;
  box-shadow:0 35px 70px rgba(0,0,0,0.25);
  cursor:pointer;
}

.arc-card img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* DESKTOP SCALE */
@media (min-width:1024px){
  .swiper-slide-active{
    transform:scale(1.15);
    z-index:10;
  }
}

/* NAV */
.arc-nav{
  text-align:center;
  margin-top:30px;
}

.arc-btn{
  display:inline-block;
  margin:10px;
  width:50px;
  height:50px;
  line-height:50px;
  border-radius:50%;
  border:1px solid #000;
  cursor:pointer;
}

.arc-btn:hover{
  background:#000;
  color:#fff;
}

/* POPUP */
.arc-popup{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.85);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999;
}

.arc-popup img{
  width:90%;
  max-width:450px;
  border-radius:10px;
}

.arc-close{
  position:absolute;
  top:150px;
  right:50px;
  color:#fff;
  font-size:30px;
  cursor:pointer;
}

.arc-popup-nav{
  position:absolute;
  top:50%;
  width:100%;
  display:flex;
  justify-content:space-between;
  color:#fff;
  font-size:40px;
  padding:0 20px;
}

/* 📱 MOBILE + TABLET FIX */
@media (max-width:1023px){

  .swiper{
    overflow:hidden !important;
    height:300px !important;
  }

  .swiper-slide{
    width:100% !important;
    height:300px;
  }

  .arc-card{
    height:300px !important;
    padding: 10px;
  }

  .swiper-slide-active{
    transform:none !important;
  }
}
/* how we process */

        :root {
            --brand-orange: #ff7300;
            --brand-brown: #612306;
            --light-bg: #fdfcfb;
            --card-bg: rgba(255, 255, 255, 0.9);
            --shadow-premium: 0 12px 35px rgba(97, 35, 6, 0.06);
            --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

      

        /* Unique Process Section Container */
        .u-process-section {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            margin-bottom: 30px;
        }

        .u-process-title {
            font-size: 2.5rem;
            font-family: 'Georgia', serif;
            color: var(--brand-brown);
            margin-bottom: 50px;
            position: relative;
            letter-spacing: 1px;
            font-weight: 700;
        }

        .u-process-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--brand-orange);
            margin: 15px auto 0;
            border-radius: 2px;
        }

        /* Premium Timeline Grid */
        .u-process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
            padding: 20px 10px;
        }

        /* Unique Step Card */
        .u-process-card {
            background: var(--card-bg);
            border: 1px solid rgba(97, 35, 6, 0.1);
            border-radius: 16px;
            padding: 35px 25px;
            position: relative;
            box-shadow: var(--shadow-premium);
            transition: var(--transition-smooth);
            backdrop-filter: blur(10px);
            z-index: 2;
        }

        /* Floating Number Badge */
        .u-process-badge {
            position: absolute;
            top: -15px;
            right: 25px;
            background: var(--brand-brown);
            color: #fff;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            font-weight: bold;
            border: 2px solid var(--light-bg);
            box-shadow: 0 4px 10px rgba(97, 35, 6, 0.2);
            transition: var(--transition-smooth);
        }

        /* Premium Icon Container */
        .u-process-icon-wrapper {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            border: 2px dashed var(--brand-orange);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: var(--transition-smooth);
            background: transparent;
        }

        .u-process-icon-wrapper i {
            font-size: 1.8rem;
            color: var(--brand-brown);
            transition: var(--transition-smooth);
        }

        /* Step Typography */
        .u-process-name {
            font-size: 1.05rem;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 1.2px;
            color: var(--brand-brown);
            margin: 0;
            line-height: 1.4;
        }

        /* Premium Hover Effects */
        .u-process-card:hover {
            transform: translateY(-10px);
            border-color: var(--brand-orange);
            box-shadow: 0 20px 40px rgba(255, 115, 0, 0.15);
            background: #ffffff;
        }

        .u-process-card:hover .u-process-icon-wrapper {
            background: var(--brand-orange);
            border-style: solid;
            transform: rotate(360deg);
        }

        .u-process-card:hover .u-process-icon-wrapper i {
            color: #fff;
        }

        .u-process-card:hover .u-process-badge {
            background: var(--brand-orange);
            transform: scale(1.1);
        }

        /* --- RESPONSIVE MEDIA QUERIES --- */
        
        /* Tablets (2 columns) */
        @media (max-width: 992px) {
            .u-process-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px 25px;
            }
            .u-process-title {
                font-size: 2.2rem;
            }
        }

        /* Mobile Devices (Vertical Layout) */
        @media (max-width: 600px) {
            /* body {
                padding: 40px 15px;
            } */
            .u-process-title {
                font-size: 1.8rem;
                margin-bottom: 20px;
            }
            .u-process-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                padding: 20px !important;
            }
            
            .u-process-card {
                display: flex;
                align-items: center;
                text-align: left;
                padding: 20px 25px;
            }
            .u-process-icon-wrapper {
                margin: 0 20px 0 0;
                min-width: 65px;
                width: 65px;
                height: 65px;
            }
            .u-process-icon-wrapper i {
                font-size: 1.5rem;
            }
            .u-process-badge {
                top: 50%;
                right: auto;
                left: -12px;
                transform: translateY(-50%);
            }
            .u-process-card:hover .u-process-badge {
                transform: translateY(-50%) scale(1.1);
            }
        }
    .highlight-keyword {
    white-space: nowrap !important;
    display: inline-block !important; /* Forces the browser to treat the phrase as a single block */
}

/* popup */


.am-prm-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-color: rgba(0, 0, 0, 0.65) !important;
    backdrop-filter: blur(5px) !important;
    z-index: 999999 !important; /* Forces layout depth stay on top */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease-in-out !important;
    padding: 20px;
}

.am-prm-overlay.am-active {
    opacity: 1 !important;
    pointer-events: auto !important;
}

.am-prm-card {
    position: relative !important;
    background: #ffffff !important;
    width: 100% !important;
    max-width: 820px !important;
    border-radius: 16px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4) !important;
    display: grid !important;
    grid-template-columns: 1.1fr 0.9fr !important;
    overflow: hidden !important;
    transform: scale(0.9) !important;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.am-prm-overlay.am-active .am-prm-card {
    transform: scale(1) !important;
}

.am-prm-close-btn {
    position: absolute !important;
    top: 15px !important;
    right: 20px !important;
    background: transparent !important;
    border: none !important;
    font-size: 32px !important;
    color: #444444 !important;
    cursor: pointer !important;
    z-index: 10 !important;
    line-height: 1 !important;
    transition: color 0.2s !important;
}

.am-prm-close-btn:hover {
    color: #ff5e14 !important; /* Luxury brand theme color highlight */
}

/* Luxury Card Info Styling Panels */
.am-prm-brand-side {
    padding: 45px !important;
    color: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #ff7300 0%, #c2410c 50%, #7c2d12 100%) !important;
}

.am-prm-badge {
    align-self: flex-start !important;
    background: white !important;
    color: #ff7300 !important;
    padding: 6px 14px !important;
    border-radius: 50px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 20px !important;
}

.am-prm-brand-side h3 {
    font-size: 28px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin: 0 0 15px 0 !important;
    color: #ffffff !important;
}

.am-prm-brand-side p {
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: white !important;
    margin: 0 0 35px 0 !important;
}

.am-prm-feature-stack {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
}

.am-prm-feat-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    font-size: 16px !important;
    color: white !important;
}

.am-prm-feat-item i {
    color: white !important;
    font-size: 16px !important;
    width: 20px !important;
    text-align: center !important;
}

/* User Form Submission Elements block styling */
.am-prm-form-side {
    padding: 45px !important;
    background: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.am-prm-field-group {
    margin-bottom: 18px !important;
    text-align: left !important;
    position: relative !important;
}

.am-prm-field-group label {
    display: block !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #333333 !important;
    margin-bottom: 6px !important;
}

.am-prm-field-group input,
.am-prm-field-group select {
    width: 100% !important;
    padding: 12px 14px !important;
    border: 1px solid #dcdcdc !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    color: #333333 !important;
    background-color: #fafafa !important;
    outline: none !important;
    transition: all 0.25s ease !important;
}

/* Native field status indicators */
.am-prm-field-group input:focus,
.am-prm-field-group select:focus {
    border-color: #ff5e14 !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(255, 94, 20, 0.12) !important;
}

.am-prm-field-group.am-invalid input,
.am-prm-field-group.am-invalid select {
    border-color: #dc3545 !important;
    background-color: #fffdfd !important;
}

/* Real-Time Form Field Validation Text Message Styles */
.am-prm-err-lbl {
    display: none;
    font-size: 11px !important;
    color: #dc3545 !important;
    font-weight: 500 !important;
    margin-top: 4px !important;
}

.am-prm-field-group.am-invalid .am-prm-err-lbl {
    display: block !important;
}

.am-prm-submit-btn {
    width: 100% !important;
    background: #ff5e14 !important;
    color: #ffffff !important;
    border: none !important;
    padding: 14px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
    margin-top: 8px !important;
}

.am-prm-submit-btn:hover {
    background: #e04f0f !important;
}

.am-prm-submit-btn:disabled {
    background: #cccccc !important;
    cursor: not-allowed !important;
}

/* Notification Status Banner Elements styling */
.am-prm-status-banner {
    margin-top: 15px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-align: center !important;
    display: none;
    padding: 8px !important;
    border-radius: 6px !important;
}

.am-prm-status-banner.success {
    display: block !important;
    color: #155724 !important;
    background-color: #d4edda !important;
    border: 1px solid #c3e6cb !important;
}

.am-prm-status-banner.error {
    display: block !important;
    color: #721c24 !important;
    background-color: #f8d7da !important;
    border: 1px solid #f5c6cb !important;
}

/* Device Adaptation Breaks */
@media only screen and (max-width: 768px) {
    .am-prm-card {
        grid-template-columns: 1fr !important;
    }
    .am-prm-brand-side {
        display: none !important; /* Closes out information graphic blocks on narrow devices */
    }
    .am-prm-form-side {
        padding: 35px 20px !important;
    }
}
/* footer */
/* ==========================================================================
   Footer Social Icon Circle Styles
   ========================================================================== */
.footer-widget__social {
    display: flex !important;
    gap: 12px !important; /* Spaces the circles evenly */
    align-items: center !important;
}

.am-footer-social-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;       /* Size of the circle */
    height: 42px !important;      /* Size of the circle */
    background-color: #ff7300 !important; /* Your exact theme color */
    color: #ffffff !important;    /* Icon color */
    border-radius: 50% !important; /* Forces the box to be a perfect circle */
    font-size: 16px !important;   /* Size of the social icon */
    text-decoration: none !important;
    transition: all 0.3s ease-in-out !important; /* Smooth hover transition animation */
}

/* Premium Hover Animation Effect */
.am-footer-social-link:hover {
    background-color: #ffffff !important; /* Background turns white on hover */
    color: #ff7300 !important;    /* Icon turns orange on hover */
    transform: translateY(-3px) !important; /* Subtle lift up effect */
    box-shadow: 0 5px 15px rgba(255, 115, 0, 0.4) !important; /* Soft glow effect */
}
.about-one .shape1 img{
  width:250px !important;
}