/* common CSS */
:root {
  --primary: #008ECE;
  --secondary: #0ABBED;
  --darkBlue42: #001742;
  --black: #000000;
  --white: #FFFFFF;
  --grey66: #666666;
  --greyD8: #D8D8D8;
  --greyF2: #F1F2F2;
  --greyF1: #F4F2F1;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: var(--greyD8);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: var(--greyD8);
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: var(--secondary);
}

/* Fonts Raleway  */
@font-face {
  font-family: 'Raleway';
  src: url('../fonts/Raleway-Light.woff2') format('woff2'),
      url('../fonts/Raleway-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../fonts/Raleway-Regular.woff2') format('woff2'),
      url('../fonts/Raleway-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../fonts/Raleway-Medium.woff2') format('woff2'),
      url('../fonts/Raleway-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../fonts/Raleway-SemiBold.woff2') format('woff2'),
      url('../fonts/Raleway-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../fonts/Raleway-Bold.woff2') format('woff2'),
      url('../fonts/Raleway-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Fonts Barlow Condensed  */
@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/BarlowCondensed-Regular.woff2') format('woff2'),
    url('../fonts/BarlowCondensed-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/BarlowCondensed-Medium.woff2') format('woff2'),
    url('../fonts/BarlowCondensed-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/BarlowCondensed-SemiBold.woff2') format('woff2'),
    url('../fonts/BarlowCondensed-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/BarlowCondensed-Bold.woff2') format('woff2'),
    url('../fonts/BarlowCondensed-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Barlow Condensed';
  src: url('../fonts/BarlowCondensed-ExtraBold.woff2') format('woff2'),
    url('../fonts/BarlowCondensed-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

*,
::before,
::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

:focus-visible {
  outline: none;
}

html,
input,
select,
textarea,
body {
   font-family: 'Barlow Condensed';
}
input::placeholder,
select::placeholder,
textarea::placeholder{
  color: var(--darkBlue42);
  font-weight: 500;
}
button , a{
  font-family: 'Raleway';
  cursor: pointer;
}
.font-raleway{
  font-family: 'Raleway' !important;
}
body {
  font-size: 16px;
  line-height: normal;
  font-weight: 500;
  color: var(--darkBlue42);
  background-color: var(--white);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
  overflow-x: hidden;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

iframe {
  border: 0;
  width: 100%;
}

a,
span {
  display: inline-block;
}

a,
a:hover {
  transition: 0.3s ease-in-out;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--secondary);
}

svg:not(:root) {
  overflow: hidden;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
  margin: 0;
}

.container {
  max-width: 1280px;
  padding-inline: 20px;
  margin-inline: auto;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-blue {
  color: var(--darkBlue42) !important;
}

.text-white {
  color: var(--white) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 700 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
address,
p,
pre,
blockquote,
dl,
dd,
menu,
ol,
ul,
table,
caption,
hr {
  margin: 0 0 16px 0;
}

h1:last-child,
h2:last-child:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
address:last-child,
p:last-child,
pre:last-child,
blockquote:last-child,
dl:last-child,
dd:last-child,
menu:last-child,
ol:last-child,
ul:last-child,
table:last-child,
caption:last-child,
hr:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Raleway';
  font-weight: 500;
  letter-spacing: -0.2px;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
  color: var(--primary);
}

.icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  background-color: var(--darkBlue42);
  flex-shrink: 0;
  transition: 0.3s ease-in-out;
}

.icon-whatsapp {
  mask-image: url('../images/icon-whatsapp.svg');
  -webkit-mask-image: url('../images/icon-whatsapp.svg');
}

.icon-pinterest {
  mask-image: url('../images/icon-pinterest.svg');
  -webkit-mask-image: url('../images/icon-pinterest.svg');
}

.icon-call {
  mask-image: url('../images/icon-call.svg');
  -webkit-mask-image: url('../images/icon-call.svg');
}

.icon-call-us {
  mask-image: url('../images/icon-call-us.svg');
  -webkit-mask-image: url('../images/icon-call-us.svg');
}

.icon-email {
  mask-image: url('../images/icon-email.svg');
  -webkit-mask-image: url('../images/icon-email.svg');
}

.icon-location {
  mask-image: url('../images/icon-location.svg');
  -webkit-mask-image: url('../images/icon-location.svg');
}

.icon-heart {
  mask-image: url('../images/icon-heart.svg');
  -webkit-mask-image: url('../images/icon-heart.svg');
}

.icon-check {
  mask-image: url('../images/icon-check.svg');
  -webkit-mask-image: url('../images/icon-check.svg');
}

.icon-arrow-right {
  mask-image: url('../images/icon-arrow-right.svg');
  -webkit-mask-image: url('../images/icon-arrow-right.svg');
}

.icon-close {
  mask-image: url('../images/icon-close.svg');
  -webkit-mask-image: url('../images/icon-close.svg');
}

.ptb-100 {
  padding-block: 100px;
}

.mtb-100 {
  margin-block: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.mt-100 {
  margin-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.pb-60 {
  padding-bottom: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}
.mb-80 {
  margin-bottom: 80px;
}
.pb-40 {
  padding-bottom: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.common-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  background-color: var(--secondary);
  border: none;
  outline: none;
  color: var(--white);
  text-transform: uppercase;
  padding: 12px 42px;
  min-height: 54px;
  position: relative;
  z-index: 0;
  cursor: pointer;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}

.common-btn .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: var(--white);
}

.common-btn::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
  transition: 0.3s ease-in-out;
}

.common-btn:hover {
  color: var(--white);
}

.common-btn:hover::before {
  width: 100%;
  height: 100%;
}

.white-border-btn {
  background-color: transparent;
  border: 1px solid var(--white);
}

.white-border-btn:hover {
  color: var(--primary);
}

.white-border-btn:hover::before {
  background-color: var(--white);
}

.white-border-btn:hover .icon {
  background-color: var(--primary);
}

h1,
.h1 {
  font-size: 84px;
  line-height: 1.07;
}

h2,
.h2 {
  font-size: 64px;
  line-height: normal;
}

h3,
.h3 {
  font-size: 32px;
  line-height: normal;
}

h4,
.h4 {
  font-size: 24px;
  line-height: normal;
}

h5,
.h5 {
  font-size: 20px;
  line-height: normal;
}

p,
.p {
  font-size: 16px;
  line-height: 1.5;
}
.fs-58 {
  font-size: 58px;
}
.fs-54 {
  font-size: 54px;
}
.fs-42 {
  font-size: 42px;
}
.input-wrapper {
  position: relative;
}

input,
select,
textarea {
  border: 1px solid var(--greyD8);
  background-color: var(--greyF2);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  padding: 12px 20px;

}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
}

textarea {
  resize: none;
}

/* Header CSS */
header {
  position: sticky;
  top: 0;
  z-index: 99;
  transition: 0.3s ease-in-out;
}

.top-header {
  background-color: var(--secondary);
  padding-block: 16px;
}

.top-header .top-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-header .jcoat-detail-lists {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 0;
}

.top-header .jcoat-detail-lists li {
  display: flex;
}

.top-header .jcoat-detail-lists li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--darkBlue42);
  font-size: 16px;
  font-weight: 500;
  font-family: 'Raleway';
}

.top-header .jcoat-detail-lists li a:hover {
  color: var(--primary);
}

.top-header .jcoat-detail-lists li a .icon {
  flex-shrink: 0;
  background-color: var(--darkBlue42);
}

.top-header .jcoat-detail-lists li a:hover .icon {
  background-color: var(--primary);
}

.social-media-lists {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.social-media-lists li {
  display: flex;
}

.social-media-lists li .social-media-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-media-lists li .social-media-link:hover {
  transform: scale(1.2);
}

.social-media-lists li .social-media-link .icon {
  background-color: var(--darkBlue42);
}

.social-media-lists li .social-media-link:hover .icon {
  background-color: var(--primary);
}
.social-media-lists li .social-media-link.whatsapp:hover .icon{
  background-color: #075e54 !important;
}
.social-media-lists li .social-media-link.pinterest:hover .icon{
  background-color: #E60023 !important;
}
.main-header {
  background-color: var(--white);
  padding-block: 8px;
}

.main-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-wrapper a {
  display: flex;
}

.logo-wrapper a img {
  width: 100px;
  height: 100px;
}

.main-header-wrapper .wrapper-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.navbar .navbar-menu {
  display: flex;
  align-items: center;
  gap: 64px;
}

.navbar .navbar-menu li a {
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  color: var(--darkBlue42);
  text-transform: uppercase;
  font-family: 'Raleway';
}

.navbar .navbar-menu li a:hover,
.navbar .navbar-menu li a.active {
  color: var(--primary);
}

.main-header-wrapper .common-btn {
  font-size: 20px;
  min-height: auto;
  padding: 13px 24px;
}

/* Toggle Menu For Mobile */
.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.mobile-toggle i {
  position: relative;
  width: 90%;
  height: 2px;
  background-color: var(--darkBlue42);
  transition: 0.3s ease-in-out;
}

.mobile-toggle i::before,
.mobile-toggle i::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--darkBlue42);
  transition: 0.3s ease-in-out;
}

