/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:"Metal Mania", serif;
}
body::-webkit-scrollbar {

  display: none; 

}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    /* color: #ffffff; */
    /*overflow-x: hidden;*/
}



/* Responsive Design */
@media (max-width: 1200px) {
    .navbar {
        padding: 20px 30px;
    }

    .logo {
        font-size: 1.6rem;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 20px 20px;
    }

    .logo {
        font-size: 1.4rem;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        padding: 15px 20px;
        justify-content: space-between;
    }

    .logo {
        font-size: 1.3rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: center;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        z-index: 5;
        padding: 20px 0;
    }

    .nav-links a {
        /*text-decoration: none;*/
        font-size: 1rem;
        font-weight:600;
        /*font-size:1 rem;*/
        color: #121b26;
        font-family:"Metal Mania", serif;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Space between "Book Now" and toggle button */
}

.menu-toggle {
    display: block;
    background-color: #ff595e;
    border: none;
    padding: 8px 8px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

.menu-toggle.active {
    background-color: #ff4343;
    /*color:white;*/
}

.book-now {
    font-size: 0.9rem;
    padding: 8px 16px;
}

/* Extra small devices (less than 480px) */
@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .btn {
        font-size: 0.85rem;
        padding: 8px 14px;
    }

    .menu-toggle {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

.nav-links {
    display: none;
}

.nav-links.active {
    display: flex;
    /* or block, depending on the design */
}


/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    
    padding: 20px 50px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
}

.logo img{
    height: 50px;
    width: 120px;
}

.logo {
    font-size: 1.8rem;
    color: #ffffff;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    /* color: black; */
    font-size: 1rem;
    font-weight: 600;
    font-family:"Metal Mania", serif;
}

.nav-links a:hover {
    border-bottom: 2px solid #ff595e;
}

.btn {
    text-decoration: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    font-weight: 600;
}

.book-now {
    background-color: #ff595e;
    color: #ffffff;
}

.book-now:hover {
    background-color: #ff4343;
}

/* Toggle Button Styles */
.menu-toggle {
    display: none;
    /* Default: hidden */
    background-color: #ff595e;
    border: none;
    padding: 8px;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 5px;
}

/* Navbar Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .logo {
        font-size: 1.3rem;
    }

    .nav-links {
        display: none;
        /* Hidden by default */
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #121b26;
        padding: 20px;
        z-index: 5;
        color: white;
    }

    .nav-links.active {
        display: flex;
        /* Shown when the toggle is clicked */
    }

    .menu-toggle {
        display: block;
        /* Show toggle button for small screens */
    }

    .navbar-right {
        display: flex;
        align-items: center;
        gap: 10px;
    }
}

/* Hero Section *  linear-gradient(to right, rgba(18, 27, 38, 0.7), rgba(18, 27, 38, 0.3)),*/
/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: linear-gradient(135deg, rgba(0, 21, 36, 0.85), rgba(58, 96, 115, 0.7));*/
        /* url('images/interiorimage.jpg'); */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    padding: 20px; /* Padding for better spacing on mobile */
}

/* Swiper Slides */
.swiper-wrapper {
    width: 100%;
    height: 100%;
    /* filter: brightness(0.7) */
}

.swiper-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    /* filter: brightness(0.7) */
    /* animation: slideFadeIn 1.5s ease-in-out; */
}
/* Gradient Overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     /*background: linear-gradient(135deg, rgba(0, 21, 36, 0.85), rgba(58, 96, 115, 0.7)); */
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    width: 90%;
    margin: auto;
    top: 35%;
    right: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* animation: fadeUp 1s ease-in-out; */
}

/* @keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} */

/* Typography */
.text-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    /* font-family: "Poppins", serif; */
    font-family:"Metal Mania", serif;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.text-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    /* font-family: "Poppins", serif; */
    font-family:"Metal Mania", serif;
    color: white;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: left;
    margin-top: 20px;
}

.hero-buttons a {
    display: inline-block;
    background-color: #ff595e;
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    /* left: 20%; */
}

