/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
    font-family: 'pp-fragment';
    src: url('../font/PPFragment-SerifLight.eot') format('eot'), /* IE6-IE8 */
         url('../font/PPFragment-SerifLight.otf') format('otf'), /* Super Modern Browsers */
         url('../font/PPFragment-SerifLight.ttf') format('ttf'), /* Modern Browsers */
         url('../font/PPFragment-SerifLight.woff') format('woff'), /* Safari, Android, iOS */
         url('../font/PPFragment-SerifLight.woff2') format('woff2'); /* Legacy iOS */
    font-weight: normal;
    font-style: normal;
}

::-webkit-scrollbar {
    display: none;
}

/* NAVBAR */
.navbar {
  position: absolute;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
}

.nav-container {
  width: 80%;
  margin: auto;
  padding: 10px 40px 0px 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo img {
    height: auto;
}

/* LINKS */
.nav-links {
  display: flex;
  gap: 45px;
  list-style: none;
}

.nav-links a {
    font-family: "Manrope", sans-serif;
    color: #000000;
    font-size: 14px;
    letter-spacing: 34%;
    text-decoration: none;
    font-weight: 500;
}

/* SCROLL EFFECT */
.navbar.scrolled {
  position: fixed;
  background: rgb(255 255 255 / 25%);
  backdrop-filter: blur(8px);
  z-index: 99999;
}

.navbar.scrolled .nav-links a {
    color: #AC0755;
}

.navbar.scrolled .hamburger span {
  background: #AC0755;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: #AC0755;
  transition: 0.3s;
}

/* X ANIMATION */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* HOVER EFFECT (ONLY WHEN NOT SCROLLED) */
/* .navbar:not(.scrolled):hover {
  background: #fff;
} */

/* CHANGE TEXT COLOR ON HOVER */
.navbar:not(.scrolled):hover .nav-links a {
  color:#AC0755;
}

/* HAMBURGER COLOR ON HOVER */
.navbar:not(.scrolled):hover .hamburger span {
  background:#AC0755;
}

/* HERO */
.hero {
  height: 99vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* VIDEO */
.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.5s ease-out;
}

/* subtle cinematic effect */
.hero.scrolled .hero-video {
  transform: scale(1.1);
}

/* OVERLAY */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
}

/* ENQUIRY POPUP */
.enquiry-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.65);
  padding: 1.5rem;
}

.enquiry-popup-overlay.active {
  display: flex;
}

.enquiry-popup-box {
  width: min(520px, 100%);
  max-height: min(90vh, 700px);
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  position: relative;
}

.enquiry-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: none;
  background: transparent;
  color: #333;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.enquiry-popup-title {
  margin-bottom: 1.25rem;
}

.enquiry-form .enquiry-input-group {
  margin-bottom: 1rem;
}

.enquiry-form input,
.enquiry-form select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid #d3d3d3;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

.enquiry-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2em;
  padding-right: 2.5rem;
}

.phone-input-wrapper {
  display: flex;
  align-items: center;
      border: 1px solid #efe4cf;
  border-radius: 8px;
  overflow: hidden;
}

.phone-input-wrapper span {
  padding: 0.7rem 0.9rem;
  background: transparent; /* make code badge blend with input */
  border-right: none;
  font-weight: 600;
  color: #8f8f8f;
  min-width: 58px;
}

.phone-input-wrapper input {
  flex: 1;
  border: none;
  padding: 0.95rem 1rem;
  font-size: 1rem;
  background: transparent; /* ensure no inner white box */
}

.enquiry-submit-btn {
  width: 100%;
  padding: 0.95rem 1rem;
  border: none;
  border-radius: 8px;
  background: #ac0755;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

/* TEXT */
.hero-text {
  position: absolute;
  top: 12%;
  width: 100%;
  text-align: center;
}

.hero-text p {
  color:#AC0755;
  font-size: 13px;
  letter-spacing: 6px;
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);
  width: 70px;
  height: 67px;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
}

