/* General body styles */
body {
    margin: 0;
    font-family: 'Lexend', sans-serif; /* Replace with your font */
}

html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
    }
/* banner */
/* Banner styling */

#banner-main{
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 15px;
    background-color: #050f17;

}
.banner1 {
    height: 400px; /* Ensure height is set */
    background-size: cover; /* Cover the entire area */
    background-position: center; /* Center the image */
    display: flex; /* Flex for centering content */
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
    color: #FFFFFF; /* Set text color to pure white */
    background-image: url('../images/bannerabout.jpg');
    background-color: #000; /* Fallback color if image fails to load */
    position: relative; /* Position relative for overlay */
}

/* Overlay for better text visibility */
.banner1::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for better contrast */
    z-index: 1;
}

.banner-content {
    position: relative;
    text-align: center;
    z-index: 2; /* Ensures content is above the overlay */
}

/* Heading styling */
.banner-bread {
    color: #fff; /* Keep breadcrumb links white */
}

.banner h2 {
    color: #FFFFFF; /* Set heading color to pure white */
    font-family: "Italiana", Sans-serif;
    font-size: 80px;
    font-weight: 400;
    line-height: 1.3em;
}

/* Breadcrumb styling */
.banner p {
    font-size: 14px; /* Set font size to 14px */
    font-family: 'Lexend', sans-serif; /* Lexend font for breadcrumbs */
    margin: 10px 0 0; /* Space below the heading */
}

/* Links inside the breadcrumbs */
.banner p a {
    color: #FFFFFF; /* Set breadcrumb link color to pure white */
    text-decoration: none;
    font-family: 'Lexend', sans-serif;
}

/* Hover effect for links */
.banner p a:hover {
    text-decoration: underline; /* Underline on hover */
    color: #A8894D; /* Change color on hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner {
        height: 300px; /* Reduce height for smaller screens */
    }

    .banner h1 {
        font-size: 36px; /* Smaller font for mobile */
    }

    .banner p {
        font-size: 12px; /* Adjust breadcrumb text size on smaller screens */
    }
}


/* end banner */


/* main first content  */
/* General Styles */
.premium-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 150px;
    background-color: #050f17;
    gap: 30px;
    height: auto; /* Allow height to adapt to content */
    flex-wrap: wrap; /* Ensure wrapping on smaller screens */
}

.premium-content {
    flex: 1;
    padding: 20px;
}

.premium-content h2 {
    font-size: 48px;
    color: #A8894D;
    font-family: 'Italiana', Sans-serif;
    margin-bottom: 20px;
}

.premium-content p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.7em;
    margin-bottom: 30px;
    font-family: "Lexend", sans-serif;
    text-align: justify;
}

.premium-checklist {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    margin-left: -40px;
}

.premium-checklist .checklist-column {
    list-style: none;
}

.premium-checklist li {
    color: #E8E8E8;
    font-size: 14px;
    margin-bottom: 10px;
    font-family: "Lexend", sans-serif;
}

.premium-checklist li span {
    color: #d2a679;
    margin-right: 10px;
}

.apply-btn {
    background-color: #A8894D;
    color: #050f17;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Lexend', sans-serif;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background-color: #ffffff;
    color: #050f17;
}

/* Form Styles */
.premium-form-container {
    flex: 1;
    /* padding: 40px; */
    /* background: #141a23; */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column; /* Keep form content in a column */
    justify-content: center; /* Center form content vertically */
    align-items: center; /* Center form content horizontally */
    max-width: 500px;
}

.premium-form-container img {
    height: 100%;
    object-fit: cover;
}

/* Adjust content alignment for smaller screens */
@media (max-width: 1024px) {
    .premium-section {
        flex-direction: column; /* Stack content vertically */
        padding: 40px; /* Reduce padding for smaller screens */
        gap: 20px;
    }

    .premium-content h2 {
        font-size: 36px; /* Adjust heading size */
    }

    .premium-content p {
        font-size: 15px; /* Slightly smaller font */
        line-height: 1.5em; /* Maintain readability */
    }

    .premium-checklist li {
        font-size: 13px;
    }

    .apply-btn {
        width: 100%; /* Full-width button on smaller screens */
        padding: 10px;
    }

    .premium-form-container {
        padding: 30px; /* Adjust padding */
        max-width: 100%; /* Full-width container */
        box-shadow: none; /* Simplify shadow on smaller devices */
    }

    .premium-form-container img{
        width: 100%;
        
    }

}

