/* first of all i am gonna make root adn clear that my design matches with my web so will import my all colors and text */

/* now i will list hte fonts first so i dont mess any thing 
Cinzel           →  FAZLE RABI logo, numbers, labels
luxury roman letterforms

Cormorant Garamond →  big headings, titles, quotes
elegant editorial feel

Montserrat       →  body text, nav links, descriptions
clean modern readability */
:root {
  --coal: #050505;
  /* main background — pure black */
  --coal-mid: #0f0e0c;
  /* slightly lighter black */
  --coal-light: #1a1814;
  /* lightest black */
  --gold: #c8970a;
  /* primary gold */
  --gold-bright: #e8b020;
  /* brighter gold — hover states */
  --gold-dim: #7a5a05;
  /* darker gold — subtle text */
  --cream: #f0e8d5;
  /* main text color */
  --cream-dim: #b8a888;
  /* secondary text — nav links */
}
:root {
  --fullwidth: calc(100vw - (100vw - 100%));
}
/* scrollbar track */
::-webkit-scrollbar {
  width: 5px;
}
.no-select-container {
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE10+/Edge */
  user-select: none;         /* Standard syntax */
}
@media screen and (min-width: 1700px) and (max-width: 4000px) {
  ::-webkit-scrollbar {
    width: 10px;
  }
}
::-webkit-scrollbar-track {
  background: var(--coal);
}

/* the moving thumb */
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-bright);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Add to your CSS for smooth initial load */


.cursor-pointer {
  position: fixed;
  min-height: 10px;
  width: 10px;
  border-radius: 50%;
  background: var(--gold-bright);
  z-index: 9900;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: transform 0.3s ease-in;
}

.cursor-ring {
  position: fixed;
  min-height: 45px;
  width: 45px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(232, 176, 32, 0.34);
  z-index: 9990;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: transform 0.2s ease-in;
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  color: var(--cream);
  overflow-x: hidden;

}

main {
  background-color: var(--coal);
  width: 100%;
  min-height: 100vh;
  padding-top: 15vh;
  background-color: var(--coal);
  padding-left: 8vw;
  padding-right: 8vw;
}

/** Nav bar Properties */
nav {
  backdrop-filter: blur(10px);
  min-height: 15vh;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #7a5b0529;
  background: rgba(5, 5, 5, 0.9);
  padding: 0px 4% 0px 4%;
  z-index: 999;
  transition: all 0.4s ease-in-out;
}

.logo {
  max-width: 22%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

.logo-name {
  font-family: "Cinzel", serif;
  color: var(--gold-bright);
  letter-spacing: 2px;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.5vw, 1.3rem);
}

.logo-info {
  font-family: "Cinzel", serif;
  color: var(--cream-dim);
  font-size: clamp(0.7rem, 1vw, 0.7rem);
  font-weight: 500;
  word-spacing: 2px;
  letter-spacing: 4px;
  font-weight: 400;
}

.nav-points {
  font-family: "Montserrat", serif;
  width: 57%;
  min-height: 80%;
  display: flex;
  text-decoration: none;
  list-style: none;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  letter-spacing: 3px;
  gap: 2vw;
}

.nav-as {
  color: var(--cream-dim);
  position: relative;
  text-decoration: none;
  font-size: clamp(0.60rem, 0.75vw, 1rem);
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-as::after {
  content: "";
  position: absolute;
  width: 0px;
  height: 1px;
  background: transparent;
  left: 0;
  bottom: -3px;
  background-color: var(--gold-bright);
  transition: all 0.3s ease;
}

.nav-as:hover {
  color: var(--gold-bright);
}

.nav-as:hover::after {
  width: 100%;
  height: 1px;
}

.inquire-now {
  text-align: center;
  width: 13%;
  padding: 0.9vw;
  border: 1px solid var(--gold-bright);
  color: var(--gold-bright);
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: "Montserrat", serif;
  letter-spacing: 3px;
  font-size: clamp(0.60rem, 0.7vw, 0.9rem);
  font-weight: 500;
}

.inquire-now:hover {
  background: var(--gold-bright);
  color: black;
}

/* Hero section Starting*/

.hero-section {
  position: relative;
  width: 100%;
  gap: 1rem;
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
  z-index: 10;
}

#hero-canvas {
  position: absolute;
  z-index: 2;
  width: 100%;
  min-height: 100%;
  pointer-events: none;
}

