/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    
}

/* Header Section Styles */
.header-section {
    position: relative;
    height: 60vh;
    background: linear-gradient(to bottom right, #002f4b, #dcf5ff);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.header-container {
    position: relative;
    z-index: 2;
    padding: 20px;
    animation: fadeInUp 2s ease-out;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
    animation: slideIn 2s ease;
}

.header-title {
    font-size: 48px;
    margin-top: 80px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: fadeIn 1s ease-in-out;
    transition: transform 0.5s ease, color 0.3s ease;
}

.header-title:hover {
    transform: scale(1.1);
    color: #00c4ff;
}

.header-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
    animation: fadeIn 1.5s ease-in-out;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.header-subtitle:hover {
    transform: translateY(-10px);
    opacity: 0.9;
}

.header-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeIn 2s ease-in-out;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #007bff;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
}

/* Background Animation */
.header-section::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 47, 75, 0.8), transparent);
    animation: rotateBackground 20s linear infinite;
    z-index: 1;
}

@keyframes rotateBackground {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Keyframes for fade-in and slide-in animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-title {
        font-size: 32px;
    }

    .header-subtitle {
        font-size: 16px;
    }

    .btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .header-title {
        font-size: 24px;
    }

    .header-subtitle {
        font-size: 14px;
    }

    .btn {
        font-size: 12px;
        padding: 8px 15px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Section styles */
/* Base section styling */
section.ecosystem {
    padding: 80px 0;
    background: #f9f9f9;
    font-family: 'Segoe UI', sans-serif;
}

/* Container */
.ecosystem .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

/* Animation */
@keyframes fadeInUp {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Heading */
.ecosystem h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #222;
    text-align: center;
    font-weight: 700;
}

/* Paragraphs */
.ecosystem p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

/* List Styling */
.ecosystem ul {
    padding-left: 1.5rem;
    margin-bottom: 20px;
}

.ecosystem ul li {
    font-size: 1.05rem;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
    position: relative;
    padding-left: 20px;
}

.ecosystem ul li::before {
    content: "✔";
    color: #4CAF50;
    position: absolute;
    left: 0;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .ecosystem .container {
        padding: 1.5rem;
    }

    .ecosystem h2 {
        font-size: 2rem;
    }

    .ecosystem p,
    .ecosystem ul li {
        font-size: 1rem;
    }
}

/* Project Overview Section */
.overview {
    background-color: #f9f9f9;
    padding: 4rem 1rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', sans-serif;
}

.overview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 2rem;
    font-weight: 700;
}

.overview-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-in-out forwards;
    opacity: 0;
}

/* Animation */
@keyframes fadeInUp {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.text-content {
    flex: 1 1 60%;
    font-size: 1.1rem;
    font-weight: 500;
    color: #444;
    line-height: 1.8;
    text-align: justify;
    padding-right: 1rem;
}

.text-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.text-content ul li {
    margin-bottom: 10px;
    font-weight: 600;
}

.image-content {
    flex: 1 1 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-content img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.image-content img:hover {
    transform: scale(1.05);
}

/* Responsive Media Queries */
@media screen and (max-width: 768px) {
    .overview-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .text-content {
        width: 100%;
        padding: 0;
    }

    .image-content {
        width: 100%;
    }

    .image-content img {
        width: 100%;
        max-width: 100%;
    }
}

/* Location Section */
.location {
    background-color: #fff;
    padding: 4rem 1rem;
    margin-top: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    font-family: 'Segoe UI', sans-serif;
    animation: fadeInUp 1s ease-in-out forwards;
    opacity: 0;
}

.location h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 2rem;
    font-weight: 700;
}

.location p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    text-align: justify;
    max-width: 1000px;
    margin: 0 auto 1.5rem auto;
}

.location strong {
    font-weight: 700;
    color: #333;
}

