/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inria Serif", serif;
  font-weight: 400;
  background: white;
  overflow-x: hidden;
  min-height: 100vh;
}


.visual-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hourglass-img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.15));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}


.coin {
  position: absolute;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 30% 30%, #ffd700, #b79901);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(183, 153, 1, 0.4);
  z-index: 1;
  animation: coin-fall linear infinite;
}

@keyframes coin-fall {
  to { transform: translateY(100vh) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .investment-heading {
      font-size: 2.4rem;
  }
  
  .visual-container {
      height: 60vh;
  }
}

@media (max-width: 992px) {
  .investment-container {
      grid-template-columns: 1fr;
      padding: 1.5rem;
  }
  
  .investment-content {
      order: 2;
      padding: 2rem;
  }
  
  .investment-visual {
      order: 1;
      height: auto;
      padding-bottom: 2rem;
  }
  
  .visual-container {
      height: 50vh;
  }
  
  .investment-heading {
      font-size: 2rem;
  }
  
  .project-name {
      font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .investment-heading {
      font-size: 1.8rem;
  }
  
  .developer-title {
      font-size: 1.2rem;
  }
  
  .visual-container {
      height: 40vh;
  }
}

@media (max-width: 576px) {
  .investment-content {
      padding: 1.5rem;
  }
  
  .investment-heading {
      font-size: 1.6rem;
      margin: 1rem 0;
  }
  
  .project-name {
      font-size: 1.8rem;
  }
  
  .approval-badges {
      gap: 1rem;
  }
  
  .badge {
      height: 50px;
  }
}








/* Hero Section */
.container {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url("pdf1assets/bg.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding: 5% 8%;
}

.bg-element {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 70%;
  height: 60%;
  background: linear-gradient(
    135deg,
    rgba(220, 220, 220, 0.3) 0%,
    rgba(240, 240, 240, 0.5) 100%
  );
  clip-path: polygon(0 100%, 80% 100%, 100% 20%, 0 30%);
  z-index: 0;
}

.bg-element img {
  width: 100%;
}

.content {
  width: 58%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.content img {
  width: 40%;
}

.headline {
  font-size: 3.5rem;
  font-weight: 800;
  color: #5d0000;
  line-height: 1.4;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  font-style: italic;
}

.headline .letter {
  display: inline-block;
  opacity: 0;
}

.title {
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 600;
  color: #8f0000;
  padding-left: 3rem;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(196, 30, 58, 0.1);
}

.right-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 40%;
}

.flower-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
}

.flower {
  position: relative;
  width: 100%;
  height: 100%;
  top: 100px;
}

.petal {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  background: linear-gradient(#ff0000, #ff7f00);
  border-radius: 50% 50% 0 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
}

.flower-center {
  position: absolute;
  top: 46px;
  left: 290px;
  transform: translate(-50%, -50%) scale(0);
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #ffd700, #ffb700);
  border-radius: 50%;
  opacity: 0;
  z-index: 6;
}

.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
  margin-top: auto;
}

.logo-container {
  background: white;
  padding: clamp(10px, 1.5vw, 15px);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  border: 2px solid #4c63d2;
}

.logo {
  width: clamp(150px, 20vw, 300px);
  height: auto;
  display: block;
}

.company-info {
  text-align: center;
}

.company-name {
  font-size: clamp(1.5rem, 3vw, 3rem);
  color: #333;
  margin: 0.3rem 0;
  letter-spacing: -0.01em;
}

.company-tagline,
.company-subtitle {
  font-size: clamp(1rem, 2vw, 2rem);
  font-weight: 500;
  color: #666;
  margin: 0.3rem 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Animations */
@keyframes gentleFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(3deg);
  }
}

@keyframes petalPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.03);
    opacity: 1;
  }
}

/* Ecosystem Section */
.suburban-ecosystem-section {
  padding: 5% 8%;
}

.ecosystem-header {
  margin-bottom: 3rem;
}

.ecosystem-title {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  color: #0066cc;
  margin-bottom: 2rem;
  text-align: center;
}

.ecosystem-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.road-graphic {
  width: 40%;
  max-width: 500px;
}