.mobile-toggle i::before {
  top: -10px;
}

.mobile-toggle i::after {
  bottom: -10px;
}

/* .mobile-toggle.active i {
  background-color: transparent;
}
.mobile-toggle.active i::before, .mobile-toggle.active i::after {
  top: 0;
}
.mobile-toggle.active i::before {
  rotate: -45deg;
}
.mobile-toggle.active i::after {
  rotate: 45deg;
} */
.navbar .cross-btn {
  width: 30px;
  height: 30px;
  display: none;
  background-color: var(--white);
}

/* Page CSS */

/* Footer CSS */
footer {
  background: linear-gradient(0deg, rgba(244, 242, 241, 0.6), rgba(244, 242, 241, 0.6)), url('../images/footer-bg-img.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.footer-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-block: 80px;
}

.footer-wrapper .footer-content::nth-child(1) {
  max-width: 390px;
}

.footer-wrapper .footer-content:nth-child(2) {
  max-width: 215px;
}

.footer-wrapper .footer-content:nth-child(3) {
  max-width: 360px;
}

.footer-content .logo-wrapper {
  margin-bottom: 15px;
}

.footer-content .title {
  margin-bottom: 32px;
}

.contact-links-wrapper {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}

.contact-links-wrapper li a {
  display: flex;
  align-items: center;
  gap: 10px;
  word-break: break-word;
  color: var(--darkBlue42);
  font-family: 'Barlow Condensed';
}

.contact-links-wrapper li a .icon {
  background-color: var(--darkBlue42);
  flex-shrink: 0;
}

.contact-links-wrapper li a:hover {
  color: var(--primary);
}

.contact-links-wrapper li a:hover .icon {
  background-color: var(--primary);
}

.news-letter-form .input-wrapper {
  margin-bottom: 12px;
}

.news-letter-form .input-wrapper input {
  width: 100%;
}

.news-letter-form .common-btn {
  min-height: 40px;
  width: 100%;
  padding: 12px 24px;
}

.copy-right-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--darkBlue42);
  padding-block: 28px 40px;
}