.hero-eyebrow {
  color: var(--gold-bright);
  font-size: clamp(0.2rem, 1.7vw, 0.88em);
  letter-spacing: 4px;
  font-family: "Montserrat";
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  margin-left: 7.4vw;
  font: bold;
}

.hero-eyebrow:before {
  content: "";
  position: absolute;
  left: -7vw;
  height: 1px;
  width: 5vw;
  background-color: var(--gold-bright);
}
.hero-coal {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: "Cinzel", serif;
  font-size: clamp(8rem, 20vw, 25rem);
  font-weight: 900;
  letter-spacing: 0.05em;

  color: transparent;
  -webkit-text-stroke: 1px rgba(200, 151, 10, 0.08);
  text-stroke: 1px rgba(200, 151, 10, 0.08);

  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;

  transition: transform 0.1s ease-out;
}
.hero-title {
  width: clamp(17rem, 35vw, 45rem);
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.7rem, 8vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.title-modifier {
  color: var(--gold-bright);
  font-style: italic;
}

.hero-desc {
  color: var(--cream-dim);
  width: clamp(15rem, 33vw, 33rem);
  font-size: clamp(0.65rem, 1vw, 1.3rem);
  font-family: "Montserrat", serif;
  font-weight: 400;
  letter-spacing: 0.15em;
  padding-bottom: 2vw;
}

.hero-actions {
  display: flex;
  gap: 3vw;
  align-items: center;
  transition: all 0.3s ease;
}

.l-btn {
  text-align: center;
  background-color: var(--gold);
  color: var(--coal);
  text-decoration: none;
  font-family: "Montserrat", serif;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: clamp(0.6rem, 0.9vw, 1rem);
  padding: 1.5vh 2.5vw 1.5vh 2.5vw;
  z-index: 3;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.r-btn {
  position: relative;
  text-align: center;
  text-decoration: none;
  font-family: "Montserrat", serif;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: clamp(0.6rem, 0.9vw, 1rem);
  color: var(--cream-dim);
  transition: all 0.4s ease;
}
.r-btn::before {
  content: "";
  position: absolute;
  top: -1.7vh;
  left: -1.5vw;
  width: 15px;
  height: 15px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* bottom right corner */
.r-btn::after {
  content: "";
  position: absolute;
  bottom: -1.7vh;
  right: -1.5vw;
  width: 15px;
  height: 15px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.r-btn:hover::after {
  bottom: -1.5vh;
  right: -1.3vw;
  width: 18px;
  height: 18px;
}
.r-btn:hover::before {
  top: -1.5vh;
  left: -1.3vw;
  width: 18px;
  height: 18px;
}
.l-btn:after {
  position: absolute;
  content: "";
  background-color: var(--gold-bright);
  text-align: center;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  inset: 0;
  transform: translateX(-100%);
  transition: all 0.4s ease;
}

.l-btn:hover::after {
  transform: translateX(0);
}
.r-btn:hover {
  color: var(--gold-bright);
}
.arrow-label {
  display: inline-block; /* ← transform now works */
  transition: transform 0.3s ease;
}

.r-btn:hover .arrow-label {
  transform: translateX(0.5vw);
}

.scroll-text {
  position: absolute;
  bottom: 10vw;
  left: -4vw;
  transform: rotate(90deg);
  width: 10%;
  color: var(--gold-dim);
  font-size: 1vw;
  padding-top: 8vw;
  padding-left: 2vw;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.33333%);
  }
}
.marquee-container {
  overflow: hidden;
  margin: 10vh -8vw 10vh -8vw;
}
.marquee-track {
  background-color: var(--coal-mid);
  border-top: 1px solid rgba(232, 176, 32, 0.34);
  border-bottom: 1px solid rgba(232, 176, 32, 0.34);
  display: flex;
  align-items: center;
  height: 8vh;
  width: max-content;
  gap: 5vw;
  padding: 0 2.5vw;
  animation: marquee 30s linear infinite;
}

.marquee-text {
  white-space: nowrap;
  color: var(--cream-dim);
  font-family: "Montserrat", serif;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: clamp(0.6rem, 1vw, 1rem);
}

/** About sectoin **/
.about {
  padding-top: 8vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8vw;
}

.about-representation {
  position: relative;
  grid-column: 1/2;
  grid-row: 1/2;
  height: clamp(16rem, 40vw, 70rem);
  width: clamp(10rem, 30vw, 60rem);
}
.about-image {
  z-index: 1;
  position: absolute;
  width: 90%;
  height: 88%;
  border: 1px solid #c8980a3c;
  top: -3%;
  right: -5%;
  background-image: url(/assets/WhatsApp\ Image\ 2026-04-05\ at\ 11.01.31\ PM.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}
.about-quote {
  position: absolute;
  z-index: 2;
  border: 1px solid #c8980a8f;
  background-color: var(--coal-mid);
  height: clamp(2rem, 20vh, 15rem);
  width: clamp(2rem, 15vw, 15rem);
  text-align: center;
  display: flex;
  align-items: center;
  bottom: -1vh;
  left: -5vw;
  color: var(--gold);
  font-family: "Cinzel";
  padding-bottom: 20px;
  font-size: clamp(0.7rem, 1vw, 1rem);
}
.est-label {
  position: absolute;
  z-index: 4;
  color: var(--coal);
  background-color: var(--gold);
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  font-family: "Cinzel";
  left: -3vw;
  top: 2%;
  font-size: clamp(0.7rem, 1vw, 1rem);
}

.about-image-frame {
  z-index: 3;
  position: absolute;
  width: 100%;
  height: 90%;
  border: 1px solid #6b51018f;
  top: 5%;
}
.about-info {
  grid-column: 2/3;
  grid-row: 1/2;
  min-height: 40vh;
}
.short-stylized-stats {
  grid-column: 1/3;
  grid-row: 2/3;
}
.about-eyebrow {
  color: var(--gold-bright);
  font-size: clamp(0.6rem, 1.2vw, 0.88em);
  letter-spacing: 4px;
  font-family: "Montserrat";
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  margin-left: 3vw;
  font: bold;
}

.about-eyebrow:before {
  content: "";
  position: absolute;
  left: -3vw;
  height: 1px;
  width: 2vw;
  background-color: var(--gold-bright);
}
.highlights {
  color: VAR(--cream);
  font-weight: bold;
}
.about-info {
  display: flex;
  flex-direction: column;
  gap: 4vh;
}
.about-title {
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.3rem, 4vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.about-desc {
  color: var(--cream-dim);
  font-size: clamp(0.6rem, 0.8vw, 1.3rem);
  font-family: "Montserrat", serif;
  font-weight: 300;
  letter-spacing: 0.15em;
  padding-bottom: 2vw;
  line-height: 2.2;
  transform: scaleY(1.2);
}
.about-separator {
  background-color: #c8980a3e;
  min-height: 1px;
  width: 100%;
}

.profile-card {
  display: flex;
  gap: 1vw;
  align-items: center;
}

.profile-photo {
  border-radius: 50%;
  background: linear-gradient(#c8970a, #7a5a05);
  padding: 1.5vw;
  color: var(--coal);
  font-family: "Cormorant Garamond", serif;
  font-weight: bolder;
  letter-spacing: 1px;
}
.profile-desc {
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(0.65rem, 0.8vw, 1.4rem);
}
.profile-name {
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.1rem, 1.6vw, 2rem);
}

.short-stylized-stats {
  background-color: var(--coal-mid);
  margin-left: -8vw;
  margin-right: -8vw;
  height: 60vh;
  border-top: 1px solid #c8980a3c;
  border-bottom: 1px solid #c8980a3c;
  display: flex;
  justify-content: center;
  align-items: center;
}

.styled-about-cards {
  width: 20%;
  height: 50%;
  background-color: #151310;
  padding: 7vh 3vw 6vh 3vw;
  position: relative;
  overflow: hidden;
}
.styled-about-cards::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #c8970a;
  transform: translateX(-100%);
  transition: all 0.4s ease-out;
}
.styled-about-cards-c {
  width: 20%;
  height: 50%;
  background-color: #151310;
  padding: 7vh 3vw 6vh 3vw;
  border-right: 1px solid #c8980a27;
  border-left: 1px solid #c8980a27;
  position: relative;
  overflow: hidden;
}
.styled-about-cards-c::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #c8970a;
  transform: translateX(-101%);
  transition: all 0.3s ease-in-out;
}
.styled-about-cards-c:hover::after {
  transform: translateX(0%);
}
.styled-about-cards:hover::after {
  transform: translateX(0%);
}
.stylized-card-title {
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.6vw, 4rem);
  text-align: center;
  margin-bottom: 1vh;
}
.stylized-label {
  font-size: clamp(0.9rem, 2vw, 2rem);
}
.stylized-card-desc {
  margin-top: 1vh;
  color: var(--cream-dim);
  font-family: "Cinzel", serif;
  letter-spacing: 1px;
  font-size: clamp(0.6rem, 1.2vw, 1rem);
}

/** Srvices SEction ; **/

.services {
  display: flex;
  flex-direction: column;
  gap: 8vh;
  margin-top: 5vh;
}

.service-intro {
  display: flex;
  justify-content: space-between;
}
.services-title-container {
  display: flex;
  flex-direction: column;
  gap: 2vh;
}
.services-eyebrow {
  color: var(--gold-bright);
  font-size: clamp(0.5rem, 1.7vw, 0.88em);
  letter-spacing: 4px;
  font-family: "Montserrat";
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  margin-left: 3vw;
  font: bold;
}

.services-eyebrow:before {
  content: "";
  position: absolute;
  left: -3vw;
  height: 1px;
  width: 2vw;
  background-color: var(--gold-bright);
}

.services-title {
  width: clamp(10rem, 28vw, 24rem);
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.services-intro-desc {
  border: none;
  text-align: center;
  display: flex;
  align-items: center;
  padding: 0vh 2vw;
  position: relative;
  color: var(--cream-dim);
  font-family: "Montserrat";
  width: 40%;
  font-size: clamp(0.8rem, 1vw, 1.3rem);
}

/* top left corner */
.services-intro-desc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

/* bottom right corner */
.services-intro-desc::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
.services-representative {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: center;
  justify-content: center;
}
.services-representative-cards {
  min-height: clamp(18rem, 40vh, 60rem);
  display: flex;
  flex-direction: column;
  gap: 3vh;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(218, 165, 32, 0.132);
  padding: 2vw;
  position: relative;
}
.services-representative-cards:hover {
  background-color: rgba(201, 179, 123, 0.158);
}
.s-r-icon-container {
  width: max-content;
  height: max-content;
  padding: 2vh;
  color: #2e2e2e;
  border: 1px solid rgba(218, 165, 32, 0.113);
  transition: all 0.4s ease-in-out;
  font-size: clamp(1.2rem, 1.4vw, 2rem);
  filter: grayscale(100%);
}
.services-representative-cards:hover .s-r-icon-container {
  width: max-content;
  height: max-content;
  padding: 2vh;
  color: #2e2e2e;
  background-color: goldenrod;
  border: 1px solid goldenrod;
  filter: none;
}
.s-r-titles {
  font-weight: 600;
  font-family: "Montserrat";
  font-size: clamp(1rem, 2vw, 2rem);
}
.s-r-desc {
  color: var(--cream-dim);
  font-family: "Cormorant Garamond";
  font-size: clamp(0.9rem, 1vw, 2rem);
}

.serivces-representative-count {
  font-size: clamp(0.6rem, 0.8vw, 2rem);
  color: var(--gold-dim);
}
.style-indicator {
  position: absolute;
  bottom: 20px;
  right: 30px;
  visibility: hidden;
  color: #c8970a;
  transition: all 0.4s ease-in-out;
  font-size: clamp(0.6rem, 1.25vw, 2rem);
}
.services-representative-cards:hover .style-indicator {
  visibility: visible;
}

.gallery {
  background-color: var(--coal-mid);
  margin: 10vh -8vw;
  padding: 10vh 8vw;
  display: flex;
  flex-direction: column;
  gap: 6vh;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gallery-title {
  width: clamp(15rem, 35vw, 35rem);
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.5vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-top: 2vh;
}

.gallery-eyebrow {
  color: var(--gold-bright);
  font-size: clamp(0.4rem, 1.2vw, 0.88em);
  letter-spacing: 4px;
  font-family: "Montserrat";
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  margin-left: 3.4vw;
  font: bold;
}

.gallery-eyebrow:before {
  content: "";
  position: absolute;
  left: -3vw;
  height: 1px;
  width: 2vw;
  background-color: var(--gold-bright);
}

.gallery-navpoint {
  color: var(--cream-dim);
  text-decoration: none;
  font-family: "Montserrat";
  font-size: clamp(0.7rem, 1vw, 1rem);
}
.gallery-navpoint:hover {
  color: var(--gold-bright);
}
.gallery-navpoint:hover .arrow-label {
  transform: translateX(4px);
}
.gallery-stuff {
display: flex;
  flex-direction: column;  /* stack rows */
  width: 100%;
  gap: 2vh;
}

.gallery-image-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(200,151,10,0.1);
  position: relative;
  cursor: none;

  transition: opacity 0.3s ease, transform 0.3s ease;
} 

.gallery-image-container:first-child {
  border-top: 1px solid rgba(200,151,10,0.1);
}

.gallery-image-container:hover {
  padding-left: 1rem;  /* slight indent on hover */
}

.gallery-num {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  color: var(--gold-dim);
  letter-spacing: 0.2em;
  min-width: 2rem;

}

.gallery-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  color: var(--cream-dim);
  flex: 1;
  transition: color 0.3s ease;
  letter-spacing: 0.05em;
  touch-action: none;

}

.gallery-image-container:hover .gallery-label {
  color: var(--cream);
}

.gallery-arrow {
  font-size: 1.2rem;
  color: var(--gold-dim);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-10px);
}

