html {
    scroll-behavior: smooth;
  }
body {
    background-color: #ebe8db;
    text-align: center;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.logo {
    margin-top: 20px;
}

.logo img {
    width: 100px;
    border-radius: 10px;
}

h2 {
    font-size: 30px;
    color: #333;
}

.subtitle {
    font-size: 20px;
    font-weight: bold;
    color: #666;
    margin-bottom: 20px;
}

.project-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.project-item {
    position: relative;
    width: 600px;
    height: 820px;
    overflow: hidden;
    border-radius: 10px;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.project-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.project-item p {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    transition: bottom 0.4s ease-in-out;
    margin: 0;
}

.project-item:hover p {
    bottom: 0;
}



  /* New Section */
  .info-section {
    text-align: left;
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.info-section h3 {
    font-size: 24px;
    color: #9c8861;
    text-transform: uppercase;
    font-weight: bold;
}

.info-section h2 {
    font-size: 32px;
    color: #9c8861;
    font-weight: bold;
    margin-top: -10px;
}

.info-section p {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.watch-video {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    text-decoration: none;
    background: #9c8861;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    width: 200px;
    text-align: center;
}

.watch-video img {
    width: 20px;
    margin-right: 10px;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .project-item {
        width: 450px;
        height: 650px;
    }

    .info-section {
        max-width: 90%;
        padding: 15px;
    }

    .info-section h2 {
        font-size: 28px;
    }

    .info-section h3 {
        font-size: 22px;
    }

    .info-section p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .project-gallery {
        flex-direction: column;
        align-items: center;
    }

    .project-item {
        width: 90%;
        height: auto;
    }

    .info-section {
        max-width: 95%;
        padding: 12px;
    }

    .info-section h2 {
        font-size: 26px;
    }

    .info-section h3 {
        font-size: 20px;
    }

    .watch-video {
        width: 180px;
        font-size: 14px;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 80px;
    }

    h2 {
        font-size: 24px;
    }

    .subtitle {
        font-size: 18px;
    }

    .project-item {
        width: 100%;
        height: auto;
    }

    .project-item p {
        font-size: 14px;
        padding: 8px;
    }

    .info-section h2 {
        font-size: 22px;
    }

    .info-section h3 {
        font-size: 18px;
    }

    .info-section p {
        font-size: 14px;
    }

    .watch-video {
        width: 160px;
        font-size: 13px;
        padding: 8px 12px;
    }
}


/* ...... */
.container {
    display: flex;
    justify-content: space-between;
    padding: 50px;
}
.content {
    width: 50%;
}
.content h4 {
    color: #c2a875;
    font-size: 16px;
}
.content h1 {
    font-size: 36px;
    color: #5a4a3b;
}
.content p {
    font-size: 16px;
    line-height: 1.6;
}
.watch-btn {
    background-color: #a08b6e;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
}
.gallery {
    width: 45%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.image {
    position: relative;
    width: calc(50% - 5px);
}
.image img {
    width: 100%;
    border-radius: 5px;
}
.image span {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 3px;
}
/* mapp section.......... */
.contai {
    position: relative;
    width: 100vw;
    height: 100vh;
}
iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.info-box {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 50%;
}
.info-box h2 {
    font-size: 24px;
    color: #8b6f43;
}
/* plan ground   */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f8f5f0;
}

.plan {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
}

h1 {
    font-size: 36px;
    color: #8b6f43;
    text-transform: uppercase;
    border-bottom: 2px solid #8b6f43;
    display: inline-block;
    margin-bottom: 10px;
}

.nav-tabs {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    border-bottom: 2px solid #c2a97b;
}

.nav-tabs li {
    font-size: 18px;
    padding: 10px 20px;
    cursor: pointer;
    color: #8b6f43;
    font-weight: bold;
    text-transform: uppercase;
}

.nav-tabs .active {
    border-bottom: 3px solid #8b6f43;
}

.floor-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.floor-image img {
    width: 60%; /* Adjust image width */
    max-width: 800px;
    height: auto;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
        align-items: center;
        padding: 30px;
    }

    .content, .gallery {
        width: 100%;
        text-align: center;
    }

    .gallery {
        justify-content: center;
    }

    .image {
        width: 48%;
    }

    .info-box {
        width: 70%;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .content h1 {
        font-size: 28px;
    }

    .content p {
        font-size: 14px;
    }

    .watch-btn {
        font-size: 14px;
        padding: 8px 16px;
    }

    .image {
        width: 100%;
    }

    .info-box {
        width: 80%;
    }

    .plan {
        width: 90%;
    }

    h1 {
        font-size: 28px;
    }

    .nav-tabs li {
        font-size: 16px;
        padding: 8px 15px;
    }

    .floor-image img {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    .content h1 {
        font-size: 24px;
    }

    .content p {
        font-size: 13px;
    }

    .watch-btn {
        font-size: 12px;
        padding: 6px 12px;
    }

    .info-box {
        width: 90%;
        padding: 10px;
    }

    .plan {
        width: 95%;
    }

    h1 {
        font-size: 24px;
    }

    .nav-tabs {
        flex-direction: column;
        align-items: center;
    }

    .nav-tabs li {
        font-size: 14px;
        padding: 6px 12px;
    }

    .floor-image img {
        width: 90%;
    }
}



/* footer */
footer {
    background: #222; 
    color: white;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif; 
    min-height: 250px; 
    clear: both; 
}
.footer-section a {
    text-decoration: none; /* Removes underline */
    color: inherit; /* Inherits the text color (white in this case) */
}
.footer-section a:hover {
    color: #A06A3F; /* Change color on hover */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-section {
    width: 23%;
}

.footer-section h3 {
    color: #A06A3F;
    font-size: 18px;
}

.footer-section p, .footer-section ul {
    font-size: 14px;
    line-height: 1.6;
    color: white;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section .social-icons a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    margin-right: 10px;
}

/* Newsletter section */
.newsletter input {
    padding: 10px;
    width: 70%;
    border: none;
    margin-top: 10px;
}

.newsletter button {
    background: #A06A3F;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
}
main{
    background-color: #fffaf1;
}

/* Footer Bottom Section */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    
    padding-top: 20px;
    border-top: 1px solid #444;
    padding-bottom: 20px; 
}

/* Mobile View */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-section {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* about section */
.about1{
    font-family: Arial, sans-serif;
    background-color: #162447;
    color: rgb(249, 248, 248);
    text-align: center;
    padding: 20px;
    overflow-x: hidden;
}
.about {
    max-width: 900px;
    margin: auto;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
h1, .that {
    color: #ff7f32;
}
.team{
    color: white;
}

.numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}
.number-box {
    background: #1f4068;
    padding: 20px;
    border-radius: 10px;
    width: 200px;
}
.number {
    font-size: 32px;
    font-weight: bold;
}

p{
    color: #000;
}
.dev{
    color: white;
    margin-left: 30px;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .about {
        max-width: 80%;
        text-align: center;
    }

    .numbers {
        gap: 20px;
    }

    .number-box {
        width: 180px;
        padding: 15px;
    }

    .number {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .about {
        max-width: 90%;
    }

    .numbers {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .number-box {
        width: 80%;
        padding: 12px;
    }

    .number {
        font-size: 24px;
    }

    .dev {
        margin-left: 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about {
        max-width: 95%;
    }

    .number-box {
        width: 90%;
        padding: 10px;
    }

    .number {
        font-size: 22px;
    }
}