/* Extra Small Screens (Mobile) */
@media (max-width: 768px) {
    .premium-content h2 {
        font-size: 28px; /* Smaller heading size */
    }

    .premium-content p {
        font-size: 13px; /* Smaller paragraph font */
        text-align: left; /* Align text to the left */
    }

    .premium-form-container {
        padding: 20px; /* Further reduced padding */
    }

    .premium-form-container img{
        width: 100%;
        
    }
    

    .premium-checklist {
        flex-direction: column; /* Stack checklist items vertically */
        gap: 10px; /* Reduce gaps */
    }

    .premium-checklist li {
        font-size: 12px;
    }
}

/* Fine-tune layout for narrow mobile screens */
@media (max-width: 480px) {
    .premium-section {
        padding: 20px;
    }

    .premium-content h2 {
        font-size: 24px;
    }

    .premium-content p {
        font-size: 12px;
    }

    

   

    .premium-form-container img{
        width: 100%;
        
    }
}

/* end main contnt */

/* how we work  */
/* General Styles */
body {
    background-color: #050f17;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.timeline-heading {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #a8894d;
}

/* Timeline Styles */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: relative;
}

.timeline-step {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-in-out;
    padding: 20px;
    border-radius: 10px;
    background: #101820;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}

.timeline-step[data-step="1"] {
    align-self: flex-start;
}

.timeline-step[data-step="2"] {
    align-self: flex-end;
}

.timeline-step[data-step="3"] {
    align-self: flex-start;
}

.timeline-step[data-step="4"] {
    align-self: flex-end;
}

.timeline-step[data-step="5"] {
    align-self: flex-start;
}

.timeline-step.show {
    opacity: 1;
    transform: translateY(0);
    max-width: 50%;
}

.step-circle {
    font-size: 24px;
    font-weight: bold;
    background: #a8894d;
    color: #ffffff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-content {
    text-align: left;
}

.step-content h3 {
    font-size: 20px;
    color: #a8894d;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 16px;
    color: #ffffff;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .timeline-step {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .step-circle {
        margin: 0 auto 10px;
    }

    .step-content {
        text-align: center;
    }
}



/* end how we work */



/* service */

/* Main section styling */
.service-section {
    background-color: #050f17;
    color: #110f0f;
    padding: 50px;
    width: 100%;
}

.service-container {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 30px;
    padding: 0 20px;
    align-items: flex-start;
    /* padding-top: 100px; */
}

.service-text {
    flex: 1;
    max-width: 400px;
}

.service-text h5 {
    font-size: 16px;
    letter-spacing: 1px;
    color: #A8894D;
    text-transform: uppercase;
}

.service-text h2 {
    font-size: 36px;
    font-weight: bold;
    margin-top: 10px;
}

.service-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #d3d3d3;
    margin: 20px 0;
}

.discover-btn {
    border-radius: 0;
    font-size: 13px;
    color: #050f17;
    background-color: #a8894d;
    font-weight: 200;
    padding: 15px 26px;
}

.service-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    flex: 2;
}

.service-card {
    background-color: #211f1f;
    color: #ffffff;
    padding: 20px;
    /* border-radius: 8px; */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}



.service-card .icon {
    font-size: 40px;
    color: #d4a517;
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 30px;
    font-weight: 500;
    color: #fff;
}


.service-card p {
    font-size: 14px;
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .service-container {
        flex-direction: column;
        text-align: center;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .service-text {
        text-align: center;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .discover-btn {
        margin: 0 auto;
    }
}


/* call to action */

/* Main CTA Section */
#cta-main {
    padding: 120px 30px 80px;
    background-color: #050f17;
    width: 100%;
    overflow: hidden;
}

/* Background wrapper */
.cta-background {
    position: relative;
    max-width: 100%;
    max-height: 700px;
}

/* Background Image */
.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* Hero Section */
.cta-hero {
    position: relative;
    z-index: 2;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    padding: 0 20px;
}

/* Overlay Content */
.cta-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    text-align: center;
    padding: 50px;
    border-radius: 10px;
}