.gallery-image-container:hover .gallery-arrow {
  opacity: 1;
  color: var(--gold-bright);
  transform: translateX(0);
}

/* floating image */
.gallery-image {
  position: fixed;   /* fixed — follows cursor anywhere */
  width: 470px;
  height: 270px;
  object-fit: cover;
  object-position: center 20%;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  transition: opacity 0.3s ease,
              transform 0.3s ease;
  transform: translate(-50%, -50%);

}

/** Quote SEction **/
.quote-sec {
  display: flex;
  flex-direction: column;
  height: 60vh;
  justify-content: space-between;
  align-items: center;
  margin: 15vh 0vw;
  position: relative;
}
.styled-seprator {
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--gold) 30%,
    var(--gold-bright) 50%,
    var(--gold) 70%,
    transparent
  );
}
.quote-sec p {
  width: clamp(15rem, 75vw, 65rem);
  color: var(--cream);
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 4rem);
  text-align: center;
}
.quote-sec::before {
  content: '"'; /* The quotation mark character */
  position: absolute;
  top: -16vh;
  left: 50%;
  transform: translateX(-50%); /* Centers it */
  font-family: "Cormorant Garamond", serif;
  font-size: 30vh; /* MASSIVE size */
  color: rgba(200, 151, 10, 0.04); /* Super faint gold (4% opacity) */
  line-height: 1;
  pointer-events: none; /* Won't block clicks */
}
.ceo-info {
  font-family: "Montserrat";
  color: var(--gold-bright);
  font-size: clamp(0.7rem, 1vw, 3rem);
  text-align: center;
}
.ceo-info::before {
  justify-self: center;
  margin-bottom: 2vh;
  content: "";
  display: block;
  width: 40%;
  height: 1px;
  background-color: var(--gold-bright);
}

