/* VARIABLES */
:root {
  --primary: #000000;
  --cta-text-color: #ffffff;
  --bg-gray1: #afb6be;
  --bg-gray2: #f6f6f6;
  --bg-gray3: #edf1f5;
  --brown: #b78151;

  /* Primary Font: TT Norms Pro */
  --font-primary-regular: "TT Norms Pro Regular", sans-serif;
  --font-primary-light: "TT Norms Pro Light", sans-serif;
  --font-primary-medium: "TT Norms Pro Medium", sans-serif;
  --font-primary-bold: "TT Norms Pro Bold", sans-serif;
  --font-primary-extra-bold: "TT Norms Pro ExtraBold", sans-serif;
  --font-primary-extra-black: "TT Norms Pro ExtraBlack", sans-serif;
  --font-primary-thin: "TT Norms Pro Thin", sans-serif;
  --font-primary-black: "TT Norms Pro Black", sans-serif;
  --font-primary-light-italic: "TT Norms Pro Light Italic", sans-serif;
  --font-primary-medium-italic: "TT Norms Pro Medium Italic", sans-serif;
  --font-primary-italic: "TT Norms Pro Italic", sans-serif;
  --font-primary-thin-italic: "TT Norms Pro Thin Italic", sans-serif;
  --font-primary-bold-italic: "TT Norms Pro Bold Italic", sans-serif;
  --font-primary-extra-bold-italic: "TT Norms Pro ExtraBold Italic", sans-serif;
  --font-primary-extra-light-italic: "TT Norms Pro ExtraLight Italic",
    sans-serif;
  --font-primary-extra-black-italic: "TT Norms Pro ExtraBlack Italic",
    sans-serif;

  /* Secondary Font: Baskerville */
  --font-secondary-light: "Baskerville Light", serif;
  --font-secondary-regular: "Baskerville Regular", serif;
  --font-secondary-bold: "Baskerville Bold", serif;
}

/* VARIABLES */

/* CUSTOM FONTS */
@font-face {
  font-family: "Baskerville Bold";
  font-style: normal;
  font-weight: bold;
  src: url("../fonts/Baskerville Bold font.woff") format("woff");
}

@font-face {
  font-family: "Baskerville Regular";
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/BASKE9.woff") format("woff");
}

@font-face {
  font-family: "Baskerville Light";
  font-style: normal;
  font-weight: lighter;
  src: url("../fonts/BASKRV_L.woff") format("woff");
}

