/* 	

  --------COLOR-------

  •	Primary Color (Elegant & Trustworthy): Deep Navy Blue #1E3A5F
	•	Secondary Color (Luxury & Quality): Rich Gold #D4A373
	•	Accent Color (Eco-Friendly Touch): Soft Green #6D9773
	•	Background (Clean & Minimal): Warm White #F9F9F9
	•	Text Color (Readability): Dark Charcoal #333333 
  Green Text (Eco) :#ebfaee
  •	Nav Text Color (Readability): White #FFFFFF
  Foote bg: #151617
  Foote txt: #626262
  Foote icon: #e1e1e1
  Foote icon bg: #1e3a5f
  
  

  --------TYPOGRAPHY-------
	•	Heading Font : Playfair Display (Serif)
	•	Body Font : Inter or Lato (Sans-serif)
	•	Button Font : Poppins (Sans-serif)

  --------BUTTONS-------

  Primary Button Style:
	•	Background: Deep Navy Blue #1E3A5F
	•	Text: White #FFFFFF
	•	Border: Rounded (border-radius: 8px)
	•	Hover Effect: Gold background #D4A373, white text

  Secondary Button Style:
	•	Border: Gold Outline 2px solid #D4A373
	•	Text: Gold #D4A373
	•	Hover: Gold Background #D4A373, Navy Text

  --------FONT SIZES (PX)-------
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

  --------SPACING SYSTEM (PX)-------
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128 

  */

:root {
  --primary-clr: #1e3a5f;
  --secondary-clr: #d4a373;
  --accent-clr: #6d9773;
  --bg-clr: #f6f5ed;
  --text-clr: #333;
  --wht-txt-clr: #fff;
  --eco-text: #ebfaee;
  --footer-bg: #151617;
}

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

html {
  font-size: 62.5%;
  overflow-x: hidden !important;
  /* scroll-behavior: smooth; */
}

body {
  font-family: "Rubik", sans-serif;
  color: var(--text-clr);
  background-color: var(--wht-txt-clr);
  line-height: 1;
  overflow-x: hidden;
}

/****************************************/

/* HEADER SECTION */

/****************************************/

::-webkit-scrollbar {
  background-color: var(--footer-bg);
  width: 7px;
}
::-webkit-scrollbar-thumb {
  background-color: #d4a373;
}

.header-height {
  height: 100vh;
}

.section-header {
  margin-bottom: 9.6rem;
}

/* Mobile Navigation */
.btn-mobile-nav {
  text-decoration: none;
  background-color: transparent;
  border: none;
  color: var(--wht-txt-clr);
  display: none;
}

.btn-mobile-nav i {
  font-size: 3.6rem;
}

.btn-mobile-nav:hover {
  cursor: pointer;
}

#myVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#bg-mobile {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.font-playfair {
  font-family: "Playfair Display", sans-serif;
}

.overlay {
  border-image: linear-gradient(rgba(0, 0, 0, 0.467), rgba(0, 0, 0, 0.816)) fill
    1;
}
.header-bg-color {
  background-color: var(--footer-bg);
}
.main-nav-list {
  display: flex;
  gap: 4.8rem;
  list-style: none;
  justify-content: center;
}