/** process SEction**/

.process {
  display: flex;
  flex-direction: column;
  gap: 7vh;
  position: relative;
  align-items: center;
  background-color: var(--coal-light);
  margin: 0 -8vw;
  padding: 12vh 0vh;
}

.process-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.processheader-label {
  font-size: clamp(0.7rem, 1vw, 2rem);
  letter-spacing: 3px;
  font-family: "Montserrat";
  font-weight: 400;
  color: var(--gold-bright);
  position: relative;
}
.processheader-label::before {
  position: absolute;
  top: 50%;
  left: -5vw;
  content: "";
  display: block;
  width: clamp(0.9rem, 3.5vw, 3.5rem);
  height: 1px;
  background-color: var(--gold-bright);
}
.processheader-label::after {
  position: absolute;
  top: 50%;
  right: -5vw;
  content: "";
  display: block;
  width: clamp(0.9rem, 3.5vw, 3.5rem);
  height: 1px;
  background-color: var(--gold-bright);
}
.process-header-title {
  width: clamp(18rem, 40vw, 40rem);
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 5.5vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-top: 2vh;
}

.process-steps-section {
  position: relative;
  width: 100%;
  margin-top: 6vh;
}

.process-core-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3vw;
  width: 100%;
  max-width: 90vw;
  position: relative;
  align-items: start;
  list-style: none;
  margin: 0 auto;
}