@font-face {
  font-family: "TT Norms Pro Regular";
  src: url("../fonts/TT Norms Pro Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "TT Norms Pro Light";
  src: url("../fonts/TT Norms Pro Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "TT Norms Pro Medium";
  src: url("../fonts/TT Norms Pro Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "TT Norms Pro Bold";
  src: url("../fonts/TT Norms Pro Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "TT Norms Pro ExtraBold";
  src: url("../fonts/TT Norms Pro ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "TT Norms Pro ExtraBlack";
  src: url("../fonts/TT Norms Pro ExtraBlack.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "TT Norms Pro Thin";
  src: url("../fonts/TT Norms Pro Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "TT Norms Pro Black";
  src: url("../fonts/TT Norms Pro Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "TT Norms Pro Light Italic";
  src: url("../fonts/TT Norms Pro Light Italic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "TT Norms Pro Medium Italic";
  src: url("../fonts/TT Norms Pro Medium Italic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "TT Norms Pro Italic";
  src: url("../fonts/TT Norms Pro Italic.woff") format("woff");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "TT Norms Pro Thin Italic";
  src: url("../fonts/TT Norms Pro Thin Italic.woff") format("woff");
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: "TT Norms Pro Bold Italic";
  src: url("../fonts/TT Norms Pro Bold Italic.woff") format("woff");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "TT Norms Pro ExtraBold Italic";
  src: url("../fonts/TT Norms Pro ExtraBold Italic.woff") format("woff");
  font-weight: 800;
  font-style: italic;
}

@font-face {
  font-family: "TT Norms Pro ExtraLight Italic";
  src: url("../fonts/TT Norms Pro ExtraLight Italic.woff") format("woff");
  font-weight: 200;
  font-style: italic;
}

@font-face {
  font-family: "TT Norms Pro ExtraBlack Italic";
  src: url("../fonts/TT Norms Pro ExtraBlack Italic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
}
/* CUSTOM FONTS */

/* CSS RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: var(--font-family-primary);
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

a {
  text-decoration: none;
  display: flex;
  flex-grow: 0;
}
/* CSS RESET */

/* GENERIC STYLING */
.form-control {
  font-family: var(--font-primary-regular);
  font-size: 18px;
}

.form-control::placeholder {
  color: #a4a4a4;
}

input[type="text"].form-control {
  height: 60px;
  border-radius: 5px;
}

textarea.form-control {
  height: 150px;
  resize: none;
}

form label {
  font-family: var(--font-primary-regular);
  font-size: 14px;
}

.floating-whatsapp-icon {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
}

.floating-whatsapp-icon img {
  width: 50px;
  height: auto;
}

h3.section-title {
  font-family: var(--font-secondary-bold);
  font-size: 30px;
  line-height: 93%;
  color: #a4a4a4;
  text-transform: uppercase;
}

h4.section-title {
  font-family: var(--font-secondary-bold);
  font-size: 25px;
  line-height: 29px;
  color: var(--brown);
  text-transform: uppercase;
}

p.paragraph {
  font-family: var(--font-primary-light);
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: var(--primary);
}

p.paragraph strong {
  font-family: var(--font-primary-medium);
  display: block;
  margin-bottom: 20px;
}

.cta-main {
  border: 0px;
  height: 52px;
  padding: 0 32px;
  border-radius: 100px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-primary-regular);
  background-color: var(--primary);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: var(--cta-text-color);
  transition: all 200ms;
  box-sizing: border-box;
  border: 1px var(--primary) solid;
}

.cta-main:hover {
  background-color: white;
  color: var(--primary);
  border: 1px var(--bg-gray1) solid;
  box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.2);
}

.cta-main.white {
  background-color: #ffffff;
  color: var(--primary);
}

.cta-main.white:hover {
  background-color: var(--primary);
  color: white;
}

.page-cover {
  height: 380px;
  display: flex;
  align-items: end;
  width: 100%;
  padding-bottom: 70px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.page-cover h1 {
  font-family: var(--font-secondary-regular);
  font-size: 65px;
  line-height: 93%;
  color: #ffffff;
  text-transform: uppercase;
}
/* GENERIC STYLING */

/* HEADER */
header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 10;
}

header svg path {
  fill: white;
  transition: all 200ms;
}

header:hover,
header.active {
  background-color: #ffffff;
}

header:hover nav.main-menu-container .cta-main {
  display: flex;
}

header:hover nav.main-menu-container ul.main-menu li a {
  color: var(--primary);
}

header:hover svg path {
  fill: var(--primary);
}

header > nav.main-menu-container {
  height: 150px;
  display: flex;
  align-items: center;
}

header > nav.main-menu-container ul.main-menu {
  display: flex;
  gap: 40px;
}

header > nav.main-menu-container ul.main-menu li a {
  color: #ffffff;
  font-family: var(--font-primary-medium);
  font-size: 16px;
  line-height: 16px;
  position: relative;
}

header > nav.main-menu-container ul.main-menu li a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
}

header > nav.main-menu-container ul.main-menu li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -10px;
  left: 0;
  background: #000000;
  z-index: 1;
  transition: all 400ms;
}

header > nav.main-menu-container .cta-main {
  display: none;
}

header .menu-toggle {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-image: url(../img/menu-icon.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
header .menu-toggle.active {
  background-image: url(../img/close-icon.svg);
}
/* HEADER */

/* HOME PAGE CSS */

/* HERO */
main.home #hero {
  position: relative;
  background-image: url(../img/hero.jpg);
  background-size: cover;
  background-position: center center;
  min-height: 600px;
  max-height: 100vh;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
}

main.home #hero h1 {
  font-family: var(--font-secondary-regular) !important;
  font-size: 65px;
  line-height: 93%;
  color: #ffffff;
  margin-top: 100px;
}
main.home #hero h6 {
  font-family: var(--font-primary-medium);
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  margin-top: 15px;
}

main.home #hero .cta-main {
  margin-top: 44px;
}
/* HERO */

/* ABOUT US */
main.home #about-us {
  padding: 45px 0;
}

main.home #about-us h4.section-title {
  margin-top: 30px;
}
/* ABOUT US */

/* SERVICES */
main.home #services,
main.services #services {
  padding: 45px 0 70px 0;
}

main.home #services span.service-name,
main.services #services span.service-name {
  font-family: var(--font-primary-medium);
  font-size: 16px;
  line-height: 19px;
  color: var(--primary);
  display: block;
  margin-top: 12px;
}
/* SERVICES */

/* WORK PROCESS */
main.home #work-process,
main.work-process #work-process {
  padding: 70px 0;
  background: var(--bg-gray2);
}