/* Animation (reuse from overview section) */
@keyframes fadeInUp {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Enhancements */
@media screen and (max-width: 768px) {
    .location {
        padding: 3rem 1rem;
    }

    .location h2 {
        font-size: 2rem;
    }

    .location p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
}
/* Responsive Design for smaller screens */
/* @media screen and (max-width: 768px) {
    .overview-content {
        flex-direction: column;
        text-align: center;
    }

    .image-content img {
        width: 100%;
        margin-top: 1rem;
    }

    .container {
        width: 90%;
    }

        .text-content {
            width: 90%;
           
        }
    
        .image-content {
            width: 80%;
        }
} */

/* Gallery Section */
.gallery {
    padding: 4rem 0;
    background-color: #f8f9fa;
    text-align: center;
}

.gallery h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
}

.images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    justify-items: center;
}

.gallery-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Modal for Image Popup */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow: auto;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s;
}

.modal-content {
    position: relative;
    width: 80%;
    max-width: 800px;
}

.modal-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    background-color: transparent;
    border: none;
    padding: 5px 10px;
}

/* Animation for Modal */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design for Smaller Screens */
@media screen and (max-width: 768px) {
    .gallery h2 {
        font-size: 2rem;
    }

    .images {
        grid-template-columns: 1fr 1fr;
    }
}

/* Building Specifications Section */
.specifications {
    background-color: #f4f7f9;
    padding: 4rem 1rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    margin-top: 3rem;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.specifications h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-description {
    font-size: 1.1rem;
    color: #444;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.7;
}

/* Grid-Based List */
.spec-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
}

.spec-list li {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.spec-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.spec-list li i {
    font-size: 1.8rem;
    color: #1d3557;
    flex-shrink: 0;
    margin-top: 0.2rem;
    transition: color 0.3s ease;
}

.spec-list li:hover i {
    color: #457b9d;
}

.spec-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background: linear-gradient(to right, #1d3557, #457b9d);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

/* Responsive Typography */
@media screen and (max-width: 768px) {
    .specifications {
        padding: 2rem 1rem;
    }

    .specifications h2 {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .spec-list {
        grid-template-columns: 1fr;
    }

    .spec-list li {
        padding: 1rem;
    }
}

/* Shops Available Section */
.shops {
    background-color: #ffffff;
    padding: 4rem 0;
    margin-top: 3rem;
}

.shops h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.section-description {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

.shop-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.shop-list li {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-list li i {
    font-size: 1.8rem;
    color: #007bff;
    margin-right: 15px;
}

.shop-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.shop-list li:hover i {
    color: #151B54; /* Change icon color on hover */
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .shops {
        padding: 2rem 0;
    }

    .shop-list {
        grid-template-columns: 1fr 1fr;
    }

    .shop-list li {
        padding: 1rem;
    }

    .section-description {
        font-size: 1rem;
    }
}

/* Call to Action (CTA) Section */
.cta {
    /* background: linear-gradientcta(135deg, #007bff, #e74c3c); */
    color: #fff;
    padding: 4rem 0;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 2px;
    color: rgb(0, 0, 0);
}

.cta-description {
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

.btn-book {
    background-color: #fff;
    color: #007bff;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-book:hover {
    background-color: #007bff;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.btn-book:focus {
    outline: none;
}




/* Responsive Design */
@media screen and (max-width: 768px) {
    .cta {
        padding: 3rem 0;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
        padding: 10px;
    }

    .btn-book {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
}

html {
    scroll-behavior: smooth;
}

/* Common Styles for Both Sections */
.amenities,
.pricing {
    background-color: #fdfdfd;
    padding: 4rem 1rem;
    margin-top: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.amenities h2,
.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.amenities-list,
.pricing-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.amenities-list li,
.pricing-list li {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    margin: 0.5rem 0;
    background-color: #fff;
    border-left: 5px solid #151B54;
    border-radius: 8px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.amenities-list li:hover,
.pricing-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.amenities-list i,
.pricing-list i {
    font-size: 1.2rem;
    color: #151B54;
}

/* Paragraph after pricing list */
.pricing p:last-of-type {
    margin-top: 2rem;
    text-align: center;
    font-size: 1.05rem;
    color: #555;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {

    .amenities h2,
    .pricing h2 {
        font-size: 2rem;
    }

    .section-description {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .amenities-list li,
    .pricing-list li {
        font-size: 1rem;
        flex-direction: row;
        align-items: flex-start;
    }
}