/* CONNECTING LINE across all steps */
.process-steps-section::before {
  content: "";
  position: absolute;
  top: clamp(20px, 2vw, 35px);
  left: 13.5%;
  right: 13.5%;
  height: 1px;
  background: linear-gradient(
    to right,
    var(--gold-dim),
    var(--gold),
    var(--gold-bright),
    var(--gold),
    var(--gold-dim)
  );
  z-index: 1;
}

.process-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2vh;
  padding: 0 1.5vw;
  position: relative;
  z-index: 2;
  list-style: none;
}

.process-roman-container {
  width: clamp(40px, 4vw, 70px);
  height: clamp(40px, 4vw, 70px);
  border: 1.5px solid var(--gold-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cinzel", serif;
  font-size: clamp(0.8rem, 1.3vw, 2rem);
  font-weight: 700;
  color: var(--gold-bright);
  background-color: var(--coal-light);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

/* Hover effect - fill circle with gold */
.process-steps:hover .process-roman-container {
  background: var(--gold-bright);
  color: var(--coal);
  box-shadow: 0 0 30px rgba(232, 176, 32, 0.3);
}

/* STEP TITLE - "Initial Inquiry", etc */
.process-step-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--cream);
  margin-top: 1vh;
}

/* STEP DESCRIPTION TEXT */
.process-step-desc {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.8rem, 1.05vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.8;
  color: var(--cream-dim);
  max-width: 180px;
  transition: color 0.3s ease;
}