.copy-right-content-wrapper p {
  font-size: 12px;
  line-height: normal;
}

.copy-right-content-wrapper .social-media-lists {
  flex-shrink: 0;
}

/* Banner Section */
.banner {
  background-image: url('../images/banner-bg-img.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}

.banner-content {
  padding-block: 200px 340px;
  color: var(--white);
}

.banner-content .main-title {
  margin-bottom: 30px;
  font-family: 'Raleway';
  font-weight:500;
  letter-spacing: -0.2px;
}

.small-title {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.small-title .icon {
  margin-top: 2px;
}
.banner-content .small-title{
  font-weight: 500;
}
.banner-content .small-title .icon {
  background-color: var(--secondary);
  animation: heartbeat 1.6s infinite;
}

/* Crafted For Now Section */
.crafted-for-now {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url('../images/breath-life-walls-bg-img.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 240px;
}

.crafted-for-now-wrapper {
  margin-top: -240px;
  padding-top: 50px;
}

.crafted-for-now-wrapper .main-title {
  font-style: italic;
  position: relative;
  color: var(--white);
  z-index: 0;
  margin-bottom: 20px;

}
.crafted-card-lists {
  background-color: var(--white);
  padding: 30px 35px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.crafted-card {
  background-color: var(--secondary);
  transition: 0.3s ease-in-out;
}

.crafted-card:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  /* background-color: var(--primary);
  color: var(--white); */
}

.crafted-card .image-box {
  height: 240px;
  overflow: hidden;
}

.crafted-card .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}

.crafted-card .crafted-content {
  padding: 20px 30px;
}

.crafted-card .crafted-content .title {
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: -0.2px;
  font-family: 'Raleway';
  transition: 0.3s ease-in-out;
}

.crafted-card .crafted-content p{
  font-family: 'Barlow Condensed';
  font-weight: 500;
}
.breath-life-walls-wrapper {
  padding-block: 40px 55px;
  display: flex;
  align-items: center;
  gap: 50px;
}

.breath-life-walls-wrapper .breath-image-box,
.breath-life-walls-wrapper .breath-walls-content-wrapper {
  width: 50%;
}

.breath-life-walls-wrapper .breath-walls-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.breath-life-walls-wrapper .breath-walls-content-wrapper * {
  margin-bottom: 0;
}

.breath-life-walls-wrapper .breath-walls-content-wrapper p.h4 {
  font-style: italic;
  font-weight: 600;
}

.breath-life-walls-wrapper .breath-image-box {
  position: relative;
  padding: 70px 40px 40px;
}

.breath-life-walls-wrapper .breath-image-box .image-box {
  min-height: 590px;
  background: #c1bdb0;
  position: relative;
  overflow: hidden;
}

.breath-life-walls-wrapper .breath-image-box .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

.breath-image-box .achieve-badge {
  padding: 18px 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed';
  color: var(--darkBlue42);
  margin: 10px;
  position: absolute;
  z-index: 0;
}

.breath-image-box .achieve-badge .number {
  font-size: 64px;
  font-weight: 700;
}

.breath-image-box .achieve-badge .text {
  font-size: 22px;
  font-weight: 700;
}

.breath-image-box .achieve-badge::before,
.breath-image-box .achieve-badge::after {
  content: '';
  position: absolute;

}

.breath-image-box .achieve-badge::before {
  width: calc(100% - 15px);
  height: calc(100% + 20px);
  background-color: var(--white);
  z-index: -2;
  top: -10px;
  left: -10px;
}

.breath-image-box .achieve-badge::after {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--secondary);
  z-index: -1;
}

.breath-image-box .achieve-badge:nth-child(2) {
  top: 0;
  right: 90px;
}

.breath-image-box .achieve-badge:nth-child(3) {
  top: 60%;
  transform: translateY(-60%);
  left: 0;
}

.breath-image-box .achieve-badge:nth-child(4) {
  bottom: 0;
  right: 0px;
}

/* Jcoat Functional */
.jcoat-functional {
  position: relative;
  padding-block: 60px;
  background: rgba(255, 255, 255, 0.3);
}

.jcoat-functional::before {
  width: 70%;
  left: 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
    url('../images/jacot-functional-bg-img-1.webp');
  z-index: 1;
}

.jcoat-functional::after {
  width: 45%;
  right: 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
    url('../images/jacot-functional-bg-img-2.webp');
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 2;
}

.jcoat-functional::before,
.jcoat-functional::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.functional-wrapper {
  z-index: 3;
  position: relative;
}

.jcoat-functional .main-title {
  margin-bottom: 40px;
}

.functional-card-lists {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.functional-card {
  background-color: var(--white);
  transition: 0.3s ease-in-out;
}

.functional-card:hover {
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.functional-card .image-box {
  height: 170px;
  overflow: hidden;
}

.functional-card .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.functional-card .functional-card-content {
  padding: 20px;
}

.functional-card .functional-card-content .title {
  margin-bottom: 12px;
  color: var(--primary);
}

.functional-card .functional-card-content p {
  color: var(--grey66);
  line-height: 1.3;
}

/* cta */
.cta {
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  padding-block: 52px;
}

.cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: var(--white);
}

.cta-wrapper .cta-title {
  text-transform: capitalize;
}

.cta-wrapper .common-btn {
  flex-shrink: 0;
}

/* leave-your-mark */
.leave-your-mark {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)),
    url('../images/leave-your-mark-bg-img.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  margin-bottom: 40px;
}

.title-wrapper * {
  margin-bottom: 0;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  max-width: 1088px;
  margin-inline: auto;
}
/* FORCE VISIBLE SCROLLBAR ON TABLE WRAPPER */
.table-wrapper {
  -webkit-overflow-scrolling: touch;
}
.table-wrapper::-webkit-scrollbar {
  display: block !important;
  height: 8px;
}
.table-wrapper table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  min-width: 800px;
}

.table-wrapper table thead {
  background: linear-gradient(269.11deg, var(--primary) 0.95%, var(--secondary) 79.05%);
}

.table-wrapper table th {
  color: var(--white);
  font-family: 'Raleway';
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.table-wrapper table th,
.table-wrapper table td {
  padding: 10px 14px;
  height: 100px;
  border-right: 1px solid var(--greyD8);
  text-align: center;
  white-space: nowrap;
  /* white-space: normal; */
  /* word-wrap: break-word; */
}

.table-wrapper table th:last-child,
.table-wrapper table td:last-child {
  border-right: none;
}

.table-wrapper table tbody {
  background: var(--white);
}

.table-wrapper table td {
  border-bottom: 1px solid var(--greyD8);
  color: var(--grey66);
}
.table-wrapper table td,
.table-wrapper table td a{
  font-size: 20px;
  font-weight: 500;
  font-family: 'Barlow Condensed';
}
.table-wrapper table td a{
  display: inline-block;
}
.table-wrapper table td a:hover{
  color: var(--secondary) !important;
}
.table-wrapper table tr:last-child td {
  border-bottom: none;
}

.table-wrapper table th:nth-child(1),
.table-wrapper table td:nth-child(1),
.table-wrapper table th:nth-child(2),
.table-wrapper table td:nth-child(2) {
  width: 30%;
}

.table-wrapper table td:nth-child(1),
.table-wrapper table td:nth-child(1) a {
  font-weight: 600;
  color: var(--primary);
}

.table-wrapper table th:last-child,
.table-wrapper table td:last-child {
  width: 40%;
}

.leave-your-mark .below-text {
  margin-top: 40px;
  text-align: center;
  font-style: italic;
  text-transform: capitalize;
}

/* Process System */
.process-system {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('../images/process-steps-bg-img.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
}

.process-system .title-wrapper {
  margin-bottom: 60px;
}

.process-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin-inline: auto;
  counter-reset: count-number;
  margin-bottom: 60px;
}

.process-wrapper .process-card {
  max-width: 280px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 20px;
  padding-inline: 20px;
  position: relative;
}

.process-wrapper .process-card * {
  margin-bottom: 0;
}
.process-wrapper .process-card .sub-title{
  font-family: 'Raleway';
}
.process-wrapper .process-card .number-box {
  width: 75px;
  height: 75px;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  font-family: 'Barlow Condensed';
}

.process-wrapper .process-card .number-box::before {
  counter-increment: count-number;
  content: "0" counter(count-number);
}

.process-wrapper .process-card::after {
  content: '';
  position: absolute;
  width: 125px;
  height: 47px;
  background-image: url('../images/process-line.svg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
  right: -130px;
  top: 50px;
}

.process-wrapper .process-card:last-child::after {
  display: none;
}

.other-details .wrap-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 0px;
  margin-bottom: 40px;
}

.other-details .wrap-content span {
  display: block;
  font-weight: 500;
  padding-right: 40px;
  margin-right: 40px;
  text-align: center;
  position: relative;
   font-family: 'Raleway';
}

.other-details .wrap-content span::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: var(--white);
  top: 0;
  right: 0;
}

.other-details .wrap-content span:nth-child(even) {
  margin-right: 0;
  padding-right: 0;
}

.other-details .wrap-content span:nth-child(even)::after {
  display: none;
}

.other-details p {
  text-align: center;
}

/* .professional-packag */
.professional-package {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)),
    url('../images/package-bg-img.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.professional-package .table-wrapper table th:nth-child(1),
.professional-package .table-wrapper table td:nth-child(1),
.professional-package .table-wrapper table th:nth-child(2),
.professional-package .table-wrapper table td:nth-child(2) {
  width: 50%;
}

.professional-package .below-text {
  margin-bottom: 20px;
  font-family: 'Raleway';
}
.professional-package h3{
  font-weight: 600;
}
.professional-package .below-text span {
  display: inline;
}

.jcoat-surfaces {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url('../images/surface-bg-img.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-block: 40px;
}

.jcoat-surfaces-wrapper {
  background-color: var(--white);
  padding: 60px;
  display: flex;
  align-items: stretch;
  gap: 60px;
}

.jcoat-surfaces-wrapper .surefaces-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  width: 55%;
}

.jcoat-surfaces-wrapper .surefaces-content * {
  margin-bottom: 0;
}

.jcoat-surfaces-wrapper .surefaces-content .main-title {
  line-height: 1.14;
}

.jcoat-surfaces-wrapper .surefaces-content p {
  color: var(--grey66);
  font-family: 'Raleway';
  font-weight: 400;
}

.jcoat-surfaces-wrapper .surefaces-content p b {
  color: var(--darkBlue42);
  font-weight: 700;
}

.compatible-surefaces-lists {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
}

.compatible-surefaces-lists li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--primary);
  width: calc(50% - 10px);
}