.hero-buttons a:hover {
    background-color: #ff4343;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* Additional Hero Section Design */
.additional-info {
    margin-top: 40px;
    padding: 10px 20px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
    transition: transform 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.2);
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.swiper-pagination-bullet:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .text-content h1 {
        font-size: 2.5rem;
    }

    .text-content p {
        font-size: 1rem;
    }

    .hero-buttons a {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 30px 20px;
        /* top: 30%; */
        /* bottom: 60%; */
        /* left: 20%; */
    }
    /* .hero-content{
        left: ;
    } */
    .hero-content {
        /*top:30%;*/
        left: 3%;
        /* right: 5%; */
        /* right: 10%; */
    }
    
    .text-content h1 {
        font-size: 2rem;
        /* text-justify: distribute; */
        text-align: justify;
    }

    .text-content p {
        font-size: 0.9rem;
        /* justify-content: center; */
        text-align: justify;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        /* justify-content: left; */
        text-align: center;
    }
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .hero-buttons a {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}


@media (max-width: 480px) {
    .text-content h1 {
        font-size: 1.8rem;
    }

    .text-content p {
        font-size: 0.85rem;
    }

    .hero-buttons a {
        font-size: 0.8rem;
        padding: 8px 14px;
    }
}


/* About Section Styles */
.about-section {
    background-color: #f9f9f9;
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.about-image img:hover {
    transform: scale(1.05);
}

.about-content {
    max-width: 600px;
    color: #333;
    text-align: left;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 20px;
    position: relative;
}

.about-content h2::after {
    content: "";
    width: 50px;
    height: 4px;
    background-color: #ff6f61;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-btn {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #ff6f61;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.about-btn:hover {
    background-color: #ff543f;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .about-container {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        text-align: center;
    }

    .about-image img {
        max-width: 90%;
    }

    .about-content h2::after {
        content: "";
        width: 40px;  /* Adjust the width of the red line on mobile */
        height: 3px;  /* Adjust the height of the red line on mobile */
        background-color: #ff6f61;
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%); /* Center the red line */
    }
}