/* Title */
.cta-title {
    color: #E8E8E8;
    font-family: "Italiana", sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.3em;
    margin-bottom: 20px;
}

/* Subtitle */
.cta-subtitle {
    color: #e8e8e8;
    font-size: 16px;
    font-family: "Lexend", sans-serif;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Button */
.cta-button {
    background-color: #A8894d;
    color: #050f17;
    padding: 15px 40px;
    font-size: 16px;
    font-family: 'Lexend', sans-serif;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #050f17;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cta-title {
        font-size: 42px;
    }
    .cta-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .cta-hero {
        height: auto;
        padding: 60px 20px;
    }
    .cta-title {
        font-size: 32px;
    }
    .cta-subtitle {
        font-size: 14px;
    }
    .cta-overlay {
        padding: 30px 20px;
    }
    .cta-button {
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 28px;
    }
    .cta-subtitle {
        font-size: 13px;
    }
    .cta-button {
        padding: 10px 25px;
    }
}


/* end call to action */


/* residential and commercial */





/* enquire button */


/* Modal and form container styling */
#enquiryModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

#enquiryModal .form-container {
    position: relative;
    max-width: 500px;
    margin: 40px auto;
    background: #5c5c5c;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#enquiryModal h3 {
    margin-bottom: 15px;
    font-size: 24px;
    color: #333333;
    text-align: center; /* Centering the h3 */
}

/* Input fields styling with black placeholder */
#enquiryForm input[type="text"],
#enquiryForm input[type="email"],
#enquiryForm input[type="tel"],
#enquiryForm textarea,
#enquiryForm select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #000000;
    border-radius: 5px;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s ease;
    background: #fff !important;
}

/* Dropdown styling */
#enquiryForm select {
    appearance: none; /* Removes default dropdown arrow */
    /* background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="16" height="16"><path fill="black" d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center; */
    background-size: 16px;
    padding-right: 30px;
    cursor: pointer;
}

/* Placeholder color styling */
#enquiryForm input::placeholder,
#enquiryForm textarea::placeholder {
    color: #000000; /* Black placeholder text */
    opacity: 1; /* Ensures placeholder is fully opaque */
}

/* Focus effect */
#enquiryForm input:focus,
#enquiryForm textarea:focus,
#enquiryForm select:focus {
    border-color: #000000;
    outline: none;
}

/* Submit and close buttons styling */
#enquiryForm button[type="submit"],
#enquiryForm button#closeModal {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#enquiryForm button[type="submit"] {
    background-color: #A8894D;
    color: #ffffff;
    width: 100%;
}

#enquiryForm button[type="submit"]:hover {
    background-color: #050F17;
}

#enquiryForm button#closeModal {
    color: #333;
    margin-left: 10px;
}

#enquiryForm button#closeModal:hover {
    background-color: #999;
}










/* button */
/* Container for the button */
#enquireButtonContainer {
    position: fixed;
    top: 50%;
    right: -60px;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
    z-index: 999;
}

/* Button styling */
#enquireButton {
    padding: 10px 20px;
    background-color: #A8894d;
    color: #000000;
    border: none;
    cursor: pointer;
    border-radius: 0px;
    font-weight: 100;
    font-family: Arial, sans-serif;
    transition: background-color 0.3s ease; /* Smooth transition for background color */
}

/* Hover effect */
#enquireButton:hover {
    background-color: #f5f5f5; /* Darker shade of the original color */
}

/* end enquire */



/* gallery */
/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background-color: #000;
    padding: 20px;
    text-align: center;
    /* border-radius: 10px; */
    overflow: hidden;
}

.main-image img {
    max-width: 100%;
    max-height: 70vh;
    /* border-radius: 10px; */
    transition: transform 0.3s ease;
}

.thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.thumbnail-slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For IE and Edge */
}

.thumbnail-slider::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Opera */
}