.play-btn::before {
  content: "";
  position: absolute;
  left: 38%;
  top: 30%;

  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

/* SECTION BG */
.architecture,
.precision {
    background: #FAEDD4;
}

.arch-precision-wrapper {
  position: relative;
  overflow: hidden;
}

.arch-precision-wrapper::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 95%;
  transform: translate(-50%, -50%);
  width: 25%;
  height: 75%;
  background-image: url("../images/watermark-img.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

/* CONTAINER */
.architecture-container,
.precision-container {
  position: relative;
  z-index: 1;
}

.architecture {
    padding: 200px 0;
    width: 100%;
    float: left;
}

.architecture-container {
  width: 75%;
  margin: auto;
  /* padding: 0 40px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 130px;
}

/* IMAGE SIDE */
.arch-image {
  position: relative;
  width: 50%;
}

.arch-image img {
  width: 100%;
  display: block;
}

/* RED CARD */
.arch-card {
    position: absolute;
    bottom: -55px;
    left: 53%;
    background:#AC0755;
    color: #fff;
    padding: 50px;
    width: 400px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.arch-card h3 {
    font-family: 'pp-fragment';
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 0px;
}

.arch-card p {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 2px;
    font-weight: 400;
    color: #E4D9CC;
}

/* RIGHT CONTENT */
.arch-content {
  width: 478px;
}


.arch-content h2 {
    font-family: 'pp-fragment';
    font-size: 63px;
    color: #AC0755;
    margin: 28px 0;
    line-height: 64px;
    font-weight: 300;
}

.arch-content p {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 2px;
    color:#AC0755;
    font-family: "Manrope", sans-serif;
    font-weight: 400;
}


/* SECTION */
/* SECTION */
.precision {
    width: 100%;
   background: #FAEDD4;
    padding: 80px 0;
}

/* CONTAINER */
.precision-container {
    width: 85%;
    max-width: 1400px;
    margin: auto;

    display: flex;
    justify-content: center;
    align-items: center;
    
}

/* LEFT */
.precision-left {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.precision-left .tag {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    color: #1C1B1B;
    line-height: 21px;
    font-weight: 400;
    margin-bottom: 15px;
}

.precision-left h2 {
    font-size: 64px;
    color: #AC0755;
    line-height: 72px;
    font-family: 'pp-fragment';
    font-weight: 300;
    margin-bottom: 25px;
}

.precision-left p {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    letter-spacing: 1px;
    color: #1C1B1B;
    line-height: 28px;
    width: 100%;
    
    text-align: justify;
}

/* BUTTON */
.btn {
    font-family: "Manrope", sans-serif;
    display: inline-block;
    margin-top: 35px;
    background: #AC0755;
    color: #fff;
    padding: 18px 36px;
    font-size: 14px;
    letter-spacing: 2px;
    text-decoration: none;
    width: fit-content;
    transition: 0.3s ease;
}

.btn:hover {
    background: #8d0445;
}

/* RIGHT SIDE */
.precision-right {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Decorative Circle */
.precision-right::before {
    content: "";
    width: 450px;
    height: 450px;
    border: 70px solid rgba(172, 7, 85, 0.25);
    border-radius: 50%;
    position: absolute;
    right: -120px;
}

/* STATS */

  .starts {
    display: flex;
    align-items: center;
    margin-top: 60px;
    gap: 100px;
    width: 100%;
    /* justify-content: space-between; */
}


.stat h3 {
  font-size: 48px;
  color: #AC0755;
}

.stat span {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    color: #1C1B1B;
    font-weight: 400;
    line-height: 19px;
}

/* DIVIDER */
.divider {
    width: 1px;
    height: 100px;
    background: rgba(140, 0, 38, 0.3);
}




/* SECTION */
.pillars {
  background: #fff;
    padding: 170px 0;
    text-align: center;
    width: 100%;
    float: left;
}

/* CONTAINER */
.pillars-container {
  width: 75%;
  margin: auto;
  padding: 0 40px;
}

/* HEADING */
.pillars h2 {
  font-family: 'pp-fragment';
  font-size: 64px;
  color: #AC0755;
  margin-bottom: 80px;
  font-weight: 300;
}

/* GRID */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* BOX */
.pillar-box {
  width: 100%;
  max-width: 360px;
  padding: 50px 35px;
  border: 1px solid rgba(140, 0, 38, 0.3);
  text-align: center;
  transition: all 0.3s ease;
  perspective: 800px;
}

/* ICON */
.pillar-box .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    transition: rotate 0.6s ease, scale 0.6s ease, filter 0.6s ease;
    will-change: rotate, scale;
    rotate: y 0deg;
    scale: 1;
}


/* TITLE */
.pillar-box h3 {
  font-family: 'pp-fragment';
  color: #AC0755;
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 300;
  letter-spacing: 0px;
}

/* TEXT */
.pillar-box p {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  letter-spacing: 2px;
  color: #1C1B1B;
  line-height: 19px;
  font-weight: 400;
}

/* 🔥 HOVER EFFECT (SUBTLE & PREMIUM) */
.pillar-box:hover {
  background: #AC0755;
  color: #fff;
  transform: translateY(-6px);
}

.pillar-box:hover h3,
.pillar-box:hover p {
  color: #fff;
}

/* ICON HOVER */
.pillar-box:hover .icon {
  rotate: y 180deg;
  scale: 1.1;
  filter: brightness(0) invert(1) drop-shadow(0 4px 6px rgba(255,255,255,0.3));
  /* makes icon white with a subtle glow, flips in 3D */
}

/* Tablet: two columns */
@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .pillar-box {
    max-width: 420px;
  }
}



/* SECTION */
.manifesto {
  width: 100%;
 background: #FAEDD4;
  padding: 140px 0;
  float: left;
}

/* CONTAINER */
.manifesto-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 0 40px;
  box-sizing: border-box;
}

/* CONTENT */
.manifesto-left {
  width: 100%;
  max-width: 900px;

  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* TITLE */
.manifesto-left h2 {
    font-family: 'pp-fragment';
    font-size: 56px;
    line-height: 75px;
    font-weight: 400;
    letter-spacing: -1px;
    color: #AC0755;
    margin-bottom: 50px;
}

/* PARAGRAPH */
.manifesto-left p {
    width: 100%;
    max-width: 760px;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    color: #1C1B1B;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 50px;
}

/* SUBHEADING */
.manifesto-left h3 {
  font-family: 'pp-fragment';
  font-size: 38px;
  font-weight: 400;

  color: #AC0755;

  margin-bottom: 35px;
}

/* LIST */
.manifesto-left ul {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 22px;
  flex-wrap: wrap;

  list-style: none;
  padding: 0;
  margin: 0;
}

/* LIST ITEMS */
.manifesto-left ul li {
  font-size: 14px;
  font-family: "Manrope", sans-serif;
  color: #1C1B1B;
  position: relative;
}

/* DIVIDER */
.manifesto-left ul li:not(:last-child)::after {
  content: "|";
  position: relative;
  left: 12px;
  color: #AC0755;
}

/* RESPONSIVE */
@media(max-width: 768px){

  .manifesto{
    padding: 90px 20px;
  }

  .manifesto-left h2{
    font-size: 52px;
    line-height: 1.05;
  }

  .manifesto-left p{
    font-size: 17px;
    line-height: 1.8;
  }

  .manifesto-left h3{
    font-size: 28px;
  }

  .manifesto-left ul li{
    font-size: 18px;
  }
}


/* SECTION */
.founder {
  position: relative;
  background: #AC0755;
  padding: 120px 0;
  overflow: hidden;
}

.founder {
  position: relative;
  background: url(../images/watermark-img.png) no-repeat;
  background-size: 35% auto; /* zoom slightly */
  background-position: left center;
  background-color: #AC0755;
  padding: 130px 0;
  width: 100%;
  float: left;
}

/* CONTAINER */
.founder-container {
     width: 75%;
    /* max-width: 1200px; */
    margin: auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 120px;
    position: relative;
    z-index: 1;
}

/* IMAGE */
.founder-image {
  width: 45%;
}

.founder-image img {
  width: 100%;
  display: block;
}

/* CONTENT */
.founder-content {
  width: 55%;
  color: #fff;
}

/* TAG */
.founder-content .tag {
    font-family: "Manrope";
    font-size: 14px;
    letter-spacing: 3px;
    color: #DFC479;
    font-weight: 400;
    line-height: 20px;
}

/* TITLE */
.founder-content h2 {
    font-family: 'pp-fragment';
    font-size: 42px;
    line-height: 46px;
    margin: 50px 0;
    letter-spacing: 0px;
    font-weight: 300;
}

/* TEXT */
.founder-content p {
  font-family: "Manrope";
  font-size: 18px;
    line-height: 25px;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: 0px;
    font-weight: 400;
}

/* NAME */
.founder-content h4 {
    font-family: 'pp-fragment';
    margin-top: 65px;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 0px;
    line-height: 30px;
}

/* ROLE */
.role {
    font-family: "Manrope";
    font-size: 14px;
    letter-spacing: 0px;
    color: #ffffff;
    font-weight: 400;
    line-height: 20px;
}




/* WRAPPER WITH WATERMARK */
.quarter-landmarks-wrapper{
    position: relative;
    overflow: hidden;
    min-height: 1000px;
    border: 1px solid #efe3d3;
}

.quarter-landmarks-wrapper::before{
    content: "";
    position: absolute;
    top: 29%;
    left: -45%;
    width: 100%;
    height: 33%;
    background: url("../images/watermark-img.png") no-repeat center center;
    background-size: contain;
    opacity: 1;
    z-index: 9999;
}

/* SECTION */
.quarter {
  background: #FAEDD4;
  padding: 200px 0;
  width: 100%;
  float: left;
  position: relative;
  z-index: 2;
}

/* CONTAINER */
.quarter-container {
  width: 75%;
  margin: auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 160px;
}

/* LEFT */
.quarter-left {
  width: 50%;
}

.quarter-left h2 {
    font-size: 64px;
    color: #AC0755;
    line-height: 70px;
    margin-bottom: 80px;
    font-weight: 300;
    letter-spacing: 0px;
}

.quarter-left .desc {
    font-family: "Manrope";
    font-size: 16px;
    color: #5a4a3f;
    line-height: 24px;
    margin-bottom: 40px;
    max-width: 420px;
    letter-spacing: 0px;
    font-weight: 400;
}

/* ITEMS */
.q-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.q-item div{
  width: 65%;
}




  .q-item img {
    width: 50px;
    height: 50px;
}


.q-item h4 {
    color:#AC0755;
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 33px;
}

.q-item p {
    font-family: "Manrope";
    font-size: 14px;
    color: #1C1B1B;
    line-height: 19px;
    letter-spacing: 0px;
    font-weight: 400;
}

/* RIGHT */
.quarter-right {
  width: 50%;
  position: relative;
}

/* IMAGES */
.img {
  position: absolute;
  overflow: hidden;
}

.img img {
  width: 100%;
  display: block;
}

/* IMAGE POSITIONS */
/* IMAGE 1 */
.img1 {
     position: absolute;
    width: 55%;
    top: -265px;
    left: -165px;
}

/* IMAGE 2 */
.img2 {
    position: absolute;
    width: 65%;
    top: -250px;
    right: 20px;
}

/* FLOAT CARD */
.years {
    position: absolute;
    top: 70px;
    right: -20px;
    background: #AC0755;
    color: #fff;
    padding: 50px 50px;
    text-align: center;
}

.years h3 {
    font-family: 'pp-fragment';
    font-size: 48px;
    font-weight: 300;
    line-height: 73px;
    letter-spacing: 0px;
}

.years span {
    font-family: "Manrope";
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 17px;
    font-weight: 400;
}


/* SECTION */
.landmarks {
 background: #FAEDD4;
  padding: 120px 0;
  width: 100%;
  float: left;
  position: relative;
  z-index: 2;
}

/* CONTAINER */
.container {
    margin: auto;
    padding: 0 0px;
    width: 75%;
}

/* HEADER */

.landmarks-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    align-content: center;
}

.landmarks-header h2 {
  font-family: 'pp-fragment';
    font-size: 52px;
    color: #AC0755;
    margin-bottom: 10px;
    font-weight: 300;
    line-height: 70px;
    letter-spacing: 0px;
}

.landmarks-header p {
    font-family: "Manrope";
    font-size: 14px;
    color: #1c1B1B;
    font-weight: 400;
    letter-spacing: 0px;
    line-height: 19px;
}

.view-all {
    font-family: "Manrope";
    font-size: 14px;
    color: #1C1B1B;
    text-decoration: none;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0px;
    text-transform: uppercase;
}

/* GRID */
.landmarks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* All cards share the same simple layout */
.hero-card {
  grid-column: auto;
}

.landmarks-grid .card {
  /* min-height: 490px; */
  height: 100%;
}

/* RIGHT SIDE */
.right-cards {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 30px;
}

@media (max-width: 960px) {
  .landmarks-grid {
    grid-template-columns: 1fr;
  }

  .landmarks-grid .card {
    min-height: 360px;
  }

  .landmarks-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* CARD */
.card {
  display: block;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: box-shadow 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  animation: landmarkFadeIn 0.9s ease-out both;
}

.landmarks-grid .card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.320, 1), filter 0.6s ease;
  animation: landmarkImageIn 0.9s ease-out both;
  will-change: transform;
  backface-visibility: hidden;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform 0.7s cubic-bezier(0.23, 1, 0.320, 1), filter 0.6s ease;
  animation: landmarkImageIn 0.9s ease-out both;
  will-change: transform;
  backface-visibility: hidden;
}

.card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.card:hover img {
  transform: scale(1.05);
  filter: brightness(1.02) saturate(1.05);
}

.card .overlay {
  transition: none;
  transform: none;
  opacity: 1;
}

.card:hover .overlay {
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.08),
      transparent);
}