/* Projects Section Styles */
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.property-specifications {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.property-specifications h1 {
    font-size: 2.5rem;
    color: #0d6efd;
    margin-bottom: 20px;
    position: relative;
}

.property-specifications h1::after {
    content: "";
    width: 60px;
    height: 4px;
    background-color: #ff6f61;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.property-specifications p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.icon-section {
    margin-bottom: 50px;
}

.icon-row {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.icon-item {
    text-align: center;
}

.icon-item i {
    font-size: 40px;
    margin-bottom: 10px;
    color: #6c757d;
    transition: color 0.3s ease;
}

.icon-item span {
    display: block;
    font-weight: 500;
    color: #333;
}

/* Section Content */
.section-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.text-content {
    flex: 1;
    text-align: left;
    animation: fadeInLeft 1s ease-in-out;
}

.text-content h2 {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 20px;
    position: relative;
}

.text-content h2::after {
    content: "";
    width: 50px;
    height: 3px;
    background-color: #ff5050;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.text-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #333;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #333;
}

.features-list li i {
    color: #28a745;
    margin-right: 10px;
}

.image-container {
    /* flex: 0 0 500px; */
    text-align: right;
}

.image-container img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.image-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles for Mobile */
@media screen and (max-width: 768px) {
    .section-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .icon-row {
        justify-content: center;
        gap: 20px;
    }

    .icon-item {
        text-align: center;
    }

    .icon-item i {
        font-size: 35px; /* Slightly smaller for mobile */
    }

    .icon-item span {
        font-size: 0.9rem;
    }

    .text-content {
        text-align: center;
    }

    .image-container {
        margin-bottom: 20px;
        text-align: center;
    }

    .image-container img {
        max-width: 90%;
    }

    .text-content h2 {
        font-size: 1.6rem;
    }

    .features-list li {
        font-size: 0.95rem;
    }

    /* Adjust the red line under the heading on mobile */
    .text-content h2::after {
        width: 50px; /* Make the line shorter for mobile */
        left: 50%;
        transform: translateX(-50%);
    }

    .property-specifications h1::after {
        width: 50px; /* Adjust width of the red line for property-specifications heading */
        left: 50%;
        transform: translateX(-50%);
    }
}

/* For smaller mobile screens (up to 480px) */
@media screen and (max-width: 480px) {
    .property-specifications h1 {
        font-size: 1.8rem;
    }

    .property-specifications p {
        font-size: 0.95rem;
    }

    .icon-item i {
        font-size: 30px; /* Further reduce icon size */
    }

    .icon-item span {
        font-size: 0.85rem;
    }

    .section-content {
        gap: 15px;
    }

    .text-content h2 {
        font-size: 1.4rem;
    }

    .text-content p {
        font-size: 0.9rem;
    }

    .image-container img {
        max-width: 100%;
    }

    /* Adjust the red line under the heading on mobile */
    .text-content h2::after {
        width: 40px; /* Make the red line smaller on very small screens */
        left: 50%;
        transform: translateX(-50%);
    }

    .property-specifications h1::after {
        width: 40px; /* Adjust the width of the red line */
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Animation */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/*popup form*/
.btn {
    padding: 10px 20px;
    background-color: #ff595e;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
}

.btn:hover {
    background-color: #0056b3;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color:  #333;
    padding: 20px;
    border-radius: 8px;
    width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.popup-content h2 {
    margin-bottom: 20px;
    text-align: center;
    color:#f39c12;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color:white;
}

input,
textarea,
button {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    color:white;
    background-color:#2c3e50;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #007bff;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color:white;
}

.submit-btn {
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
}

.submit-btn:hover {
    background-color: #218838;
}




/* Footer Styles */
.footer {
    background-color: #0d253f;
    /*background-image: linear-gradient(to right, rgba(255,0,0,0), rgba(255,0,0,1));*/
    /*background-image:linear-gradient(to right, rgba(18, 27, 38, 0.7), rgba(18, 27, 38, 0.3)), url('images/ban14.jpg');*/
    color: #ffffff;
    padding: 50px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.footer-column {
    flex: 1 1 220px;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff6f61;
            font-family:"Metal Mania", serif;

}

.footer-column p,
.footer-column ul {
    font-size: 1rem;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #ffffff;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ff6f61;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    color: #ffffff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ff6f61;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
}


/* Appointment Section Styles */
.appointment-section {
    background-image: linear-gradient(to right,
            rgba(18, 27, 38, 0.9),
            rgba(18, 27, 38, 0.6)),
        url('images/interiorimage.jpg');
    /* Replace with the hero section's image */
    background-size: cover;
    background-position: center;
    height: 400px;
    /* Adjust as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.appointment-overlay {
    text-align: center;
    color: #ffffff;
}

.appointment-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ff6f61;
    /* Highlighted text color */
    text-transform: uppercase;
            font-family:"Metal Mania", serif;

}

.appointment-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
            font-family:"Metal Mania", serif;

}

.appointment-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2rem;
    color: #ffffff;
    background-color: #ff6f61;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
            font-family:"Metal Mania", serif;

}

.appointment-btn:hover {
    background-color: #e55549;
}

/*responsive for all*/
/* Single Media Query for Responsiveness */
@media (max-width: 768px) {

    /* Navbar Adjustments */
    .navbar {
        flex-direction: row;
        padding: 15px 20px;
        justify-content: space-between;
    }

    .logo {
        font-size: 1.3rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
        padding: 20px 0;
        border-radius: 10px; /* Optional: Rounded corners for better design */
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Optional: Adds a subtle shadow */
        z-index: 100; /* Ensures it appears above other elements */
      }
      
      .nav-links.active {
        display: flex;
      }
      
      .menu-toggle {
        display: block;
      }
      
    /* Hero Section */
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .text-content {
        max-width: 100%;
    }

    .image-slider {
        max-width: 100%;
    }

    /* About Section */
    .about-container {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        text-align: center;
    }

    .about-image img {
        max-width: 90%;
        /* max-height: 110%; */
    }
    
    /* Overview Section */
    .overview-container {
        flex-direction: column;
        align-items: center;
    }

    .overview-content {
        text-align: center;
    }

    .overview-image img {
        max-width: 90%;
    }

    /* Popup Form */
    .popup-content {
        width: 90%;
    }

    /* Location Section */
    .location-content {
        grid-template-columns: 1fr;
    }

    /* Amenities Section */
    .amenities-container {
        grid-template-columns: 1fr;
    }
}

/* Mobile Styles (Max Width 768px) */
/* Mobile Styles (Max Width 768px) */
@media screen and (max-width: 768px) {
    .about-container {
        flex-direction: column; /* Stack the content vertically */
        align-items: center;
        gap: 10px; /* Reduced gap between sections */
        padding: 0; /* Ensure no extra padding */
    }

    .about-content {
        text-align: center; /* Center-align text */
        margin-bottom: 10px; /* Reduce bottom margin */
    }

    .about-image {
        order: 2; /* Ensure the image comes after the text on mobile */
        text-align: center; /* Center-align the image */
        margin-top: 10px; /* Add minimal space above the image */
    }

    .about-image img {
        max-width: 100%; /* Ensure image takes up most of the available space */
    }

    /* Adjust the overview section for mobile */
    .overview-container {
        flex-direction: column; /* Stack content vertically */
        align-items: center;
        gap: 10px; /* Reduce gap between content */
        padding: 0; /* Reduce padding */
    }

    .overview-content {
        text-align: center;
        margin-bottom: 10px; /* Reduce margin to minimize gap */
    }

    .overview-image img {
        max-width: 90%;
    }

    /* Popup Form */
    .popup-content {
        width: 90%;
    }

    /* Location Section */
    .location-content {
        grid-template-columns: 1fr;
    }

    /* Amenities Section */
    .amenities-container {
        grid-template-columns: 1fr;
        /* padding-top: 0px; */
    }
}

  /* Responsive styling for mobile devices */
  @media (max-width: 768px) {
    .hero-buttons {
      flex-direction: column; /* Stack buttons vertically */
      margin: 20px auto; /* Center the container horizontally */
      text-align: center;
    }
  
    .hero-buttons .btn.enquire-now {
      width: 100%; /* Make the button take full width */
      max-width: 300px; /* Set a maximum width for aesthetics */
    }
  }
  
/* Enquiry Button Styling */
.enquiry-button {
    position: fixed;
    right: 20px; /* Adjust spacing from the right */
    bottom: 20px; /* Adjust spacing from the bottom */
    z-index: 1000; /* Ensure it's always on top */
  }
  
  .enquiry-button a {
    display: inline-block;
    background-color: #ff6f61;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 30px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  /* Hover effect */
  .enquiry-button a:hover {
    background-color: #e55549;
    transform: scale(1.1);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .enquiry-button {
      right: 10px; /* Reduce spacing for smaller screens */
      bottom: 10px; /* Reduce spacing for smaller screens */
    }
  
    .enquiry-button a {
      font-size: 14px; /* Adjust font size for smaller screens */
      padding: 10px 15px; /* Adjust padding for smaller screens */
    }
  }

/* Modal Styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    justify-content: center;
    align-items: center;
  }
  
  /* Modal Content */
  .modal-content {
    background: linear-gradient(135deg, #ff6f61, #e55549);
    /* background-color: black; */
    color: white;
    padding: 25px;
    border-radius: 0; /* Square corners */
    width: 350px; /* Fixed square-like size */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    animation: fadeIn 0.5s ease;
  }
  
  .modal-content h2 {
    margin-bottom: 8px;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
            font-family:"Metal Mania", serif;

  }
  
  .modal-content p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
            font-family:"Metal Mania", serif;

  }
  
  .form-group {
    margin-bottom: 10px;
  }
  
  .form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 3px;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 8px;
    border-radius: 4px;
    border: none;
    font-size: 0.9rem;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    outline: none;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    box-shadow: 0px 0px 6px rgba(255, 255, 255, 0.6);
  }
  
  .submit-btn {
    display: inline-block;
    background-color: #2c3e50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px; /* Slightly rounded corners */
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .submit-btn:hover {
    background-color: #34495e;
    transform: scale(1.05);
  }
  
  /* Close Button */
  .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 18px;
    color: white;
    cursor: pointer;
    font-weight: bold;
  }
  
  /* Modal Animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .modal-content {
      width: 300px;
      padding: 20px;
    }
  
    .modal-content h2 {
      font-size: 1.4rem;
    }
  }
  
 /*toptobottom*/
  #topBtn {
    position: fixed;
    bottom: 20px;  /* Positioning it a bit from the bottom */
    left: 20px;    /* Positioning the button on the left side */
    z-index: 99;
    font-size: 40px;  /* Font size for the arrow */
    width: 50px;      /* Width of the square button */
    height: 50px;     /* Height of the square button */
    background-color: #e55549;
    color: white;
    border: none;
    border-radius: 5px;  /* Optional: slight rounding of corners */
    text-align: center;
    line-height: 50px;    /* Centering the arrow inside the button */
    cursor: pointer;
    display: none; /* Initially hidden */
  }
  
  #topBtn:hover {
    background-color: #555;
  }
  
  #topBtn:focus {
    outline: none;
  }

/*price and configuration*/

/* General Styles */

  /* Pricing Card */
  /* .pricing-card {
    background-color: #00695c;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #fff;
    text-align: left;
  }
  
  .card-title {
    font-size: 1.5em;
    margin-bottom: 10px;
  }
  
  .card-detail, .card-price {
    font-size: 1em;
    margin-bottom: 15px;
  }
  
  .enquire-btn {
    background-color: #fff;
    color: #004d40;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .enquire-btn:hover {
    background-color: #e0f2f1;
  }
   */
  /* Responsive Design */
  /* @media (max-width: 768px) {
    .pricing-card {
      width: 90%;
    }
  }
   */
   
/* General Reset */

body, h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
    /*font-family: Arial, sans-serif;*/
            font-family:"Metal Mania", serif;

    box-sizing: border-box;
}