/* Description text color on hover */
.process-steps:hover .process-step-desc {
  color: var(--gold-bright);
}

/** Form section  **/
.contact-us {
  display: flex;
  flex-direction: column;
  padding: 10vh 0vw;
  gap: 7vh;

}

.contact-us-label {
  color: var(--gold-bright);
  font-size: clamp(0.6rem, 1.2vw, 0.88em);
  letter-spacing: 4px;
  font-family: "Montserrat";
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  margin-left: 3vw;
  font: bold;
}

.contact-us-label:before {
  content: "";
  position: absolute;
  left: -3vw;
  height: 1px;
  width: 2vw;
  background-color: var(--gold-bright);
}

.contact-us-title {
  color: var(--cream);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  width: 70vw;
  margin-top: 2vh;
}

.contact-us-core-content {
  display: flex;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3vh;
  justify-content: space-between;
  padding-top: 5.5vh;
  width: 50%;
}

.contact-info-piece {
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-template-rows: max-content max-content;
  width: clamp(10rem, 80%, 50rem);
  position: relative;
  gap: 1vw;
}
.contact-info-piece::after {
  position: absolute;
  bottom: -30%;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(232, 176, 32, 0.24);
}

.info-icon {
  grid-column: 1/2;
  grid-row: 1/3;
}
.content-info-icon {
  border: 0.1px solid rgba(232, 176, 32, 0.24);
  font-size: clamp(0.6rem, 1.5vw, 2rem);
  color: var(--gold-bright);
  width: max-content;
  padding: 0.5vw;
}

.info-piece-heading {
  display: flex;
  grid-column: 2/3;
  grid-row: 1/2;
  font-size: clamp(0.9rem, 0.7vw, 1rem);
  font-family: "Montserrat";
  color: rgba(232, 176, 32, 0.64);
}

.span-info-details {
  grid-column: 2/3;
  grid-row: 2/3;
  text-decoration: none;
  color: var(--creamt);
  font-family: "Cormorant Garamond";
  font-size: clamp(1.4rem, 1.3vw, 1.3rem);
  font-weight: 600;
}
/** media queries **/
.contact-form {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 5vh;
    padding-top:3vh
}
.contact-us-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(232, 176, 32, 0.24);
  padding: 2vh 0vh 0vh 0vw;
  color: var(--cream);
  font-family: "Montserrat";
  letter-spacing: 1px;
  text-align: start;
  font-size: clamp(0.75rem, 0.9vw, 2rem);
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  height: 8vh;
  overflow: hidden;
}