.main-nav-list a {
  color: var(--wht-txt-clr);
  font-size: 1.8rem;

  text-decoration: none;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-logo {
  width: 13.5rem;
  height: 6rem;
}

.logo-text {
  width: 16rem;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4.8rem;
  height: 9.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.header-primary {
  font-size: 6.2rem;
  font-weight: 600;
  line-height: 1.1;
  font-family: "Playfair display", serif;
  color: var(--secondary-clr);
  margin-bottom: 3.2rem;
}

.paragraph-text {
  font-size: 2rem;
  line-height: 1.8;
  margin-bottom: 3.2rem;
  color: var(--wht-txt-clr);
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  text-transform: uppercase;
  padding: 2.4rem 4.8rem;
  border-radius: 0.8rem;
  transition: all 0.3s ease;
}

.primary-btn:link,
.primary-btn:visited {
  color: var(--wht-txt-clr);
  background-color: var(--primary-clr);
}

.primary-btn:hover,
.primary-btn:active {
  color: var(--wht-txt-clr);
  background-color: var(--secondary-clr);
}

.btn-margin-right {
  margin-right: 2.4rem;
}

.secondary-btn:link,
.secondary-btn:visited {
  color: var(--secondary-clr);
  box-shadow: 0 0 0 2px var(--secondary-clr);
}

.secondary-btn:hover,
.secondary-btn:active {
  background-color: var(--secondary-clr);
  color: #1e3a5f;
}

.hero-section {
  max-width: 130rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

/****************************************/

/* ABOUT SECTION */

/****************************************/

.section-about {
  padding: 9.6rem 2.4rem;
}

.container-nav {
  position: relative;
}

.container,
.container-contact {
  max-width: 120rem;
  margin: 0 auto;
}

.about-container {
  display: flex;
  gap: 4.8rem;
}

.about-container img {
  width: 50rem;
  height: 100%;
  object-fit: cover;
  border-radius: 0.8rem;
}

.primary-title {
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--secondary-clr);
  letter-spacing: 1.2px;
  margin-bottom: 6.4rem;
}

.secondary-title {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 3.2rem;
}

.about-txt {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 3.2rem;
}

/****************************************/

/* PRODUCTS SECTION */

/****************************************/

.section-products {
  padding: 9.6rem 0;
  text-align: center;
}

.product-sec-margin {
  margin-bottom: 6.4rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  overflow: hidden;
  padding: 0 2.4rem;
}

.gallery-item {
  display: block;
  width: 100%;
  border-radius: 0.8rem;
}

.gallery-overlay {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.gallery-overlay::before {
  content: "";
  color: #d4a373;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--text-clr);
  z-index: 1;
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-overlay:hover::before {
  opacity: 0.6;
}

.gallery-overlay .info {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.8s ease;
  transform: translate(-100%, -100%);
}

.gallery-overlay:hover .info {
  transform: translate(25%, -100%);
  visibility: visible;
  opacity: 1;
  text-shadow: 2px 2px 5px #333;
}

.img-title {
  font-size: 2rem;
  font-weight: 500;
}

.item-click {
  text-decoration: none;
  color: var(--wht-txt-clr);
}

.gallery-item {
  transition: all 0.4s ease;
}

.gallery-overlay:hover .gallery-item {
  transform: scale(1.2);
}

.viewall {
  display: inline-block;
  margin: 4.8rem 0;
  transition: all 0.3s ease;
}

.anim {
  overflow: hidden;
  transition: all 0.3s ease;
}

.anim img:hover {
  transform: scale(1.2);
}

/****************************************/

/* CHOOSE US SECTION */

/****************************************/

.section-choose {
  padding: 4.8rem 0 9.6rem 0;
}

.centre {
  text-align: center;
}

.grid {
  display: grid;
}

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

.grid--3--cols {
  grid-template-columns: repeat(3, 1fr);
}

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

.choose-icon {
  display: inline-block;
  font-size: 3.6rem;
  color: var(--secondary-clr);
  margin-bottom: 2.4rem;
}

.choose-icon,
.title-margin {
  margin-bottom: 2.4rem;
}

.title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
}

.subtxt {
  font-size: 1.8rem;
  line-height: 1.8;
  /* color: #e9ebef; */
  text-decoration: none;
  display: block;
}

.container-trust {
  gap: 4.8rem;
}

/****************************************/

/* FACTORY SECTION */

/****************************************/

.section-factory {
  padding: 9.6rem 0;
}

.list-style {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.grid-gap-fac {
  column-gap: 2.4rem;
  row-gap: 3.2rem;
}

/****************************************/

/* ETHICS SECTION */

/****************************************/

.section-ethics {
  padding: 9.6rem 0;
  background-color: var(--accent-clr);
  color: var(--eco-text);
}

#eco-color {
  color: #ebfbee;
}

.ethics-icon {
  font-size: 3.6rem;
  color: #63e6be;
}

.ethics-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}

.ethics-gap-cols {
  gap: 2.4rem;
}

/****************************************/

/* NEW C2A SECTION */

/****************************************/

.section-call {
  background-color: var(--primary-clr);
  padding: 9.6rem 0;
}
.cont-grid {
  gap: 3.2rem;
  justify-content: center;
  align-content: center;
}
.cont-subhead {
  margin-bottom: 6.4rem;
}
#g-color {
  color: var(--secondary-clr);
}
.section-call h2,
.section-call p {
  color: #e9ebef;
}
.call-icon {
  font-size: 3rem;
  color: #d4a373;
}
.call-container {
  display: flex;
  align-content: center;
  gap: 2.4rem;
  margin-bottom: 1.8rem;
}
.mrg-0 {
  margin-bottom: 0;
  align-self: center;
}
.address,
.number,
.mail {
  justify-self: center;
}
/****************************************/

/* C2A SECTION */

/****************************************/

.section-c2a {
  padding: 4.8rem 0 12.8rem 0;
}

.c2a-grid {
  /* 2/3 = 66.6 1/3 = 33.3 */
  grid-template-columns: 2fr 1fr;
  /* background-color: #63e6be; */
  border-radius: 8px;
  background-image: linear-gradient(
    to right bottom,
    rgb(30, 58, 95),
    rgb(75, 97, 127)
  );
  overflow: hidden;
}

.c2a-img {
  background-image: linear-gradient(
      to right bottom,
      rgba(30, 58, 95, 0.206),
      rgba(75, 97, 127, 0.206)
    ),
    url(../img/bg-c2a.jpeg);
  background-size: cover;
  background-position: center;
}

.c2a-title {
  color: #e9ebef;
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
}

.c2a-txt {
  font-size: 1.8rem;
  line-height: 1.8;
}

.c2a-form {
  margin-top: 4.8rem;
}

.input-box {
  position: relative;
}

.input-box input,
.input-box textarea {
  width: 50rem;
  padding: 1.2rem;
  color: var(--secondary-clr);
  font-family: inherit;
  font-size: 1.8rem;
  background-color: transparent;
  border-bottom: 1px solid var(--secondary-clr);
  border-left: 1px solid transparent;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.input-box span {
  position: absolute;
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1rem;
  top: 0;
  left: 0;
  transition: all 0.4s ease;
}

.input-box input:valid ~ span,
.input-box input:focus ~ span,
.input-box textarea:valid ~ span,
.input-box textarea:focus ~ span {
  color: var(--secondary-clr);
  transform: translateY(-16px);
  font-size: 1.4rem;
  background-color: transparent;
  padding: 0 3px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.input-box input:valid,
.input-box input:focus,
.input-box textarea:valid,
.input-box textarea:focus {
  outline: none !important;
  border: 1px solid var(--secondary-clr);
  background-color: transparent;
}

.margin-box {
  margin-bottom: 4.8rem;
}

.form-btn {
  font-size: 2rem;
  color: var(--secondary-clr);
  background-color: transparent;
  /* outline: none; */
  border: 1px solid var(--secondary-clr);
  box-shadow: 0 0 0 1px var(--secondary-clr);
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-btn:hover {
  background-color: var(--secondary-clr);
  color: var(--primary-clr);
}

/****************************************/

/* FOOTER */

/****************************************/

.footer {
  padding: 12.8rem 0;
  background-color: #151617;
}

.grid--footer {
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
  gap: 3.2rem;
  padding: 0 2.4rem;
}

.logo-f {
  width: 8rem;
}

.logo-head {
  font-size: 3.6rem;
}

.logo-sub {
  font-size: 1.4rem;
}

.logo-container {
  margin-bottom: 3.2rem;
}

.copyrights {
  font-size: 1.4rem;
  color: #e1e1e1;
  margin-top: 1.6rem;
}

.logo-txt {
  width: 15rem;
}

.copyrights {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  line-height: 1.8;
}

.footer-heading {
  text-transform: uppercase;
  color: var(--secondary-clr);
  font-style: normal;
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 2.4rem;
}

.address-footer {
  font-size: 1.6rem;
  font-style: normal;
  line-height: 1.6;
  color: #e1e1e1;
}

.footer-margin {
  margin-bottom: 2.4rem;
}

address a {
  display: block;
  color: var(--text-clr);
  text-decoration: none;
}

.footer-margin-sm {
  margin-bottom: 1.2rem;
}

.icon-footer {
  font-size: 2.4rem;
  color: #e1e1e1;
}

.add {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}

.hide-f {
  visibility: hidden;
}

.link-footer {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.link-footer li a {
  text-decoration: none;
  color: #e1e1e1;
}

/****************************************/

/* GLOBAL PRESENCE */

/****************************************/

.section-global {
  padding: 9.6rem 0;
}

.world-map {
  margin-bottom: 4.8rem;
}

.content {
  font-size: 4.4rem;
  display: inline-block;
}

.marquee {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 10rem;
  overflow-x: hidden;
}

.marquee:hover .track {
  animation-play-state: paused;
}

.track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.f {
  display: flex;
  /* gap: 5rem; */
}

.f li {
  list-style: none;
  margin-right: 5rem;
}

/****************************************/

/* ACCESSABILITY */

/****************************************/

*:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(212, 163, 115, 0.743);
  border-radius: 3px;
}

/****************************************/

/* CERTIFICATIONS PAGE */

/****************************************/

.section-cert {
  padding: 9.6rem 0;
  margin-bottom: 6.4rem;
}

.cer-grid-gap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  justify-content: center;
  align-items: center;
}

.cer-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 6.4rem;
}

.cer-logo {
  width: 20rem;
  align-self: center;
}

.logo-container-cer {
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
  flex-direction: column;
  border-radius: 0.8rem;
  padding: 3.2rem;
  background-color: rgba(212, 163, 115, 0.203);
}

.cer-heading {
  font-size: 2rem;
  font-weight: 600;
}

.cer-details {
  font-size: 1.8rem;
  line-height: 1.8;
}

/****************************************/

/* SUSTAINABILITY PAGE */

/****************************************/

.section-sustain {
  padding-top: 9.6rem;
  padding-bottom: 6.4rem;
}

.cer-details {
  margin-bottom: 6.4rem;
}

.section-sus-inner h2 {
  text-align: center;
}
.section h2 {
  text-align: center;
  color: #2c3e50;
  font-size: 2.4rem;
}
.grid-su {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  /* padding: 3.2rem 0; */
}
.grid-item {
  background: var(--accent-clr);
  padding: 3.2rem;
  border-radius: 0.8rem;
  text-align: center;
}

.grid-item h3 {
  font-size: 2rem;
  margin-bottom: 3.2rem;
  color: var(--eco-text);
}

.grid-item p {
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: left;
  color: var(--eco-text);
}

/****************************************/

/* ABOUT US PAGE */

/****************************************/

.section-aboutus {
  padding: 9.6rem 0;
}

.story-mb {
  margin-bottom: 9.6rem;
}

.story-container {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 4.8rem;
}

.story-img {
  width: 30rem;
  height: 100%;
  object-fit: cover;
  border-radius: 0.8rem;
}

.story-clr,
.paragraph-clr {
  color: var(--text-clr);
  text-align: left;
}

.story-img-container {
  display: flex;
  gap: 3.2rem;
}

.testimonial-author {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
}

.testimonial-job {
  font-size: 1.8rem;
}

.notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.8rem;
  padding: 9.6rem 2.4rem;
}

.notes img {
  width: 50rem;
  height: 45rem;
  object-fit: cover;
  object-position: top;
  border-radius: 4.1rem;
  padding: 3.2rem;
}

.no-bg {
  background-color: #1e3a5f;
}

.notes-align {
  color: var(--wht-txt-clr);
  padding: 3.2rem;
}

.founder-mar {
  margin-bottom: 6.4rem;
}

.mrg-btm {
  margin-bottom: 9.6rem;
}

.mrg-top {
  margin-top: 9.6rem;
}

.paragraph-nrml {
  font-size: 1.8rem;
  line-height: 1.8;
}

.margn-b-32 {
  margin-bottom: 3.2rem;
}

.gallery-about {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  padding: 0 2.4rem;
  width: 100%;
  height: 100%;
}

.gallery-container-about {
  overflow: hidden;
}

.gallery-item-about {
  display: block;
  width: 100%;
  border-radius: 0.8rem;
  transition: all 0.4s ease;
}

.gallery-item-about:hover {
  transform: scale(1.2);
  border-radius: 0;
}

/****************************************/

/* CONTACT PAGE */

/****************************************/

.form-grid {
  grid-template-columns: 1.5fr 1fr;
  border-radius: 8px;
  background-image: linear-gradient(
    to right bottom,
    rgb(30, 58, 95),
    rgb(75, 97, 127)
  );
  overflow: hidden;
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  gap: 3.2rem;
}

.form-color {
  color: var(--wht-txt-clr);
}

.margn-b-24 {
  margin-bottom: 2.4rem;
}

.margn-b-48 {
  margin-bottom: 4.8rem;
}

.con-add-text {
  font-style: normal;
}

.con-add-text a {
  text-decoration: none;
}

.paragraph-container a {
  color: var(--wht-txt-clr);
}

.contact-heading {
  font-size: 3.6rem;
  font-weight: 700;
}

.card-color {
  color: #e8e8e8;
}

.grid-gap-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
  justify-content: center;
  align-items: center;
}

