* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inria Serif", serif;
  color: #001219;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

.pdf3-invest-time-section {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  overflow: hidden;
  background: url("assets/bg.jpg") no-repeat center center/cover;
}

.pdf3-glass-container {
  position: relative;
  width: 95%;
  max-width: 1200px;
  height: 100vh;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 3rem;
}

.pdf3-content-left {
  position: relative;
  z-index: 2;
  padding-right: 2rem;
}

.pdf3-content-right {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pdf3-logo-container {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pdf3-uw-top-logo {
  width: 100px;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdf3-logo-text {
  text-align: left;
}

.pdf3-tagline {
  font-family: "Playwrite AU QLD", cursive;
  font-size: 2rem;
  color: #005f73;
  letter-spacing: 3px;
  opacity: 0;
  transform: translateY(20px);
  margin-bottom: 0.5rem;
}

.pdf3-subtitle {
  font-size: 1.2rem;
  color: #0a9396;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  display: inline-block;
}

.pdf3-subtitle::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 2px;
  background: #ee9b00;
}

.pdf3-main-heading {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 2rem 0 1.5rem;
  line-height: 1.1;
  background: linear-gradient(to right, #005f73, #0a9396);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(30px);
}

.pdf3-description {
  font-size: 1.3rem;
  line-height: 1.6;
  margin: 0 0 2.5rem;
  color: #001219;
  opacity: 0;
  transform: translateY(20px);
  position: relative;
}

.pdf3-description strong {
  color: #ee9b00;
  font-weight: 700;
  position: relative;
}

.pdf3-description strong::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.pdf3-description:hover strong::after {
  transform: scaleX(1);
  transform-origin: left;
}

.pdf3-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.pdf3-feature-card {
  background: rgba(255, 255, 255, 0.7);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(20px);
}

.pdf3-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pdf3-feature-icon {
  font-size: 1.8rem;
  color: #ee9b00;
  margin-bottom: 0.8rem;
}

.pdf3-feature-title {
  font-weight: 700;
  color: #005f73;
  margin-bottom: 0.5rem;
}

.pdf3-feature-desc {
  font-size: 0.9rem;
  color: #001219;
  opacity: 0.8;
}

.pdf3-dtcp-stamp {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: #ee9b00;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(238, 155, 0, 0.25);
  opacity: 0;
  position: relative;
  overflow: hidden;
  border: none;
}

.pdf3-dtcp-stamp::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: translateX(-100%);
}

.pdf3-dtcp-stamp:hover::after {
  animation: shine 1.5s infinite;
}

@keyframes shine {
  100% {
    transform: translateX(100%);
  }
}

.pdf3-dtcp-stamp img {
  height: 30px;
  margin-right: 10px;
}

.pdf3-tlp-number {
  font-size: 0.9rem;
  color: #0a9396;
  margin: 1.5rem 0;
  opacity: 0;
  font-style: italic;
}

.pdf3-bottom-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  opacity: 0;
}

.pdf3-ts-rera {
  height: 50px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdf3-ts-rera:hover {
  transform: translateY(-5px);
}

.pdf3-rera-number {
  font-size: 0.9rem;
  color: #0a9396;
  font-weight: 600;
}

.pdf3-pin-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.pdf3-pin-wrapper {
  position: relative;
  width: 280px;
  height: 380px;
}

.pdf3-pin-svg {
  width: 140%;
  height: 100%;
  filter: drop-shadow(0 15px 30px rgba(0, 53, 227, 0.3));
}

.pdf3-pin-text {
  position: absolute;
  top: 37%;
  left: 69%;
  transform: translate(-50%, -50%);
  width: 60%;
  text-align: center;
  font-family: "Inria Serif", serif;
}

.pdf3-pin-text p {
  font-weight: 700;
}

.pdf3-pin-text .pdf3-title {
  color: #005f73;
  font-size: 1.3rem;
}

.pdf3-pin-text .pdf3-spot {
  color: #ee9b00;
  font-size: 1.5rem;
}

.pdf3-pin-text .pdf3-loan {
  color: #0a9396;
  font-size: 1.3rem;
}

.pdf3-pin-text hr {
  border: none;
  border-top: 2px solid rgba(0, 95, 115, 0.2);
  width: 60%;
  margin: 0.3rem auto;
}

.pdf3-silhouettes {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 600px;
  height: 600px;
  opacity: 0;
  z-index: 1;
}

.pdf3-silhouettes img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
}

.pdf3-floating-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.pdf3-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 95, 115, 0.1);
  animation: float-dot 15s infinite linear;
}

@keyframes float-dot {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  .pdf3-glass-container {
    grid-template-columns: 1fr;
    height: auto;
    max-height: 90vh;
    padding: 2rem;
  }

  .pdf3-content-left {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .pdf3-content-right {
    height: auto;
  }

  .pdf3-main-heading {
    font-size: 2.8rem;
  }

  .pdf3-description {
    font-size: 1.1rem;
  }

  .pdf3-pin-wrapper {
    width: 220px;
    height: 300px;
  }

  .pdf3-silhouettes {
    width: 300px;
    height: 300px;
    right: -30px;
    bottom: -30px;
  }
}

@media (max-width: 768px) {
  .pdf3-glass-container {
    padding: 1.5rem;
  }

  .pdf3-logo-container {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .pdf3-logo-text {
    text-align: center;
  }

  .pdf3-subtitle::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .pdf3-main-heading {
    font-size: 2.2rem;
  }

  .pdf3-features-grid {
    grid-template-columns: 1fr;
  }

  .pdf3-pin-wrapper {
    width: 180px;
    height: 240px;
  }

  .pdf3-silhouettes {
    width: 220px;
    height: 220px;
    right: -20px;
    bottom: -20px;
  }

  .pdf3-dtcp-stamp {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Page 2 Layout */
.pdf3-site-layout-section {
  padding: 4rem 1rem;
  background-color: #f7f9fc;
  text-align: center;
}

.pdf3-layout-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #003c74;
}

.pdf3-layout-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.pdf3-layout-container {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.pdf3-layout-image {
  width: 100%;
  height: auto;
  display: block;
}

.pdf3-site-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 1100px;
  margin-inline: auto;
}

.pdf3-site-box {
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.pdf3-site-box img {
  width: 100%;
  height: 120px;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.pdf3-site-box p {
  font-weight: 500;
  font-size: 1rem;
  color: #333;
}

.pdf3-site-box:hover {
  transform: translateY(-5px);
}


.pdf3-location-highlights-section {
  padding: 4rem 1rem;
  background: linear-gradient(to bottom, #eef3f9, #f9fcff);
}

.pdf3-location-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.pdf3-location-left {
  flex: 1 1 500px;
}

.pdf3-location-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #003c74;
  margin-bottom: 1rem;
}

.pdf3-location-heading span {
  font-size: 1.8rem;
  margin-right: 8px;
}

.pdf3-location-list {
  list-style: disc;
  padding-left: 1.5rem;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.pdf3-location-right {
  flex: 1 1 500px;
  text-align: center;
}

.pdf3-route-map {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.pdf3-location-pin {
  width: 400px;
  height: 300px;
  margin-top: 20px;
}

.pdf3-location-title{
    position: relative;
    left: -70px;
}

.pdf3-location-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin-inline: auto;
}

.pdf3-location-card {
  background: white;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

.pdf3-location-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.pdf3-location-card p {
  font-size: 0.95rem;
  font-weight: 500;
  color: #222;
}

.pdf3-location-card:hover {
  transform: translateY(-5px);
}