/* OVERLAY */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  z-index: 2;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.08),
      transparent);
  color: #fff;
  transition: none;
}

@keyframes landmarkFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes landmarkImageIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.overlay h3 {
  font-family: 'pp-fragment';
  font-size: 28px;
    font-weight: 300;
    line-height: 30px;
    letter-spacing: 0px;

}

.overlay p {
    font-family: "Manrope";
    font-size: 12px;
    opacity: 0.8;
    line-height: 19px;
    letter-spacing: 0px;
    font-weight: 400;
    margin-top: 5px;
}

/* BADGE */
.badge {
    font-family: "Manrope";
    display: inline-block;
    background: #c8a96a;
    color: #000;
    font-size: 10px;
    padding: 10px 10px;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0px;
}
















/* -------------Section-Stats--------------   */
.stats {
  background:#AC0755;
  padding: 80px 5%;
  margin: 0px;
  width: 100%;
  float: left;
}

.stats-container {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 8%;
}

/* EACH STAT */
.stat {
  flex: 1;
}

/* NUMBER */
.stat h3 {
    font-family: 'pp-fragment';
    font-size: 64px;
    color: #DFC479;
    margin-bottom: 8px;
    font-weight: 300;
    line-height: 65px;
    letter-spacing: 0px;
}


.new-stat{
      color: #AC0755 !important;
}