.compatible-surefaces-lists li .icon-box {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #0041BC33;
  border-radius: 12px;
}

.compatible-surefaces-lists li .icon-box .icon {
  width: 16px;
  height: 16px;
  background-color: var(--primary);
}

.jcoat-surfaces-wrapper .surfaces-image-box {
  width: 45%;
  display: flex;
  gap: 80px;
  align-items: flex-end;
  position: relative;
}

.jcoat-surfaces-wrapper .surfaces-image-box .small-image-box {
  width: 125px;
  height: 125px;
  flex-shrink: 0;
  overflow: hidden;
}

.jcoat-surfaces-wrapper .surfaces-image-box .small-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jcoat-surfaces-wrapper .surfaces-image-box .small-image-box:nth-child(1) {
  position: absolute;
  bottom: 170px;
  left: 50px;
}

.jcoat-surfaces-wrapper .surfaces-image-box .image-box {
  height: 100%;
}

.jcoat-surfaces-wrapper .surfaces-image-box .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* get-satrted-card-lists */
.get-satrted-card-lists {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  background-color: var(--secondary);
  padding: 30px;
  position: relative;
  max-width: calc(100% - 40px);
  margin-inline: auto;
}

.get-started .title-wrapper {
  max-width: calc(100% - 320px);
  margin-inline: auto;
}