.road-image {
  width: 100%;
  height: auto;
}

.circle-container {
  position: relative;
  width: 50%;
  max-width: 600px;
  height: auto;
  aspect-ratio: 1/1;
}

.circle-chart {
  width: 100%;
  height: 100%;
  transform: rotateY(-180deg);
}

.arc {
  fill: none;
  stroke-width: 34;
  stroke-linecap: butt;
  filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.15));
}

.open-land {
  stroke: #2e7d32;
}
.open-plots {
  stroke: #b8860b;
}
.sub-urban {
  stroke: #1976d2;
}
.urban {
  stroke: #d32f2f;
}

.center-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25%;
  max-width: 160px;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.center-icon i {
  font-size: clamp(30px, 4vw, 60px);
  color: #333;
}

.label-group {
  position: absolute;
  left: -80px;
  top: 30px;
  width: 100%;
  height: 100%;
}

.label-item {
  position: absolute;
  display: flex;
  align-items: center;
}

.label-text {
  font-size: clamp(1rem, 2vw, 2.5rem);
  font-weight: bold;
  margin-right: 10px;
  white-space: nowrap;
}

.green {
  color: #2e7d32;
}
.gold {
  color: #b8860b;
}
.blue {
  color: #1976d2;
}
.red {
  color: #d32f2f;
}

.dot {
  width: 12px;
  height: 12px;
  border: 3px solid #ccc;
  border-radius: 50%;
}

.green-dot {
  background: #2e7d32;
}
.orange-dot {
  background: #d89f54;
}
.blue-dot {
  background: #1976d2;
}

.line {
  width: clamp(100px, 15vw, 250px);
  border-top: 5px dashed #e8e5e5;
  margin-left: 6px;
}

.years {
  position: absolute;
  bottom: 12%;
  right: 55%;
  display: flex;
  flex-direction: column-reverse;
  gap: 1rem;
}

.year {
  font-size: clamp(0.8rem, 1.2vw, 1.2rem);
  font-weight: bold;
}

/* Highway Section */
.highway-section {
  display: flex;
  flex-direction: row;
  padding: 5% 8%;
  gap: 3rem;
}

.left-side {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 1rem;
  border: 2px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.map-container {
  width: 100%;
}

.map-image {
  width: 100%;
  height: auto;
  max-height: 650px;
  object-fit: cover;
}

.side-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.side-image-container {
  position: relative;
}

.side-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.side-image-text {
  font-size: clamp(0.6rem, 1vw, 0.8rem);
  background-color: #1976d2;
  color: white;
  padding: 0.3rem;
  text-align: center;
  margin: 0;
}

.right-side {
  width: 50%;
}

.right-title {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  color: rgb(0, 13, 255);
  margin-bottom: 1.5rem;
}

.highlights {
  list-style: none;
  padding-left: 0;
}

.highlights li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
  line-height: 1.5;
}

.highlights li::before {
  content: "➤";
  position: absolute;
  left: 0;
  top: 0;
  color: #1976d2;
  font-weight: bold;
}

/* SEZ Sections */
.sez-section,
.sez-list-section,
.brands-section {
  padding: 5% 8%;
  text-align: center;
}

.sez {
  font-size: clamp(1.5rem, 3vw, 3rem);
  color: #333;
  margin-bottom: 2rem;
}

.sez-header {
  font-size: clamp(1rem, 1.7vw, 1.7rem);
  color: #656565;
  font-weight: 600;
  margin-bottom: 2rem;
}

.sez-content {
  display: flex;
  justify-content: center;
}

.sez-img {
  width: 100%;
  max-width: 700px;
  height: auto;
}

.sez-list-container {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.sez-list-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: rgb(0, 13, 255);
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.sez-list-map-container {
  position: relative;
  width: 100%;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  margin: 2rem auto;
}

.sez-list-route-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(
    90deg,
    #ff6b6b,
    #4ecdc4,
    #45b7d1,
    #96ceb4,
    #ffeaa7
  );
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
  animation: drawLine 10s ease-in-out infinite;
  z-index: 1;
  transform: translateY(-2px);
}

@keyframes drawLine {
  0% {
    width: 0%;
  }
  80% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}