main.home #work-process .card,
main.work-process #work-process .card {
  background: #ffffff;
  border-radius: 0;
  border: 0;
  display: flex;
  flex-direction: column;
  padding: 34px;
  height: 100%;
  box-sizing: border-box;
}

main.home #work-process .col-lg-4,
main.work-process #work-process .col-lg-4 {
  margin-bottom: 24px;
}

main.home #work-process .card span.step-count,
main.work-process #work-process .card span.step-count {
  font-family: var(--font-secondary-bold);
  font-size: 17px;
  line-height: 19px;
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 18px;
}
/* WORK PROCESS */

/* WE PROVIDE */
main.home #we-provide {
  background-image: url(../img/provide-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  padding: 70px 0;
}

main.home #we-provide h3.section-title {
  color: #ffffff;
  font-size: 30px;
}

main.home #we-provide ul li {
  font-family: var(--font-primary-medium);
  font-size: 20px;
  line-height: 27px;
  color: #ffffff;
  margin-bottom: 15px;
}

main.home #we-provide ul li:before {
  content: "— ";
  color: #ffffff;
}
/* WE PROVIDE */

/* FABRICS */
main.home #fabrics,
main.fabrics #fabrics {
  padding: 70px 0;
}

main.home #fabrics .fabric-cards,
main.fabrics #fabrics .fabric-cards {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

main.home #fabrics .fabric-cards .fcard,
main.fabrics #fabrics .fabric-cards .fcard {
  height: 100px;
  background: var(--bg-gray2);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  padding: 50px 20px;
}

main.home #fabrics .fabric-cards .fcard:last-child {
  flex-grow: 0;
}
/* FABRICS */

/* HOME PAGE CSS */

/* ALTERATION PAGE CSS */
main.alteration .page-cover {
  background-image: url(../img/alteration-cover.jpg);
}
/* ALTERATION PAGE CSS */

/* ABOUT US PAGE CSS */
main.about-us .page-cover {
  background-image: url(../img/cover-about-us.jpg);
}

main.about-us #cta-section {
  padding: 70px 0 70px 0;
}

main.about-us #why-choose-us {
  padding-bottom: 80px;
}

main.about-us #why-choose-us .why-slider .swiper-slide {
  display: flex;
  flex-direction: column; /* Stacks content vertically */
  height: auto !important; /* Overrides Swiper's inline height */
}

main.about-us #why-choose-us .why-slider .why-card {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-gray3);
  border-radius: 5px;
  padding: 60px 15px 50px 15px;
  position: relative;
  overflow: visible;
  margin-top: 20px;
}

main.about-us #why-choose-us .why-slider .why-card h6 {
  font-family: var(--font-primary-medium);
  font-size: 16px;
  line-height: 19px;
  color: var(--primary);
  margin-bottom: 12px;
}

main.about-us #why-choose-us .why-slider .why-card img.check-icon {
  width: 63px;
  height: auto;
  position: absolute;
  top: -20px;
  left: 15px;
}
/* ABOUT US PAGE CSS */