.title-top {
  background-color: var(--white);
  display: inline-flex;
  padding: 10px;
  position: absolute;
  left: -20px;
  bottom: calc(100% - 20px);
}

.title-top h3 {
  background-color: var(--primary);
  padding: 18px 28px;
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
}

.get-satrted-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: 0.3s ease-in-out;
  background-color: var(--primary);
}

.get-satrted-card:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.get-satrted-card .image-box {
  width: 100%;
  height: 240px;
  flex-shrink: 0;
  overflow: hidden;
}

.get-satrted-card .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.get-satrted-card .get-satrted-content {
  width: 100%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  min-height: 100px;
  height: 100%;
}

.get-satrted-card .get-satrted-content .content {
  padding: 15px 15px 15px 24px;
}

.get-satrted-card .get-satrted-content .title {
  margin-bottom: 10px;
}

.get-satrted-card .get-satrted-content p {
  line-height: 1.2;
}

.get-satrted-card .get-satrted-content .arrow-btn {
  width: 110px;
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.get-satrted-card .get-satrted-content .arrow-btn .icon {
  width: 22px;
  height: 22px;
  background-color: var(--primary);
}

/* walls-stories */
.walls-stories {
  background: linear-gradient(0deg, rgba(244, 242, 241, 0.7), rgba(244, 242, 241, 0.7)), url('../images/wall-stories-bg-img.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.wall-gallery-lists {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.wall-gallery-lists .wall-image-box {
  aspect-ratio: 1/1;
  overflow: hidden;
  transition: 0.3s ease-in-out;
}

.wall-gallery-lists .wall-image-box a {
  width: 100%;
  height: 100%;
}

.wall-gallery-lists .wall-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}

.wall-gallery-lists .wall-image-box:hover img {
  transform: scale(1.06)
}

.wall-gallery-lists .wall-image-box:nth-child(3) {
  grid-column: span 2;
  grid-row: span 2;
}

.gslide-image img {
  padding: 15px;
}

.walls-stories .bottom-text {
  text-align: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  gap: 10px;
  font-family: 'Raleway';
  font-style: italic;
}

.walls-stories .bottom-text * {
  font-family: 'Raleway';
}

/* .walls-stories .bottom-text span {
  text-transform: capitalize;
} */

.walls-stories .bottom-text .icon {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  background-color: var(--primary);
  margin-top: 3px;
  animation: heartbeat 1.6s infinite;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.8);
  }

  100% {
    transform: scale(1);
  }
}