.sez-list-location {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 10;
}

.sez-list-location.active {
 opacity: 1;
  animation: locationAppear 1s ease-out forwards;
}

@keyframes locationAppear {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(0) rotate(180deg);
  }
  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1) rotate(0deg);
  }
}

.sez-list-location-pin {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: relative;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  animation: pinBounce 2s ease-in-out infinite;
}

.sez-list-location-pin::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

@keyframes pinBounce {
  0%,
  100% {
    transform: rotate(-45deg) translateY(0);
  }
  50% {
    transform: rotate(-45deg) translateY(-5px);
  }
}

.sez-list-location-name {
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #333;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  margin-top: 10px;
}

/* Location positions along the line */
.sez-list-loc-1 {
  left: 5%;
  animation-delay: 0.5s;
}
.sez-list-loc-2 {
  left: 12%;
  animation-delay: 1s;
}
.sez-list-loc-3 {
  left: 19%;
  animation-delay: 1.5s;
}
.sez-list-loc-4 {
  left: 26%;
  animation-delay: 2s;
}
.sez-list-loc-5 {
  left: 33%;
  animation-delay: 2.5s;
}
.sez-list-loc-6 {
  left: 40%;
  animation-delay: 3s;
}
.sez-list-loc-7 {
  left: 47%;
  animation-delay: 3.5s;
}
.sez-list-loc-8 {
  left: 55%;
  animation-delay: 4s;
}
.sez-list-loc-9 {
  left: 61%;
  animation-delay: 4.5s;
}
.sez-list-loc-10 {
  left: 70%;
  animation-delay: 5s;
}
.sez-list-loc-11 {
  left: 77%;
  animation-delay: 5.5s;
}
.sez-list-loc-12 {
  left: 83%;
  animation-delay: 6s;
}

/* Alternate positions above and below line for better visibility */
.sez-list-loc-1,
.sez-list-loc-3,
.sez-list-loc-5,
.sez-list-loc-7,
.sez-list-loc-9,
.sez-list-loc-11 {
  top: 30%;
}

.sez-list-loc-2,
.sez-list-loc-4,
.sez-list-loc-6,
.sez-list-loc-8,
.sez-list-loc-10,
.sez-list-loc-12 {
  top: 70%;
}

