:root {
    --bg-main: #ffffff;
    --bg-soft: #f7f7f7;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --accent-dark: #000000;
    --accent-muted: #bfbfbf;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
}


/* General Styles */
body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-main);
    letter-spacing: 0.2px;
}

h1, h2, h3 {
    letter-spacing: -0.5px;
}

p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    border-bottom: 1px solid #eee;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: bold;
}

nav a {
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: var(--accent-dark);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}


.btn-black {
    background: #000;
    color: #fff !important;
    padding: 8px 15px;
}

/* Details / Interior Section */
.details-section {
    padding: 60px 10%;
}

.details-top {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 20px;
}

.details-text {
    flex: 1;
}

.details-text ul {
    list-style: none; /* remove default bullets */
    padding-left: 0;
    font-family: 'Poppins', 'Segoe UI', Arial, sans-serif; /* modern clean font */
    font-size: 15px;
    line-height: 1.9;
    color: #333;
}

.details-text li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 28px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.details-text li::before {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    line-height: 1;
}

.details-main-img {
    flex: 2;
}

.details-main-img img {
    width: 100%;
    border-radius: 4px;
}

.details-bottom-grid {
    display: flex;
    gap: 20px;
}

.details-bottom-grid img {
    width: 50%; /* Splitting the bottom row in two */
    border-radius: 8px;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Hero Section */
.hero {
    padding: 60px 10%;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
}

/* Project Grid */
.projects {
    padding: 60px 10%;
    text-align: center;
}

.project-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.project-card {
    flex: 1;
    text-align: left;
}

.project-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 12px;
}

.btn-blue {
    background: #3498db;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

/* Footer / Why Choose Us */
.why-choose-us {
    padding: 60px 10%;
    background-color: #fcfcfc;
}

.why-choose-us h2 {
    font-size: 35px;
}

.why-choose-us p strong {
    color: #000000; /* your desired accent color */
    font-weight: 600; /* optional: make it slightly bolder than default */
}

footer {
    padding: 40px 10%;
    border-top: 1px solid #eee;
}

/* Services Tab */
/* Services Typography */
.services-header {
    padding: 60px 10% 20px;
}

.services-header h1 {
    font-size: 45px;
    font-weight: 1000;
    color: #111111;
}

.services-header p {
    max-width: 800px;
    color: #666;
    font-size: 15px;
    margin-bottom: 30px;
}

.main-service-img img {
    width: 100%;
    border-radius: 4px;
}

/* Service Items */
.services-list {
    padding: 40px 10%;
}

.service-item {
    margin-bottom: 35px;
}

.service-item h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
}

.service-item p {
    color: #555;
    font-size: 14px;
    max-width: 90%;
}

/* Mid Gallery (2 images) */
.mid-gallery {
    display: flex;
    gap: 15px;
    margin: 40px 0;
}

.mid-gallery img {
    width: 50%;
    border-radius: 8px;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Bottom Gallery (3 images) */
.bottom-gallery {
    display: flex;
    gap: 15px;
    padding: 40px 10% 80px;
}

.bottom-gallery img {
    width: 33.33%;
    border-radius: 8px;
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* Project */
/* Hero Image with Text Overlay */
.projects-hero {
    height: 60vh;
    background: url('./image/Project1.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects-hero h1 {
    font-size: 10rem;
    color: #ffffff54;
    font-weight: 800;
    -webkit-text-stroke: 4px #001219; /* Black border around the text */
}

/* Alternating Rows */
.project-row {
    display: flex;
    align-items: center;
    padding: 60px 10%;
    gap: 50px;
}

.project-row.reverse {
    flex-direction: row-reverse;
}


.project-text {
    flex: 1;
}

.project-text h2 {
    font-size: 45px;
    font-weight: 800;
}

.project-img {
    flex: 1.5;
}

.project-img img {
    width: 100%;
    border-radius: 8px;
}

/* Muli House Mosaic Grid */
.mosaic-section {
    padding: 40px 10%;
}

.mosaic-section h2 {
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 30px;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
}

.grid-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.grid-bottom {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
    margin-top: 20px;
}

.bottom-left-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mosaic-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

/* contact */
/* Contact Banner */
.contact-banner {
    height: 100vh;
    background: url('./image/Contact.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-container img {
    width: 60%;          /* smaller relative width */
    max-width: 300px;    /* smaller max width */
    height: auto;
    border-radius: 4px;
}

/* Contact Details Spacing */
.contact-details {
    padding: 20px 10% 80px;
    max-width: 900px;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-details h1 {
    font-size: 40px;
    margin-bottom: 5px;
    font-weight: 800;
}

.contact-details h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.contact-details h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.contact-details p {
    color: #444;
    font-size: 16px;
    line-height: 1.6;
    margin: 5px 0;
}

/* Lists and Alignment */
.info-list {
    margin-bottom: 40px;
}

.info-list p {
    margin-bottom: 15px;
    font-size: 18px;
}

.phone-indent {
    display: inline-block;
    padding-left: 65px; /* Aligns the second phone number under the first */
}

/* Footer alignment (re-using previous styles) */
footer .socials {
    margin-top: 10px;
    display: flex;
    gap: 15px;
}

footer .socials a svg {
    transition: transform 0.3s ease;
}

footer .socials a:hover svg {
    transform: scale(1.2);
}


/* about */
/* About Section Styling */
.about-container {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    padding: 80px 10%;
    flex-wrap: wrap; /* allow logo to stay on the right */
}

/* About text */
.about-content {
    flex: 1.2;
    min-width: 300px;
}

.about-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.subheading {
    color: #999;
    margin-bottom: 25px;
}

.about-logo {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    min-width: 200px;
}

.about-logo img {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
}

.inquiries {
    padding: 60px 10%;
    max-width: 900px;
    margin: 0 auto;
}

.inquiries h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #111;
    text-align: left;
}

/* Form Styling */
.form-container {
    padding: 40px 10% 100px;
    max-width: 600px; /* Constrains form width for better readability */
}

.form-container h2 {
    font-size: 24px;
    margin-bottom: 30px;
}

.form-container, .inquiries form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap; /* for responsive */
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, 
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    background-color: #fff;
}

.submit-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    max-width: 200px;
    transition: background 0.3s;
}

.submit-btn:hover {
    background-color: #333;
}

/* Responsive */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-logo {
        justify-content: flex-start;
        margin-top: 40px;
    }
}

img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

img:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