/* TEXT */
.stat p {
    font-family: "Manrope";
    font-size: 20px;
    color: #fff;
    line-height: 27px;
    letter-spacing: 0px;
    font-weight: 400;
    text-align: center;
}

/* -------------Section-Testimonial--------------   */
.testimonial {
    padding: 100px 5%;
    text-align: center;
    width: 100%;
    float: left;
    background: #faedd4;
}

.testimonial-container {
  width: 60%;
  margin: auto;
}

/* ICON */
.quote-icon {
  font-size: 28px;
  color:#AC0755;
  margin-bottom: 20px;
}

/* TEXT */
.quote-text {
    font-family: 'pp-fragment';
    font-size: 28px;
    line-height: 40px;
    color: #AC0755;
    margin-bottom: 30px;
    letter-spacing: 0px;
    font-weight: 400;
}

/* AUTHOR */
.author h4 {
  font-family: 'pp-fragment';
    font-size: 20px;
    letter-spacing: 0px;
    margin-bottom: 5px;
    font-weight: 400;
    line-height: 30px;
    color:#AC0755;
}

.author span {
    font-family: "Manrope";
    font-size: 14px;
    color: #1C1B1B;
    line-height: 19px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

/* NAV */
.nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.nav button {
    width: 50px;
    height: 50px;
    border: 1px solid #faedd4;
    background: transparent;
    cursor: pointer;
    font-size: 34px;
    font-weight: 300;
    color: #c6206e;
    transition: none;
    animation: none;
    outline: none;
    box-shadow: none;
}


.nav button:hover,
.nav button:focus,
.nav button:active {
    transform: none;
    box-shadow: none;
    outline: none;
    background: transparent;
}

.nav button::before,
.nav button::after {
    content: none;
}

/* -------------Section-Footer--------------  */

.footer {
    background: #ffffff;
    color: #000000;
    padding: 80px 5% 40px;
    width: 100%;
    float: left;
}

.footer-container {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

/* LEFT */
.footer-left {
  max-width: 260px;
}

.logo {
    width: 197px;
    margin-bottom: 10px;
}

.footer-left p {
    font-family: "Manrope";
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 0px;
    font-weight: 400;
    color: #000000 !important;
}

/* COLUMNS */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-family: "Manrope";
    font-size: 18px;
    color: #AC0755;
    margin-bottom: 10px;
    line-height: 24px;
    letter-spacing: 1px;
    text-transform: capitalize;
    font-weight: 800;
}

.footer-col a {
    font-family: "Manrope";
    font-size: 14px;
    text-decoration: none;
    color: #000000;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 2px;
    text-transform: capitalize;
}

/* LOCATION TEXT */
.footer-col p {
    font-family: "Manrope";
    font-size: 14px;
    text-decoration: none;
    color: #000000;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 2px;
    text-transform: capitalize;
}

/* BOTTOM */
.footer-bottom {
    width: 80%;
    margin: 0px auto 0;
    padding-top: 20px;
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-family: "Manrope";
    font-size: 10px;
    letter-spacing: 1px;
    line-height: 20px;
    font-weight: 400;
}

.icons span {
  margin-left: 15px;
  cursor: pointer;
}

.icons {
  color: #AC0755;
}

.manifesto-container {
    width: 90%;
    margin: auto;
    padding: 0 90px;
    display: flex;
    justify-content: space-between;
    /* gap: 80px; */
    align-items: flex-start;
}


/* ============================================
   COMPREHENSIVE ANIMATIONS
   ============================================ */

/* KEYFRAME ANIMATIONS */

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Slide In from Left */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide In from Right */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Slide In from Bottom */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide In from Top */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scale In Animation */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Zoom In Animation */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Rotate In Animation */
@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

/* Float Animation (Subtle) */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Pulse Animation */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Glow Animation */
@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(140, 0, 38, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(140, 0, 38, 0.6);
  }
}