.thumbnail-slider img {
    width: 80px;
    height: 80px;
    /* border-radius: 5px; */
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.thumbnail-slider img:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.thumbnail-slider img.active {
    border: 2px solid #A8894D;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #A8894D;
    color: #FFF;
    font-size: 18px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    background: #fff;
    color: #A8894D;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-image img {
        max-height: 60vh;
    }

    .thumbnail-slider img {
        width: 60px;
        height: 60px;
    }
}


/* Gallery Section */
.gallery-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 250px;
    margin-top: 20px;
}

.gallery-container {
    display: flex;
    animation: slideGallery 15s linear infinite;
}

.gallery-item {
    flex-shrink: 0;
    width: 350px; /* Adjust width as needed */
    height: 100%;
    margin-right: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 10px; */
}

.gallery-section h3{
    color: #A8894D;
    font-family: "Italiana", Sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.3em;
}

.gallery-section h2{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.gallery-section{
    text-align: center;
    margin-top: 10%;
}

/* Animation for Sliding */
@keyframes slideGallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Duplicate the images for infinite sliding */
.gallery-container:after {
    content: '';
    display: flex;
}

/* end gallery */



/* tetimonial */
/* Testimonials Section Styling */
.testimonials-section {
    background-color: #050F17;
    color: #FFFFFF;
    text-align: center;
    padding: 50px 20px;
    font-family: Arial, sans-serif;
    padding-top: 150px;
    overflow: hidden; /* Prevent overflow from sliding cards */
}

.testimonials-section h3 {
    color: #A8894D;
    font-family: "Italiana", Sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.3em;
}

.testimonials-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.testimonials-slider {
    display: flex;
    justify-content: center;
    overflow: hidden; /* Hides extra cards */
    position: relative;
}

.testimonials-container {
    display: flex;
    gap: 0; /* No gap between cards */
    animation: slide 15s linear infinite; /* Continuous sliding */
    transition: transform 0.5s ease;
}

.testimonial {
    background-color: #1c1c1c;
    padding: 20px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    flex: 0 0 calc(50% - 10px); /* 2 cards visible in container */
    margin: 0 5px; /* Slight margin for cards */
}

.stars {
    color: #A8894D;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial p {
    font-size: 16px;
    color: #CCCCCC;
    margin-bottom: 15px;
    text-align: center;
}

.testimonial h4 {
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 5px;
}

.title {
    font-size: 14px;
    color: #A8894D;
    font-weight: 500;
}

/* Animation Keyframes */
@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Stop sliding on hover */
.testimonials-container:hover {
    animation-play-state: paused;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .testimonial {
        flex: 0 0 calc(100% - 10px); /* Show 1 card on smaller screens */
    }

    .testimonials-container {
        animation: slide 20s linear infinite; /* Adjust animation speed */
    }
}

/* end testimonial*/





/* property type Styling */
/* Cards Container */
.construction-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Individual Card Styling */
.construction-card {
    position: relative;
    flex: 1 1 calc(33.333% - 30px); /* 3 cards per row with gap */
    max-width: calc(33.333% - 30px);
    overflow: hidden;
    border-radius: 12px;
    min-width: 280px;
}

/* Responsive Image */
.construction-card img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

/* Responsive Layout */
@media (max-width: 1024px) {
    .construction-card {
        flex: 1 1 calc(50% - 30px); /* 2 cards per row on tablets */
        max-width: calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .construction-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .construction-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .text-content {
        text-align: center;
        right: auto;
        left: auto;
        bottom: 15px;
    }

    .circle-arrow {
        left: 50%;
        transform: translateX(-50%);
    }

    .explore-btn {
        width: auto;
    }
}





.form-section {
    display: none;
    background-color: transparent;
    padding: 20px;
    margin: 20px auto;
    max-width: 600px;
    border-radius: 10px;
    border: 1px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-section h2 {
    text-align: center;
    color: #A8894D;
}

.form-section form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-section label {
    font-weight: bold;
}

.form-section input, .form-section select {
    padding: 8px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-section button {
    background: #A8894D;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.form-section button:hover {
    background: #8a6d3b;
}

/* end property */