/* availability */
.availability {
  position: relative;
  background: url('../images/availability-bg-img.webp');
  background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* .availability::before {
  width: 60%;
  left: 0;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), url('../images/availability-bg-img.webp');
}

.availability::after {
  width: 50%;
  right: 0;
  background: var(--secondary);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.availability::before,
.availability::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
} */

.availability-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.availability-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  color: var(--white);
  padding-right: 40px;
}

.availability-content * {
  margin-bottom: 0;
}

.availability-content .small-title {
  align-items: center;
  font-style: italic;
  font-family: 'Raleway';
}

.availability-content .small-title .icon {
  background-color: var(--white);
  animation: heartbeat 1.6s infinite;
  margin-top: 0;
}

/* .distribution-card {
  background-color: var(--white);
  padding: 10px;
} */

.distribution-card .title {
  background-color: var(--primary);
  font-family: 'Barlow Condensed';
  padding: 28px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.distribution-card .title span {
  color: var(--darkBlue42);
}

.distribution-card .title::before,
.distribution-card .title::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
}

.distribution-card .title::before {
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
}

.distribution-card .title::after {
  right: -1px;
  background: var(--secondary);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  width: 102px;
  height: calc(100% + 1px);
}

.availability-wrapper .image-box {
  padding-block: 30px;
}

/* Custom Modal */
.custom-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  background: #00000040;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.4s ease-in-out;
}

body.modal-open {
  overflow: hidden;
  padding-right: 8px;
}

.custom-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}

.modal-card-wrapper {
  width: 100%;
  max-width: 900px;
  max-height: 100%;
  background-color: var(--white);
  padding: 30px 40px;
  overflow-y: auto;
  position: relative;
  transform: scale(0.5);
  transition: 0.4s ease-in-out;
}

.custom-modal.active .modal-card-wrapper {
  transform: scale(1);
}

.custom-modal .close-btn {
  width: 40px;
  height: 40px;
  background-color: var(--greyD8);
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  cursor: pointer;
  margin-left: auto;
  transition: 0.3s ease-in-out;
}

.custom-modal .close-btn:hover {
  background-color: var(--primary);
}

.custom-modal .close-btn i {
  width: 18px;
  height: 18px;
}

.custom-modal .close-btn:hover i {
  background-color: var(--white);
}

.form-wrapper {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.modal-content-wrapper .main-title {
  margin-bottom: 25px;
}

.form-wrapper .jcoat-details-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  flex-shrink: 0;
  margin-right: 75px;
  padding-right: 75px;
  border-right: 1px solid #00174266;
}

.form-wrapper .contact-btn {
  background: #D8D8D899;
  color: var(--darkBlue42);
  font-weight: 500;
  min-height: 40px;
  font-family: 'Barlow Condensed';
}
.form-wrapper .contact-btn:has(.icon-call-us){
  padding-inline: 27px;
}
.form-wrapper .contact-btn img,
.form-wrapper .contact-btn .icon {
  width: 20px;
  height: 20px;
}

.form-wrapper .contact-btn .icon {
  background-color: var(--darkBlue42);
}

.form-wrapper .contact-btn:hover {
  color: var(--white);
}