/** form tweaks **/
.contact-us-input:-webkit-autofill,
.contact-us-input:-webkit-autofill:hover,
.contact-us-input:-webkit-autofill:focus,
.contact-us-input:-webkit-autofill:active {
  transition: #050505 5000s ease-in-out 0s;

  /* This overrides the browser's default yellow/blue background */
  -webkit-box-shadow: 0 0 0px 1000px #050505 inset !important;
  box-shadow: 0 0 0px 1000px #050505 inset !important;

  /* Correctly sets your text color */
  -webkit-text-fill-color: #f0e8d5 !important;
}
.textA-contact {
  height: 15vh;
  padding-top: 4vh;
}
.contact-us-input::placeholder {
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.contact-us-input:focus {
  outline: none;
  border-bottom: 1px solid var(--gold-bright);

}
.contact-us-input:focus::placeholder {
  font-size: clamp(0.5rem, 0.75vw, 1rem);
  transform: translateY(-3vh);
    color:var(--gold-bright)
}
.submit {
  font-family: "Montserrat";
  color: var(--gold-bright);
  background-color: transparent;
  border: none;
  border: 1px solid rgba(232, 176, 32, 0.64);
  width: max-content;
  padding: 1.4vh 4vw;
  align-self: center;
  position: relative;
  transition: all 0.3s ease-in;
  overflow: hidden;
  z-index: 2;
  font-size: clamp(1rem, 1vw, 1.3rem);
}
.submit::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--gold-bright);
  transform: translateX(-100%);
  transition: all 0.35s ease-in-out;
  z-index: 1;
}
.submit:hover {
  color: #050505;
}
.submit:hover::after {
  top: 0;
  left: 0;
  transform: translateX(0);
  background-color: var(--gold-bright);
  z-index: -1;
}
.form-title{
  margin-top: 2vh;
  font-family: "Cinzel", serif;
  color:var(--cream);
  text-align: center;
  font-size:clamp(2rem ,4vw ,4rem);
  border:1px solid rgba(179, 140, 43, 0.64)
}
/** overall page tweaks **/
a:hover,
button:hover {
  cursor: pointer;
}
input:hover {
  cursor: text;
}


/** footer content **/ 
footer{
   padding-left: 8vw;
  padding-right: 8vw;
    background-color:var(--coal-mid);
    padding:10vh 8vw
}
.footer-content {
  display:flex;
  justify-content: space-between;
  position: relative;
  padding-bottom:4vh;
}

.info-f{
  display: flex;
  flex-direction:column;
  width: 35%;
  gap:3vh;
}

.logo-f{
  min-width:100%;
  gap:0.5vh;
}
.logo-name-f{
  font-size:clamp(1.4rem , 2vw , 2rem)
}
.logo-info-f{
  color:rgba(232, 176, 32, 0.64);
  
}
.footer-info{
  color:#b8a888;
  font-family:"Montserrat";
  font-size:clamp(0.7rem , 0.9vw , 1.2rem);
  line-height: 1.5;
}
.footer-nav-ulist {
display: flex;
  flex-direction:column;
  gap:1.7vh;

}
.footer-list-label{
  font-family:"Cinzel";
  color:var(--gold);
  margin-bottom:3.5vh;
  display: block;
}

.footer-lists{
  text-decoration: none;

  list-style:none
}
.lists-a{
  text-decoration: none;
  color:var(--cream);
  font-family: "Montserrat";
  transition:all 0.2s ease-in-out 
}
.lists-a:hover{
  color:var(--gold-bright);

}
.footer-content:after {
  content:"";
  position: absolute;
  bottom:0;
  width: 100%;
  height:1px;
  background-color: rgba(232, 176, 32, 0.3);
}
.copy-right-content{
  display :flex;
  justify-content: space-between;
  padding-top: 10vh;
  position: relative;
}

.copy-right {
  color:var(--gold-dim);
  font-family:"Montserrat";
  text-align: center;
  font-size:clamp(0.6rem , 0.6vw , 2rem);
}