/* Bounce Animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Shimmer Animation */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Underline Animation */
@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}


/* ============================================
   ANIMATION APPLICATION CLASSES
   ============================================ */

/* Hero Section Animations */
.hero {
  animation: fadeIn 1s ease-out;
}

.hero-text {
  animation: slideInDown 1s ease-out 0.3s both;
}

.play-btn {
  animation: float 3s ease-in-out infinite;
}

.hero-overlay {
  animation: scaleIn 1.2s ease-out;
}

/* Navbar Animation */
.navbar {
  animation: slideInDown 0.6s ease-out;
}

.nav-links li {
  animation: fadeIn 0.8s ease-out;
}

.nav-links li:nth-child(1) { animation-delay: 0.1s; }
.nav-links li:nth-child(2) { animation-delay: 0.2s; }
.nav-links li:nth-child(3) { animation-delay: 0.3s; }
.nav-links li:nth-child(4) { animation-delay: 0.4s; }
.nav-links li:nth-child(5) { animation-delay: 0.5s; }


/* ============================================
   SCROLL TRIGGER ANIMATION CLASSES
   ============================================ */

/* For elements that will animate on scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for lists */
.animate-on-scroll.stagger {
  transition-delay: 0s;
}

.animate-on-scroll.stagger:nth-child(1) { transition-delay: 0.1s; }
.animate-on-scroll.stagger:nth-child(2) { transition-delay: 0.2s; }
.animate-on-scroll.stagger:nth-child(3) { transition-delay: 0.3s; }
.animate-on-scroll.stagger:nth-child(4) { transition-delay: 0.4s; }
.animate-on-scroll.stagger:nth-child(5) { transition-delay: 0.5s; }
.animate-on-scroll.stagger:nth-child(6) { transition-delay: 0.6s; }