.form-wrapper .contact-btn:hover .icon {
  background-color: var(--white);
}

.divider {
  border: none;
  border-top: 1px solid #00174266;
  margin-block: 20px;
  width: 100%;
  outline: none;
}

.form-content {
  width: 100%;
}

.form-content .input-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 24px;
}

.form-content .input-wrapper label {
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
  color: var(--darkBlue42);
  position: relative;
}
.form-content .input-wrapper label::after{
  content: '*';
  color: #FF3939;
  margin-left: 2px;
}
.form-content .input-wrapper:has(textarea) label::after{
  display: none;
}
.form-content .input-wrapper input,
.form-content .input-wrapper textarea {
  width: 100%;
  background-color: transparent;
  padding: 16px 30px;
  font-size: 14px;
}

.form-content .submit-btn {
  min-height: 48px;
  padding: 8px 16px;
  width: 100%;
  font-weight: 500;
}

.error-msg {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  font-size: 13px;
  line-height: 1.1;
  color: #ec2e51;
  display: none;
}

.alert-message {
  width: 100%;
  padding: 15px;
  margin-top: 20px;
  display: none;
}

.alert-message p {
  font-size: 16px;
  line-height: normal;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
}

.alert-message:has(.form-submitted-text) {
  background-color: #1ad377;
}

.alert-message:has(.something-wrong-text) {
  background-color: #ec2e51;
}