.card-img {
  width: 30rem;
  align-self: center;
}

.card {
  object-fit: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 0.8rem;
  padding: 3.2rem;
}

.card-name {
  font-size: 2rem;
  font-weight: 600;
  margin-top: 3.2rem;
}

.card-title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-top: 0.8rem;
}

.moni {
  background-color: #5b5c5d;
  padding: 3.2rem;
  border-radius: 0.8rem;
  text-align: center;
}

.card-info {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  text-decoration: none;
  margin-top: 2.4rem;
  display: block;
  color: #e8e8e8;
}

.card-mail {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 0.4rem;
  display: block;
  color: #e8e8e8;
  text-decoration: none;
}

.leadership-team {
  background-color: var(--footer-bg);
  padding: 9.6rem;
  color: #e8e8e8;
}

/****************************************/

/* PRODUCT PAGE */

/****************************************/
.container-tab {
  padding: 2rem;
  text-align: center;
}

.panel-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  gap: 3.2rem;
  margin: 2rem 0;
}

.hide {
  display: none;
}

.margb-b-126 {
  margin-bottom: 12.6rem;
}

.btn-product {
  display: inline-block;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: uppercase;
  padding: 2.4rem 4.8rem;
  border-radius: 0.8rem;
  transition: all 0.3s ease;
  width: 100%;
}

.pro-details {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-top: 6.4rem;
  text-align: left;
}

.primary-btn:link,
.primary-btn:visited {
  color: var(--wht-txt-clr);
  background-color: var(--primary-clr);
}

.primary-btn:hover,
.primary-btn:active {
  color: var(--wht-txt-clr);
  background-color: var(--secondary-clr);
}

.panel-container-product {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
  margin: 2rem 0;
}

.gallery-product {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  overflow: hidden;
  padding: 0 2.4rem;
}

.colr-num {
  color: #e8e8e8;
  display: block;
  text-decoration: none;
}