.profile-links{
  border: 1px solid var(--gold-dim);
  padding:1vw;
  font-size:clamp(0.77rem , 0.77vw , 2rem);
    text-decoration: none;
      color:var(--gold-dim);
      margin:1vw;
      transition: 0.2s all ease;
}
.profile-links:hover{ 
  background-color: var(--gold-bright);
  color:var(--coal)
}
.developer-info {
  position:absolute;
  font-size:clamp(0.3rem , 0.4vw , 1rem);
  bottom:-7vh;
  left:1%;
  z-index: 2;
  color:var(--cream-dim);
  font-family:"Montserrat";
}

@media (max-width: 580px) {
  nav {
    display: flex;
    flex-direction: space-around;
    width:100vw;
  }
  .nav-points {
    display: none;
  }
  .logo {

    width: 50%;
    height:60%;
    padding: 1vh 2vw;
    font-size: clamp(0.6rem , 1.5vw , 2rem);text-align: center;
  }
  .logo-info{
        font-size: clamp(0.6rem , 1.5vw , 2rem);
  }
  .logo-name{
     font-size: clamp(1.2rem , 2.5vw , 2rem);
  }
  .inquire-now{
    width: 40%;
    height:60%;
    padding: 1vh 2vw;
    font-size: clamp(0.6rem , 1.5vw , 2rem);
  }
  .about {
    padding-top: 8vh;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 4vw;
  }
  .about-representation {
    position: relative;
    grid-column: 1/2;
    grid-row: 1/2;
    height: clamp(19rem, 40vw, 70rem);
    width: clamp(12rem, 30vw, 60rem);
    justify-self: center;
  }
  .about-info {
    grid-column: 1/2;
    grid-row: 2/3;
    min-height: 60vh;
  }
  .short-stylized-stats {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  .services-intro-desc {
    border: none;
    text-align: center;
    display: flex;
    align-items: center;
    padding: 0vh 2vw;
    position: relative;
    color: var(--cream-dim);
    font-family: "Montserrat";
    width: 50%;
    font-size: clamp(0.6rem, 1vw, 1.3rem);
  }
  .services-intro-desc::after {
    bottom: -3px;
  }
  .services-intro-desc::before {
    top: -3px;
  }

  .services-representative {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: center;
    justify-content: center;
  }
  .services-representative-cards {
    height: clamp(15rem, 30vh, 50rem);
    display: flex;
    flex-direction: column;
    gap: 3vh;
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(218, 165, 32, 0.132);
    padding: 3vw;
    position: relative;
  }
  .s-r-icon-container {
    font-size: clamp(1rem, 1.4vw, 2rem);
    align-self: center;
  }
  .s-r-titles {
    font-weight: 600;
    font-family: "Montserrat";
    text-align: center;
    font-size: clamp(1rem, 2vw, 2rem);
  }
  .s-r-desc {
    color: var(--cream-dim);
    font-family: "Cormorant Garamond";
    font-size: clamp(0.8rem, 1vw, 2rem);
    text-align: center;
  }
  
  .contact-form,
  .contact-info {
    width: 100%;

  }
.contact-us-core-content {
  display: flex;
  flex-direction: column;
    
}
.contact-form{
  padding-top:5vh
}
  .contact-us-title {
    width: 100%; /* not 70vw */
  }
  .process-core-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80vw;
    gap: 5vh;
  }
  .process-steps-section::before {
    content: none;
  }
  .process-steps {
    width: 100%;
  }
  .process-step-desc {
    min-width: 80%;
  }
  .gallery-image{
    width:300px;
    height: 200px;
  }
  .footer-content{
    display: grid;
    justify-items: center;
    gap:5vh;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .info-f{
    width:70%;
    grid-row:1/2;
    grid-column: 1/3;
  }
  .copy-right-content{
    flex-direction:column;
    gap:5vh;
    align-items:center
  }
  .copy-right{
    font-size:clamp(0.7rem , 1vw , 2rem);
  }

}
@media (min-width:1600px){
.hero-title{
  width:  clamp(40rem , 35vw , 55rem);;
  font-size: clamp(10rem , 8vw , 8rem);
}
}
/** Animaton fade in Tweaks**/

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}

/* Active state: Visible and at original position */
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/** dom staclong issue fix**/