/* SERVICES PAGE CSS */
main.services .page-cover {
  background-image: url(../img/cover-services.jpg);
}
/* SERVICES PAGE CSS */

/* WORK PROCESS PAGE CSS */
main.work-process .page-cover {
  background-image: url(../img/cover-work-process.jpg);
}
/* WORK PROCESS PAGE CSS */

/* FABRICS PAGE CSS */
main.fabrics .page-cover {
  background-image: url(../img/cover-fabrics.jpg);
}

main.fabrics #fabrics .fabric-cards {
}

main.fabrics #fabrics .fabric-cards .fcard {
  height: 200px;
}
/* FABRICS PAGE CSS */

/* CONTACT US PAGE CSS */
main.contact-us .page-cover {
  background-image: url(../img/cover-contact-us.jpg);
}
/* CONTACT US PAGE CSS */

/* BOOK APPOINTMENT PAGE CSS */
main.book-appointment .page-cover {
  background-image: url(../img/cover-contact-us.jpg);
}

main.book-appointment #appointment-form {
  padding: 70px 0;
}
/* BOOK APPOINTMENT PAGE CSS */

/* FOOTER */
footer {
  background-color: var(--bg-gray1);
  padding: 80px 0 40px 0;
}

footer #footer-top ul {
  display: flex;
  justify-content: space-between;
}

footer #footer-top ul li a {
  font-family: var(--font-primary-medium);
  font-size: 20px;
  line-height: 20px;
  color: #ffffff;
}

footer #footer-mid {
  margin: 52px 0;
}

footer #footer-mid .timings {
  font-family: var(--font-primary-medium);
  font-size: 28px;
  line-height: 33px;
  color: #ffffff;
}

footer #footer-mid .timings strong {
  display: block;
  font-family: var(--font-primary-bold);
}

footer #footer-mid address {
  font-family: var(--font-primary-bold);
  font-size: 28px;
  line-height: 33px;
  color: #ffffff;
}

footer #footer-mid .contact-no a,
footer #footer-mid .email a {
  font-family: var(--font-primary-medium);
  font-size: 28px;
  line-height: 33px;
  color: #ffffff;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
}

footer #footer-mid .contact-no a svg,
footer #footer-mid .email a svg,
footer #footer-mid .email a img {
  width: 30px;
  height: auto;
}
/* FOOTER */

/* RESPONSIVE MEDIA QUERY */
@media only screen and (max-width: 991px) {
  header {
    padding-left: 10px;
    padding-right: 10px;
  }

  header:hover {
    background-color: transparent;
  }

  header.active {
    background-color: #ffffff !important;
  }

  header:hover svg.logo path {
    fill: #000000 !important;
  }

  #hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  header * {
    transition: all 300ms;
  }

  header > nav.main-menu-container {
    height: 85px;
    align-items: start;
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 40px;
  }

  header > nav.main-menu-container.active {
    height: 100vh;
    max-height: 100vh;
  }

  header > nav.main-menu-container ul.main-menu {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

  header > nav.main-menu-container ul.main-menu li a {
    color: var(--primary) !important;
    font-size: 30px;
    line-height: 38px;
  }

  header.active svg.logo path {
    fill: var(--primary);
  }

  header > nav.main-menu-container .cta-main {
    display: flex;
  }

  /* HERO */
  main.home #hero {
    background: linear-gradient(rgba(72, 39, 10, 0) 23.85%, #48270a 120.26%),
      url(../img/hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
    min-height: 100dvh;
    max-height: 100dvh;
    align-items: end;
    padding-bottom: 60px;
  }

  main.home #hero h1 {
    font-size: 45px;
    line-height: 93%;
    letter-spacing: -2px;
  }
  main.home #hero h6 {
    font-size: 22px;
    line-height: 26px;
  }
  /* HERO */

  main.home #about-us h4.section-title {
    margin-top: 30px;
  }

  .page-cover {
    min-height: 100dvh;
    max-height: 100dvh;
  }

  main.home #hero .cta-main {
    margin-top: 20px;
  }
}
/* RESPONSIVE MEDIA QUERY */