/* ============================================
   SECTION-SPECIFIC ENTRANCE ANIMATIONS
   ============================================ */

/* Architecture Section */
.arch-image.fade-in-left {
  animation: slideInLeft 1s ease-out;
}

.arch-content.fade-in-right {
  animation: slideInRight 1s ease-out 0.2s both;
}

.arch-card.slide-up {
  animation: slideInUp 1s ease-out 0.4s both;
}

/* Precision Section */
.precision-left.fade-in-left {
  animation: slideInLeft 1s ease-out;
}

.precision-right.fade-in-right {
  animation: slideInRight 1s ease-out 0.2s both;
}

.top-block.fade-in {
  animation: slideInUp 0.8s ease-out;
}

.top-block:nth-child(1) { animation-delay: 0.2s; }
.top-block:nth-child(2) { animation-delay: 0.4s; }
.top-block:nth-child(3) { animation-delay: 0.6s; }

.stat.number-count {
  animation: scaleIn 0.8s ease-out;
}

.stat:nth-child(1) { animation-delay: 0.2s; }
.stat:nth-child(2) { animation-delay: 0.4s; }
.stat:nth-child(3) { animation-delay: 0.6s; }

/* Pillar Boxes */
.pillar-box {
  animation: slideInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.pillar-box:nth-child(1) { animation-delay: 0.1s; }
.pillar-box:nth-child(2) { animation-delay: 0.3s; }
.pillar-box:nth-child(3) { animation-delay: 0.5s; }

.pillar-box .icon {
  animation: slideInLeft 0.6s ease-out;
  animation-fill-mode: both;
}

.pillar-box:nth-child(1) .icon { animation-delay: 0.3s; }
.pillar-box:nth-child(2) .icon { animation-delay: 0.5s; }
.pillar-box:nth-child(3) .icon { animation-delay: 0.7s; }

/* Manifesto Cards */
.manifesto-card {
  animation: slideInRight 0.8s ease-out;
  animation-fill-mode: both;
}

.manifesto-card:nth-child(1) { animation-delay: 0.2s; }
.manifesto-card:nth-child(2) { animation-delay: 0.4s; }
.manifesto-card:nth-child(3) { animation-delay: 0.6s; }

/* Founder Section */
.founder-image {
  animation: slideInLeft 1s ease-out;
}

.founder-content {
  animation: slideInRight 1s ease-out 0.2s both;
}

.founder-content h2 {
  animation: slideInDown 0.8s ease-out 0.4s both;
}

/* Quarter Section */
.quarter-left.fade-in {
  animation: slideInLeft 1s ease-out;
}

.quarter-right.fade-in {
  animation: slideInRight 1s ease-out 0.2s both;
}

.q-item {
  animation: slideInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.q-item:nth-child(1) { animation-delay: 0.2s; }
.q-item:nth-child(2) { animation-delay: 0.4s; }
.q-item:nth-child(3) { animation-delay: 0.6s; }

.img {
  animation: rotateIn 1s ease-out;
}

.img:nth-child(1) { animation-delay: 0.3s; }
.img:nth-child(2) { animation-delay: 0.6s; }

.years {
  animation: float 3s ease-in-out infinite 1s;
}

/* Landmarks Section */
.card {
  animation: scaleIn 0.8s ease-out;
  animation-fill-mode: both;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }

/* Stats Section */
.stat h3 {
  animation: zoomIn 0.8s ease-out;
  animation-fill-mode: both;
}

.stat h3:nth-child(1) { animation-delay: 0.2s; }
.stat h3:nth-child(2) { animation-delay: 0.4s; }
.stat h3:nth-child(3) { animation-delay: 0.6s; }

.stat p {
  animation: fadeIn 1s ease-out;
  animation-fill-mode: both;
}

.stat p:nth-child(1) { animation-delay: 0.4s; }
.stat p:nth-child(2) { animation-delay: 0.6s; }
.stat p:nth-child(3) { animation-delay: 0.8s; }

/* Testimonial Section */
.quote-text {
  animation: slideInUp 0.8s ease-out;
  text-align: center;
}

.author {
  animation: slideInDown 0.8s ease-out 0.3s both;
}

.quote-icon {
  animation: rotateIn 0.8s ease-out;
}


/* ============================================
   BUTTON AND INTERACTIVE ANIMATIONS
   ============================================ */

/* Button Hover Animation */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(140, 0, 38, 0.3);
}

/* Link Hover Animation */
.nav-links a {
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #AC0755;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Card Hover Animation */
.project-card {
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.project-card:hover {
  transform: translateY(-10px);
}

.project-card:hover img {
  transform: scale(1.1) rotate(1deg);
}

/* Pillar Box Enhanced Hover */
.pillar-box {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pillar-box:hover {
  box-shadow: 0 20px 40px rgba(140, 0, 38, 0.2);
}

/* Manifesto Card Enhanced Hover */
.manifesto-card {
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.manifesto-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Card Overlay Animation */
.card {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  box-shadow: 0 0 0 transparent;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.card:hover img {
  transform: scale(1.08);
  filter: brightness(0.95);
}

.card:hover .overlay {
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.3),
      transparent);
}


/* ============================================
   PARALLAX AND DEPTH EFFECTS
   ============================================ */

/* Parallax Effect for Hero */
.hero-overlay {
  will-change: transform;
}

/* Depth Effect for Cards */
.card {
  perspective: none;
}

.card img {
  will-change: transform;
  backface-visibility: hidden;
}


/* ============================================
   LOADING AND PROGRESS ANIMATIONS
   ============================================ */

/* Loading Spinner Animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Progress Bar Animation */
@keyframes fillWidth {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

/* Skeleton Loading Animation */
@keyframes skeletonLoading {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}


/* ============================================
   TEXT ANIMATIONS
   ============================================ */

/* Letter by Letter Animation */
@keyframes letterSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Text Reveal */
@keyframes textReveal {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

h1, h2, h3 {
  animation: slideInUp 0.8s ease-out;
}

/*p {*/
/*  animation: fadeIn 1s ease-out 0.2s both;*/
/*}*/


/* ============================================
   RESPONSIVE ANIMATION ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
  .arch-card {
    animation: slideInUp 0.8s ease-out !important;
  }

  .precision-left, .precision-right {
    animation: slideInUp 0.8s ease-out !important;
  }

  .pillar-box {
    animation: slideInUp 0.8s ease-out !important;
  }

  .manifesto-card {
    animation: slideInUp 0.8s ease-out !important;
  }

  .quarter-left, .quarter-right {
    animation: slideInUp 0.8s ease-out !important;
  }

  /* Reduce animation complexity for mobile */
  .card:hover img {
    transform: scale(1.05) !important;
  }

  .project-card:hover {
    transform: translateY(-5px) !important;
  }
}


/* Common box styling */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 50px;
}

/* First row */
.pillar-box:nth-child(1) {
    grid-column: 1 / span 2;
}

.pillar-box:nth-child(2) {
    grid-column: 3 / span 2;
}

.pillar-box:nth-child(3) {
    grid-column: 5 / span 2;
}

/* Second row - centered */
.pillar-box:nth-child(4) {
    grid-column: 2 / span 2;
}

.pillar-box:nth-child(5) {
    grid-column: 4 / span 2;
}


.line-wrap {
  overflow: hidden;
  display: block;
}

.line-inner {
  display: block;
}


.arch-content > span {
    display: inline-block; /* Required for GSAP y animation */
    font-family: "Manrope", sans-serif;
    color: #AC0755 !important; /* Replace with your desired color */
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 3px;
    line-height: 14px;
    text-transform: uppercase;
}

/* =========================
   POPUP OVERLAY
========================= */

.enquiry-popup-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.55);

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 9999;

    opacity: 0;
    visibility: hidden;

    transition: 0.4s ease;
}

/* ACTIVE */

.enquiry-popup-overlay.active{
    opacity: 1;
    visibility: visible;
}


/* =========================
   POPUP BOX
========================= */

.enquiry-popup-box{
    width: 560px;
    max-width: 92%;

    background: #EFE4CF;

    padding: 45px 50px;

    position: relative;

    box-sizing: border-box;

    border-radius: 0;

    overflow: hidden;
}


/* =========================
   CLOSE BUTTON
========================= */

.enquiry-close-btn{
    position: absolute;
    top: 15px;
    right: 15px;

    width: 35px;
    height: 35px;

    border-radius: 50%;
    border: 2px solid #777;

    background: transparent;

    color: #777;

    font-size: 24px;

    cursor: pointer;

    display: flex;
    justify-content: center;
    align-items: center;
}


/* =========================
   TITLE
========================= */

.enquiry-popup-title{
    text-align: center;

    font-size: 28px;

    font-weight: 400;

    color: #B4005A;

    margin-bottom: 45px;

    font-family: serif;
}


/* =========================
   INPUTS
========================= */

.enquiry-input-group{
    margin-bottom: 35px;
}

.enquiry-input-group input{
    width: 100%;

    border: none;
    border-bottom: 1px solid #777;

    background: transparent;

    padding: 10px 0;

    font-size: 18px;

    color: #444;

    outline: none;
}

.enquiry-input-group input::placeholder{
    color: #777;
}


/* =========================
   CHECKBOX
========================= */

.enquiry-checkbox{
    display: flex;
    align-items: flex-start;

    gap: 14px;

    margin-bottom: 35px;
}

.enquiry-checkbox input{
    width: 18px;
    height: 18px;

    margin-top: 4px;
}

.enquiry-checkbox span{
    font-size: 14px;
    line-height: 1.5;

    color: #666;
}


/* =========================
   BUTTON
========================= */

.enquiry-submit-btn{
    width: 160px;
    height: 52px;

    background: #B4005A;

    border: none;

    color: #fff;

    font-size: 16px;

    letter-spacing: 2px;

    cursor: pointer;

    display: block;
    margin: auto;

    transition: 0.3s;
}

.enquiry-submit-btn:hover{
    background: #920049;
}


/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .enquiry-popup-box{
        padding: 35px 25px;
    }

    .enquiry-popup-title{
        font-size: 24px;
    }

    .enquiry-input-group input{
        font-size: 16px;
    }
}