@media (max-width: 768px) {
  .sez-list-map-container {
    height: 300px;
  }

  .sez-list-location-pin {
    width: 30px;
    height: 30px;
  }

  .sez-list-location-pin::before {
    width: 15px;
    height: 15px;
  }

  .sez-list-location-name {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* Brands Section */
.brand-swiper {
  width: 100%;
  padding: 2rem 0;
  margin-top: 3rem;
}

.brand-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
}

.brand-swiper .swiper-slide img {
  max-height: 80px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(20%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.brand-swiper .swiper-slide img:hover {
  transform: scale(1.1);
  filter: grayscale(0);
}

/* RRR Plan Section */
.rrrplan {
  padding: 2rem;
  position: relative;
  text-align: center;
}

.rrrplan-logo {
  width: clamp(150px, 20vw, 300px);
  height: auto;
  margin-bottom: 2rem;
}

.rrr-plan-img {
  width: 100%;
  height: auto;
  max-height: 800px;
  object-fit: contain;
}

/* Invest Section */
.invest-section {
  padding: 5% 8%;
  background: #fff;
}

.invest-right {
  width: 100%;
}

.project-highlights-container {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.project-highlights-wrapper {
  width: 50%;
}

.section-title {
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  font-weight: bold;
  margin-bottom: 1rem;
  color: #d32f2f;
}

.project-list {
  display: grid;
  grid-template-columns: 2;
  gap: 1rem;
}

.highlights.location li {
  margin-bottom: 0.8rem;
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
}

.highlights-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.highlights-icons div {
  font-size: clamp(0.7rem, 0.9vw, 0.9rem);
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.highlights-icons img {
  width: clamp(30px, 3vw, 40px);
  height: clamp(30px, 3vw, 40px);
  margin-bottom: 0.5rem;
}

.map {
  width: 50%;
}

.map-container img {
  width: 100%;
  height: auto;
  max-height: 800px;
  object-fit: contain;
}

.bottom-images {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.bottom-images img {
  width: 48%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 0.5rem;
}

.address {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  margin-top: 1.5rem;
}

.address img {
  width: clamp(100px, 15vw, 200px);
  height: auto;
}

.address p {
  font-size: clamp(0.8rem, 1vw, 1rem);
  color: #333;
}

/* Sanctum Layout Section */
.sanctum-layout-full {
  width: 100%;
  position: relative;
  margin-bottom: 10rem;
}

.sanctum-layout-container {
  position: relative;
  width: 100%;
  margin: auto;
}

.sanctum-layout-bg {
  width: 100%;
  height: auto;
  display: block;
}

.sanctum-uw-logo {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: clamp(150px, 20vw, 300px);
  height: auto;
}

.sanctum-hmda-logo {
  position: absolute;
  top: 1rem;
  right: 1rem;
  text-align: right;
}

.sanctum-hmda-logo img {
  width: clamp(150px, 20vw, 300px);
  height: auto;
}

.sanctum-hmda-logo p {
  font-size: clamp(0.7rem, 0.9vw, 0.9rem);
  color: #333;
  margin-top: 0.5rem;
}

.sanctum-layout-title {
  position: absolute;
  top: 0.5rem;
  left: 40%;
  transform: translateX(-50%);
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: bold;
  color: #c00;
  letter-spacing: 2px;
}

.sanctum-layout-subtitle {
  position: absolute;
  top: calc(clamp(2rem, 5vw, 5rem) + 1rem);
  left: 45%;
  transform: translateX(-50%);
  font-size: clamp(0.8rem, 1.2vw, 1.2rem);
  color: #333;
}

.sanctum-layout-description {
  position: absolute;
  bottom: 8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  font-size: clamp(0.8rem, 1.2vw, 1.2rem);
  color: #666;
  text-align: center;
}

.sanctum-layout-features {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.sanctum-layout-features hr {
  border: none;
  width: 30%;
  max-width: 300px;
  border-top: 2px solid #000;
}

.sanctum-layout-features-title {
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
  font-weight: bold;
  color: #00aaff;
  white-space: nowrap;
}

.sanctum-project-highlights {
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  width: 90%;
}

.sanctum-highlight-item {
  background: #fff;
  padding: 0.5rem 0.8rem;
  border-radius: 0.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  font-size: clamp(0.6rem, 0.8vw, 0.8rem);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .container {
    flex-direction: column;
    height: auto;
    padding: 10% 8% 5%;
  }

  .content,
  .right-container {
    width: 100%;
  }

  .right-container {
    align-items: center;
    margin-top: 3rem;
  }

  .ecosystem-container {
    flex-direction: column;
  }

  .road-graphic,
  .circle-container {
    width: 100%;
    max-width: none;
  }

  .highway-section {
    flex-direction: column;
  }

  .left-side,
  .right-side {
    width: 100%;
  }

  .side-images {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-highlights-container {
    flex-direction: column;
  }

  .project-highlights-wrapper,
  .map {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .headline {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
  }

  .title {
    padding-left: 1rem;
  }

  .sez-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlights-icons {
    grid-template-columns: repeat(2, 1fr);
  }

  .sanctum-project-highlights {
    bottom: -6rem;
  }
}

@media (max-width: 480px) {
  .content {
    padding: 15% 5% 5%;
  }

  .right-container {
    padding: 0 5% 5%;
  }

  .sez-grid {
    grid-template-columns: 1fr;
  }

  .side-images {
    grid-template-columns: 1fr;
  }

  .sanctum-layout-features hr {
    width: 20%;
  }

  .sanctum-project-highlights {
    bottom: -8rem;
    gap: 0.5rem;
  }

  .sanctum-highlight-item {
    padding: 0.3rem 0.5rem;
  }
}

.highlights.location.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  column-gap: 2rem;
}

.highlights.location.features li {
  margin-bottom: 0.8rem;
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  break-inside: avoid;
}

/* Responsive adjustments for features */
@media (max-width: 768px) {
  .highlights.location.features {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}