body {
    background-color: #f9f9f9;
    line-height: 1.6;
}

.properties-section {
    padding: 40px 20px;
    background: #fff;
}

.properties-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.properties-container h2 {
    font-size: 2em;
    color: #0d6efd;
    margin-bottom: 10px;
}

.properties-container .properties-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 30px;
}

.properties-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.property-card {
    flex: 1 1 calc(33.333% - 20px);
    max-width: 350px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.property-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.property-info {
    padding: 15px;
    text-align: center;
}

.property-name {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 5px;
}

.property-location {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 15px;
}

.property-price {
    font-size: 1em;
    color: #4CAF50;
    font-weight: bold;
    margin-bottom: 15px;
}

.property-url {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(45deg, #6a11cb, #2575fc);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9em;
    transition: background 0.3s, transform 0.2s;
}

.property-url:hover {
    background: linear-gradient(45deg, #2575fc, #6a11cb);
    transform: translateY(-2px);
}

/* RERA Tag Styling */
.rera-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ff5722;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.9em;
    border-radius: 5px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .property-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .property-card {
        flex: 1 1 calc(100% - 20px);
    }
}
/*contact us section*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Overall layout for the contact section with background */
  .contact-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px;
    background: linear-gradient(to right, #2c3e50, #34495e); /* Dark Gradient Background */
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .contact-section h3, .contact-section h4, .contact-section p {
    text-align: left;
    margin-bottom: 10px;
    /* height: 450px; */
            font-family:"Metal Mania", serif;

  }
  
  /* Contact Information Styling */
  .contact-info {
    flex: 1;
    max-width: 600px;
    height: 655px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.2); /* Semi-transparent white */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .contact-info h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #f39c12; /* Accent color for headings */
            font-family:"Metal Mania", serif;

  }
  
  .contact-info h4 {
    font-size: 1.4em;
    margin-bottom: 20px;
    color: #ecf0f1; /* Light color for subheadings */
            font-family:"Metal Mania", serif;

  }
  
  .contact-info p {
    font-size: 1em;
    margin-bottom: 20px;
    color: #ecf0f1; /* Light color for text */
            font-family:"Metal Mania", serif;

  }
  
  .contact-info ul {
    list-style-type: none;
    padding: 0;
  }
  
  .contact-info ul li {
    font-size: 1em;
    margin: 10px 0;
    display: flex;
    align-items: center;
    color: #ecf0f1; /* Light color for list items */
            /*font-family:"Metal Mania", serif;*/

  }
  
  .contact-info ul li i {
    margin-right: 10px;
    color: #f39c12;
    font-size: 1em;
            /*font-family:"Metal Mania", serif;*/

  }
  
  /* Contact Form Styling */
  .contact-form {
    flex: 1;
    max-width: 600px;
    padding: 25px;
    background-color: #333;
    color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .contact-form h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #f39c12;
            font-family:"Metal Mania", serif;

  }
  
  .contact-form .form-group {
    margin-bottom: 20px;
  }
  
  .contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1em;
    color: #ecf0f1; /* Light color for labels */
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-top: 8px;
    font-size: 1.1em;
    background-color: #2c3e50; /* Slightly darker background for inputs */
    color: white;
            font-family:"Metal Mania", serif;

  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #f39c12;
    outline: none;
  }
  
  .contact-form textarea {
    resize: vertical;
            font-family:"Metal Mania", serif;

  }
  
  .submit-btn {
    padding: 12px 24px;
    background-color: #ff6f61;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .submit-btn:hover {
    background-color: #e67e22;
  }
  
  /*whats app css*/
  /* WhatsApp Floating Button Styles */
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
  }
  
  .whatsapp-float a {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  }
  
  .whatsapp-float i {
    font-size: 28px;
    color: #ffffff;
  }
  
 

   
   