/* Base Styles */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: #f8f9fa;
            overflow-x: hidden;
        }

        /* Investment Section - Modern Glass Morphism Design */
        .investment {
            height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4f1f5 100%);
            position: relative;
            overflow: hidden;
        }

        .investment::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 200%;
            background: radial-gradient(circle, rgba(19,190,45,0.08) 0%, transparent 70%);
            z-index: 0;
        }

        .investment-container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        /* Left Content - Modern Card */
        .investment-content {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.18);
            transition: all 0.3s ease;
        }

        .investment-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
        }

        .uw-logo {
            width: 180px;
            margin-bottom: 1.5rem;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
        }

        .developer-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #0a157b;
            margin-bottom: 0.5rem;
            position: relative;
            display: inline-block;
        }

        .developer-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 3px;
            background: #ff3c00;
            border-radius: 3px;
        }

        .developer-subtitle {
            font-size: 1rem;
            color: #4a5568;
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .investment-heading {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin: 1.5rem 0;
            color: #1a202c;
        }

        .highlight-container {
            position: relative;
            display: inline-block;
        }

        .highlight-red {
            color: #ff3c00;
            position: relative;
            z-index: 1;
        }

        .highlight-red::before {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            width: 100%;
            height: 12px;
            background: rgba(255, 60, 0, 0.2);
            z-index: -1;
            border-radius: 3px;
        }

        .approval-badges {
            display: flex;
            gap: 1.5rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .badge {
            height: 60px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
            transition: transform 0.3s ease;
        }

        .badge:hover {
            transform: scale(1.05);
        }

        .website-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #0a157b;
            font-weight: 600;
            text-decoration: none;
            margin-top: 1rem;
            transition: color 0.3s ease;
        }

        .website-link:hover {
            color: #ff3c00;
        }

        .website-link i {
            font-size: 1.2rem;
        }

        /* Right Side - Hourglass Visual */
        .investment-visual {
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .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); }
        }

        .project-title {
            text-align: center;
            margin-top: 1.5rem;
        }

        .project-name {
            font-size: 2.5rem;
            font-weight: 800;
            color: #ff3c00;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .project-location {
            font-size: 1.1rem;
            color: #4a5568;
            font-weight: 500;
        }

        /* Floating Coins Animation */
        .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;
            }
        }



/* Page 2 */
/* Base Styles */
.abundance-section {
  background: #fff;
  padding: 20px 50px;
  font-family: Arial, sans-serif;
  max-width: 1400px;
  margin: 0 auto;
}

/* Hero Section */
.abundance-hero {
  position: relative;
  text-align: center;
  margin-bottom: clamp(20px, 5vw, 40px);
}

.hero-image {
  width: 100%;
  height: clamp(250px, 40vw, 400px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.abundance-title {
  position: absolute;
  top: clamp(15px, 3vw, 20px);
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: bold;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  transition: opacity 0.5s ease;
  width: 90%;
  max-width: 800px;
}

/* Gallery Section */
.abundance-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(8px, 2vw, 10px);
  margin: clamp(15px, 3vw, 20px) 0;
}

.gallery-item {
  width: 100%;
  height: clamp(150px, 15vw, 200px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Text Content */
.abundance-text {
  text-align: center;
  background: linear-gradient(to bottom, #f1f1f1, #b8f884);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
  transition: opacity 0.5s ease;
  margin-bottom: clamp(20px, 5vw, 40px);
}

.abundance-last-text {
    background: linear-gradient(to bottom, #ffebb8, rgb(241, 217, 148));
}

.abundance-sub-text {
    background: linear-gradient(to bottom, #eacaed, rgb(244, 191, 245));
}

.sub-heading {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: bold;
  color: #d32f2f;
  margin-bottom: clamp(10px, 2vw, 15px);
  line-height: 1.4;
}

.abundance-text p {
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.6;
  margin-bottom: clamp(8px, 1.5vw, 10px);
  color: #333;
}

.abundance-text strong {
  color: #003366;
  font-weight: 600;
}

/* Features Section */

.abundance-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 40px);
  margin-top: clamp(20px, 4vw, 30px);
  padding: 0 10px;
  transition: opacity 0.5s ease;
}

.feature-column {
  flex: 1;
  min-width: 250px;
  background: #f9f9f9;
  padding: clamp(15px, 3vw, 20px);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-column h3 {
  color: #003366;
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  margin: clamp(8px, 1.5vw, 10px) 0 clamp(5px, 1vw, 5px);
  padding-bottom: 5px;
  border-bottom: 2px solid #d32f2f;
}

.feature-column ul {
  padding-left: clamp(15px, 3vw, 20px);
  margin-bottom: clamp(10px, 2vw, 15px);
}

.feature-column ul li {
  list-style-type: disc;
  margin-bottom: clamp(3px, 1vw, 5px);
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  line-height: 1.5;
  color: #444;
}

/* Animation Classes */
.show {
  opacity: 1 !important;
  transform: none !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .abundance-features {
    flex-direction: column;
  }
  
  .feature-column {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .abundance-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .abundance-title {
    font-size: 1.5rem;
  }
  
  .sub-heading {
    font-size: 1rem;
  }
}

/* sanctum layout */
.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: 52%;
    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;
    }
}


/* location page */

.rrr-section {
  background: #fff;
  padding: 40px;
  font-family: Arial, sans-serif;
}

.rrr-top {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 30px;
}

.rrr-map-left img {
  width: 350px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateX(-40px);
}

.rrr-text-right {
  flex: 1;
  opacity: 0;
  transform: translateX(40px);
}
.rrr-heading {
  color: #d32f2f;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.rrr-text-right p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}

.location-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 20px 0 10px;
  color: #d32f2f;
  opacity: 0;
}
.location-points {
  padding-left: 20px;
  list-style: disc;
  line-height: 1.6;
  opacity: 0;
  margin-bottom: 20px;
}

.rrr-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.rrr-location-map img{
  width: 95%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(20px);
}

.rrr-highway-image img {
    width: 90%;
    opacity: 0;
    transform: translateY(20px);
}

.rrr-footer {
  text-align: center;
  margin-top: 20px;
  opacity: 0;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 10px;
}

.rrr-footer img {
  width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 10px;
  margin-right: 10px;
}

.rrr-footer p {
  margin: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 10px;
  font-size: 1rem;
}

.rrr-logo {
  width: 100px;
  margin-bottom: 10px;
}

.location-highlights {
    display: flex;
}