.glightbox-clean .gslide-media {
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* Prevent background scroll during loading */
body.loading {
  overflow: hidden;
}

/* Safari-specific fix */
@supports (-webkit-touch-callout: none) {
  .site-loader {
    min-height: -webkit-fill-available;
  }
}

.site-loader {
  position: fixed;
  width: 100vw;
  height: 100svh;
  height: 100lvh;
  height: 100dvh;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  z-index: 999;
}

.site-loader img {
  width: 100px;
  height: 100px;
  display: block;
  margin: auto;
}

/* Loader spinner inside the Subscribe button */
.loader {
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid var(--white);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 0.8s linear infinite;
  display: inline-block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Disabled state for button during loading */
.common-btn.loading {
  cursor: not-allowed;
  opacity: 0.8;
}

.common-btn.loading .btn-text {
  opacity: 0.8;
}

/* Toast Notification Styles */
.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  min-width: 300px;
  max-width: 400px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(400px);
  opacity: 0;
  animation: slideIn 0.3s ease forwards;
  position: relative;
  overflow: hidden;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.hide {
  animation: slideOut 0.3s ease forwards;
}

.toast::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
}

.toast.success::before {
  background: #10b981;
}

.toast.error::before {
  background: #ef4444;
}

.toast-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.toast.success .toast-icon {
  background: #d1fae5;
  color: #10b981;
}

.toast.error .toast-icon {
  background: #fee2e2;
  color: #ef4444;
}

.toast-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.toast-title {
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.toast-message {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

.toast-close {
  width: 20px;
  height: 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: color 0.2s;
  flex-shrink: 0;
  padding: 0;
}

.toast-close:hover {
  color: #4b5563;
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: currentColor;
  animation: progress 3s linear;
}

.toast.success .toast-progress {
  color: #10b981;
}

.toast.error .toast-progress {
  color: #ef4444;
}

@keyframes slideIn {
  from {
    transform: translateX(400px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

@keyframes progress {
  from {
    width: 100%;
  }

  to {
    width: 0;
  }
}

@media (max-width: 480px) {
  .toast-container {
    bottom: 10px;
    right: 10px;
    left: 10px;
  }

  .toast {
    min-width: auto;
    max-width: 100%;
  }
}

/* ======================================
   FORM ERROR HANDLING & LOADING STATES
   ====================================== */

/* Error state for input fields */
.input-wrapper.error input,
.input-wrapper.error textarea {
  border-color: #ef4444 !important;
  background-color: #fef2f2;
}

.input-wrapper.error input:focus,
.input-wrapper.error textarea:focus {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Error message styling */
/* .input-wrapper .error-msg {
  display: none;
  color: #ef4444;
  font-size: 12px;
  margin-top: 5px;
  font-weight: 500;
} */

.input-wrapper.error .error-msg {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Submit button loading state */
.submit-btn:disabled {
  cursor: not-allowed;
  position: relative;
  pointer-events: none;
}

.submit-btn:disabled::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  right: 15px;
  margin-top: -8px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spinner 0.6s linear infinite;
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

/* Hide alert messages by default (if using them) */
.alert-message {
  display: none;
}

/* Success state animation (optional) */
.input-wrapper.success input,
.input-wrapper.success textarea {
  border-color: #10b981 !important;
  background-color: #f0fdf4;
}

/* Loading overlay for form (optional) */
.form-content.loading {
  position: relative;
  pointer-events: none;
}

.form-content.loading::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 10;
  border-radius: 8px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .submit-btn:disabled::after {
    right: 10px;
    width: 14px;
    height: 14px;
    margin-top: -7px;
  }
}
/* New Pages CSS */
.jcoat-banner{
  background: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 100%);
  padding-block: 80px;
}
.jcoat-banner .banner-content-wrapper .main-title{
  color: var(--white);
  margin-bottom: 30px;
}
.jcoat-banner .banner-content-wrapper .main-title span{
    color: var(--white);
    opacity: 0.4;
}
.jcoat-banner .banner-content-wrapper .small-title{
  align-items: center;
  font-weight: 400;
   color: var(--white);
   font-family: 'Raleway';
}
.jcoat-banner .banner-content-wrapper .small-title i{
  width: 28px;
  height: 25px;
  background-color: var(--white);
  margin-top: 0;
}
.banner-image-frames {
  display: flex;
  align-items: center;
  gap: 10px;
}
.banner-image-frames .image-frame-card{
  border: 8px solid var(--white);
  aspect-ratio: 1 / 1;
  /* box-shadow: 0px 8px 80px 0px #0000000F; */
}
.banner-image-frames .image-frame-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-image-frames .image-frame-card:nth-child(1){
  transform: rotate(6deg);
  transform-origin: bottom;
}
.banner-image-frames .image-frame-card:nth-child(2){
  transform: rotate(-8deg);
  transform-origin: right;
}
.banner-image-frames .image-frame-card:nth-child(3){
  transform: rotate(3deg);
  transform-origin: right bottom;
}
.banner-image-frames .image-frame-card:nth-child(4){
  transform: rotate(-8deg);
  transform-origin: right bottom;
}

.title-wrap .small-title{
  margin-bottom: 14px;
  align-items: center;
}
.title-wrap .small-title i{
  margin-top: 0;
  width: 26px;
  height: 23px;
  background-color: var(--secondary);
}
.our-look{
  padding-block: 100px;
}
.our-look-wrapper{
  display: flex;
  align-items: center;
  gap: 70px;
}
.our-look-wrapper .our-look-images-wrapper{
  width: 55%;
  display: flex;
  align-items: stretch;
  gap: 20px;
}
.our-look-wrapper .our-look-image-box-1 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
.our-look-wrapper .our-look-image-box-1 .image-box:nth-child(1) {
  grid-column: 1 / 3;
}
.our-look-wrapper  .our-look-image-box-2 {
  display: grid;
  grid-template-columns: repeat(1,1fr);
  gap: 20px;
  width: 220px;
  flex-shrink: 0;
}
.our-look-wrapper .image-box a{
  display: block;
  width: 100%;
  height: 100%;
}
.our-look-wrapper .our-look-images-wrapper .image-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.our-look-wrapper .our-look-content{
  width: 45%;
}
.our-look-content .title{
  margin-bottom: 32px;
}
.our-look-content-lists{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.our-look-content-lists li{
  display: flex;
  align-items: center;
  gap: 10px;
}
.our-look-content-lists li .icon-box{
  width: 30px;
  height: 30px;
  background: #00174233;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.our-look-content-lists li .icon-box i{
  width: 16px;
  height: 16px;
  background-color: var(--darkBlue42);
}
.best-used-for{
  background-color: var(--greyF1);
  padding-block: 80px;
}
.best-used-for .title-wrap .title{
  margin-bottom: 32px;
}
.interiors-gallery-lists{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}
.interiors-gallery-lists .interiors-image-box a{
  width: 100%;
  height: 100%;
  display: block;
  border: 8px solid;
  border-image-source: linear-gradient(180deg, #008ECE 0%, #0ABBED 100%);
  border-image-slice: 1;
}
.interiors-gallery-lists .interiors-image-box:nth-child(2){
  grid-column: span 2;
  aspect-ratio: unset;
}
.interiors-gallery-lists .interiors-image-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quick-facts{
  padding-block: 100px;
}
.quick-facts-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.facts-lists{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 890px;
}
.facts-lists .fact-card{
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 280px;
}
.facts-lists .fact-card .icon-box{
  width: 40px;
  height: 40px;
  border-radius: 100%;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0ABBED33;
}
.facts-lists .fact-card .icon-box .icon{
  width: 20px;
  height: 20px;
  background-color: var(--secondary);
}
.facts-lists .fact-card h3{
  color: var(--primary);
  margin-bottom: 5px;
}
.fixed-links{
  position: fixed;
  bottom: 50px;
  right: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.fixed-links .whatsapp-link{
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  box-shadow: 0px 2px 20px 0px #00000033;
  border-radius: 100%;
  transition: 0.3s ease-in-out;
}
.fixed-links .whatsapp-link img {
  width: 30px;
  height: 30px;
}
.jcoat-xl .facts-lists {
  max-width: 970px;
}
.jcoat-xl .facts-lists .fact-card {
  min-width: 380px;
}