@charset "utf-8";
/* CSS Document 
*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: #1a1a1a;
	color: #d0d0d0;
	line-height: 1.6;
}

/* HEADER */
header {
	height: 140px;
	background-color: #121212;
	border-bottom: 1px solid #2a2a2a;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 60px;
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo-area {
	display: flex;
	align-items: center;
	gap: 20px;
	cursor: pointer;
	text-decoration: none;
	color: #d0d0d0;
	transition: all 0.3s ease;
}

.logo-area:hover {
	opacity: 0.8;
}

.logo-vector {
	width: 100px;
	height: 100px;
	background: #000000);
	clip-path: polygon(0 0, 100% 0, 80% 100%, 0 80%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: white;
	font-size: 24px;
}

/* This targets the container holding the text */
.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1 !important; /* This is the "magic" number to bring lines together */
}

.logo-text h1 {
    font-size: 24px; /* Adjusted to fit better */
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0 !important; /* Removes default spacing between the two H1 lines */
    text-transform: uppercase;
    color: #ffffff;
}

.logo-text p {
    font-size: 10px;
    color: #777;
    margin-top: 2px !important; /* Controls the gap for the third small line */
    letter-spacing: 2px;
    text-transform: uppercase;
}
/* NAVIGATION */
nav {
	display: flex;
	gap: 16px;
	align-items: center;
}

/* UPDATED NAVIGATION */
nav a {
    height: 60px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    background-color: #0a0a0a !important; /* Updated to requested deep black */
    color: #d0d0d0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    
    /* REMOVING BORDERS */
    border-left: none !important;   /* Removes the left black line */
    border-bottom: none !important; /* Removes the white bottom border */
    
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    
    /* This keeps the cool slanted shape */
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
}
nav a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: #2654c9;
	transition: height 0.3s ease;
	z-index: -1;
}

nav a:hover,
nav a.active {
	color: white;
}

nav a:hover::before,
nav a.active::before {
	height: 20%;
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
}

.menu-toggle span {
	width: 28px;
	height: 3px;
	background-color: #d0d0d0;
	transition: all 0.3s ease;
}

/* MAIN SECTIONS */
main {
	min-height: calc(100vh - 200px);
}

/* HERO SECTION */
.section-hero {
	min-height: 480px;
	background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), 
                url('images/Main-Img.jpg'); /* Update your file path here */
	display: flex;
	align-items: center;
	padding: 60px;
	background-color: #ebebeb;
	position: relative;
	overflow: hidden;
	background-repeat: no-repeat !important;
    background-size: cover !important;      /* Forces image to fill the width/height */
    background-position: center center !important; /* Centers the image perfectly */
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	gap: 60px;
	align-items: center;
}

.hero-left {
	display: flex !important;
    flex-direction: column !important;
    align-items: center !important;  /* Centers the content horizontally */
    text-align: center !important;   /* Centers the text lines */
    width: 100% !important;
	flex: 1;
	z-index: 2;
}

.hero-line {
	width: 100px;
	height: 3px;
	background: #555;
	margin: 0 0 30px 0;
}

.hero-left h2 {
	font-size: 48px;
	color: #101010;
	font-weight: 600;
	letter-spacing: -0.5px;
	line-height: 1.1;    /* Adjust this value; lower is tighter */
    margin-top: 10px;    /* Reduces space above the header */
    margin-bottom: 15px; /* Reduces space between header and paragraph */
    font-weight: 700;    /* Optional: keeps it bold and punchy */
}

.hero-left p {
	margin-left: auto !important;
    margin-right: auto !important;
    max-width: 800px; /* Prevents the lines from being too wide */
    text-align: center !important;
	font-size: 18px;
	color: #101010;
	margin-bottom: 40px;
	line-height: 1.8;
}

.cta-button {
	display: inline-block;
	padding: 18px 50px;
	background-color: #333;
	color: white;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	border: none;
	border-left: 2px solid #555;
	border-bottom: 2px solid #555;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
}

.cta-button::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: #444;
	transition: height 0.3s ease;
	z-index: -1;
}

.cta-button:hover {
	color: white;
}

.cta-button:hover::before {
	height: 20%;
}
/* Desktop Settings */
@media (min-width: 1200px) {
    .service-card {
        text-align: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 80px 0;
    }
}

/* Tablet & Mobile Settings */
@media (max-width: 1200px) {
    .slider-container {
        width: 100%;
        /* Adjust height to auto or a smaller fixed value for mobile */
        height: 350px; 
    }
    
    .slider-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.slide {
	position: absolute;
	width: 1200px;
	height: 480px;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #1a1a1a;
}

.slide.active {
	opacity: 1;
	z-index: 5;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Fallback text for slides if images don't load */
.slide::after {
	content: attr(data-fallback);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #555;
	font-size: 18px;
	text-align: center;
	opacity: 0;
	transition: opacity 0.3s;
}

.slide img[alt] {
	position: relative;
}

.slide img:not([src]),
.slide img[src=""] {
	opacity: 0;
}

.slide:not(:has(img[src])) ::after {
	opacity: 1;
}

.slider-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10;
}

.dot {
	width: 12px;
	height: 12px;
	background-color: rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.6);
}

.dot.active {
	background-color: white;
	transform: scale(1.2);
}

/* SERVICES SECTION - REDESIGNED WITH NUMBERS */
.section-services {
	padding: 120px 60px;
	background-color: #121212;
	border-top: 1px solid #2a2a2a;
}

.services-container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	font-size: 52px;
	font-weight: 800;
	margin-bottom: 80px;
	text-align: center;
	letter-spacing: -0.5px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 0;
}

.service-card {
	padding: 40px;
	background-color: transparent;
	border-right: 1px solid #2a2a2a;
	border-bottom: 1px solid #2a2a2a;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.service-card:nth-child(3n) {
	border-right: none;
}

.service-card:nth-last-child(-n+3) {
	border-bottom: none;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 0;
	background: linear-gradient(180deg, #555 0%, #333 100%);
	transition: height 0.3s ease;
}

.service-card:hover::before {
	height: 100%;
}

.service-number {
	font-size: 48px;
	font-weight: 300;
	color: #333;
	margin-bottom: 20px;
	font-family: 'Courier New', monospace;
	position: relative;
	display: inline-block;
}

/* Target the container you want to keep */
/* 1. Match the background to the Hero section */
.service-card {
	border-radius: 10px !important; /* Adjust this number: 10px for subtle, 30px for very round */
    overflow: hidden !important;   /* Crucial: clips the background/content to the rounded shape */
    background-color: #ebebeb; /* Standard Graphite dark theme hex */
    padding: 100px 0;
    margin: 0;
}

/* 2. Match the H1 title to the light grey you requested */
.service-main-title {
    color: #101010 !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* 3. Match the list/paragraph text to the Hero paragraph color */
.construction-list li {
    color: #101010;           /* This matches the 'From initial ground-breaking...' text color */
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 6px;
}

/* 4. Ensure headers within the list (like EXTERIOR) pop slightly more */
.list-header {
    color: #101010;           /* Pure white for sub-category headers */
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 15px;
}

.service-flex-container {
    display: flex;
    align-items: center; /* This keeps the now-shorter list centered next to the H1 */
    min-height: 480px;
}

.construction-list .list-header {
    font-family: 'Montserrat', sans-serif; /* The primary font for this template */
    font-weight: 700;                      /* Bold weight to match the Hero H2 */
    letter-spacing: -1px;                  /* Tightens the letters for that modern look */
    text-transform: uppercase;             /* Matches the 'RESIDENTIAL' styling */
}

.list-header::before {
    content: "" !important; /* Removes dot from headers */
}
.service-card:hover .service-number {
	color: #555;
}

.service-number::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #555;
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.service-card:hover .service-number::after {
	transform: scaleX(1);
}

.service-card h3 {
	font-size: 24px;
	margin-bottom: 16px;
	font-weight: 700;
}

.service-card p {
	color: #999;
	font-size: 15px;
	line-height: 1.8;
}



/* PORTFOLIO SECTION */
.section-portfolio {
	padding: 120px 60px;
	background-color: #1a1a1a;
	border-top: 1px solid #2a2a2a;
}

/* 1. Change the container to a 3-column grid */
/* 1. The Grid Layout */
/* 1. The Main Section */
#portfolio-container {
    padding: 100px 0;
    background-color: #1a1a1a;
    width: 100%;
    display: block; /* Ensures it stays a vertical block */
}

/* 2. The Title (Forced to stay on top) */
#portfolio-container h1 {
    text-align: center;
    width: 100%;
    margin-bottom: 60px;
    font-size: 48px;
    color: #ffffff;
    display: block;
}

/* 3. The Grid (The most important part) */
.portfolio-grid {
    display: grid !important;
    /* Forces 3 equal columns that fill the 1200px width */
    grid-template-columns: repeat(3, 1fr) !important; 
    gap: 50px 30px;
    max-width: 1200px;
    margin: 0 auto !important; /* This centers the grid on the screen */
    padding: 0 20px;
}

/* 4. The Individual Items */
.portfolio-item {
    text-align: center;
}

/* 5. The Image Size Fix */
.portfolio-item img {
    width: 100%;
    height: 240px;      /* Capped height to stop the 'huge' look */
    object-fit: cover;  /* Crops them perfectly into rectangles */
    border-radius: 12px;
    margin-bottom: 20px;
}

.portfolio-item h2 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
}

.portfolio-item p {
    font-size: 0.9rem;
    color: #888;
}
/* 3. The Text Alignment */
.project-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
/* ============================================================
   FINAL CLEANUP: SERVICES CENTERED & STRETCHED
   ============================================================ */

/* 1. Force the dark section to house the cards vertically */
.services-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 60px !important;
    width: 100% !important;
}

/* 2. The Main Card Container */
.service-card {
    background-color: transparent !important; /* Matches the site background */
    border: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 1100px !important;
}

/* 3. The White Box (The actual content area) */
.service-number {
    background: #ffffff !important;
    border-radius: 25px !important;
    padding: 60px !important;
    width: 100% !important;
    display: block !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center !important;
}

/* 4. Residential/Commercial Title */
.service-main-title {
    color: #101010 !important;
    font-size: 42px !important;
    margin-bottom: 30px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    display: block !important;
}

/* 5. The List: 2 columns on desktop, 1 on mobile */
.construction-list {
    display: inline-block !important;
    text-align: left !important;
    column-count: 2 !important;
    column-gap: 80px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    list-style: none !important;
    width: auto !important;
}

.construction-list li {
    color: #444 !important;
    font-size: 16px !important;
    margin-bottom: 10px !important;
    line-height: 1.4 !important;
}

/* 6. Sub-Headers (EXTERIOR, INTERIOR, etc) */
.list-header {
    column-span: all !important; /* Spans across both columns */
    color: #101010 !important;
    font-weight: 800 !important;
    margin: 30px 0 15px 0 !important;
    text-align: center !important;
    font-size: 1.2rem !important;
    display: block !important;
}

/* 7. Mobile Responsiveness */
@media (max-width: 768px) {
    .service-number {
        padding: 30px 20px !important;
    }
    .construction-list {
        column-count: 1 !important;
    }
    .service-main-title {
        font-size: 28px !important;
    }
}
@media (max-width: 768px) {
    /* 1. Position the Header for the dropdown */
    header {
        height: 80px !important;
        padding: 0 20px !important;
        position: relative;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    /* 2. Style the Navigation as a hidden dropdown */
    nav {
        display: none; /* Hidden by default */
        flex-direction: column !important;
        position: absolute !important;
        top: 80px; /* Sits exactly under the header */
        left: 0;
        width: 100%;
        background-color: #121212;
        border-bottom: 2px solid #2a2a2a;
        padding: 20px 0;
        z-index: 1000;
        gap: 0 !important;
    }

    /* 3. This class will be toggled via JavaScript */
    nav.active {
        display: flex !important;
    }

    /* 4. Organize the Nav Links into a list */
    nav a {
        width: 100% !important;
        height: 60px !important;
        padding: 0 40px !important;
        border-left: none !important;
        border-bottom: 1px solid #222 !important;
        clip-path: none !important; /* Remove the slant for a cleaner list */
        justify-content: flex-start !important;
    }

    /* 5. Show the Hamburger Button */
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #fff;
        transition: 0.3s;
    }
}@charset "utf-8";
/* CSS Document 

Tooplate 2156 Graphite Creative

https://www.tooplate.com/view/2156-graphite-creative

*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: #1a1a1a;
	color: #d0d0d0;
	line-height: 1.6;
}

/* HEADER */
header {
	height: 140px;
	background-color: #121212;
	border-bottom: 1px solid #2a2a2a;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 60px;
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo-area {
	display: flex;
	align-items: center;
	gap: 20px;
	cursor: pointer;
	text-decoration: none;
	color: #d0d0d0;
	transition: all 0.3s ease;
}

.logo-area:hover {
	opacity: 0.8;
}

.logo-vector {
	width: 100px;
	height: 100px;
	background: #000000);
	clip-path: polygon(0 0, 100% 0, 80% 100%, 0 80%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: white;
	font-size: 24px;
}

/* This targets the container holding the text */
.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1 !important; /* This is the "magic" number to bring lines together */
}

.logo-text h1 {
    font-size: 24px; /* Adjusted to fit better */
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0 !important; /* Removes default spacing between the two H1 lines */
    text-transform: uppercase;
    color: #ffffff;
}

.logo-text p {
    font-size: 10px;
    color: #777;
    margin-top: 2px !important; /* Controls the gap for the third small line */
    letter-spacing: 2px;
    text-transform: uppercase;
}
/* NAVIGATION */
nav {
	display: flex;
	gap: 16px;
	align-items: center;
}

/* UPDATED NAVIGATION */
nav a {
    height: 60px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    background-color: #101010 !important; /* Changes dark gray to pure black */
    color: #d0d0d0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    
    /* REMOVING BORDERS */
    border-left: none !important;   /* Removes the left black line */
    border-bottom: none !important; /* Removes the white bottom border */
    
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    
    /* This keeps the cool slanted shape */
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
}
nav a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: #2654c9;
	transition: height 0.3s ease;
	z-index: -1;
}

nav a:hover,
nav a.active {
	color: white;
}

nav a:hover::before,
nav a.active::before {
	height: 20%;
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
}

.menu-toggle span {
	width: 28px;
	height: 3px;
	background-color: #d0d0d0;
	transition: all 0.3s ease;
}

/* MAIN SECTIONS */
main {
	min-height: calc(100vh - 200px);
}

/* HERO SECTION */
.section-hero {
	min-height: 480px;
	background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), 
                url('images/Main-Img.jpg'); /* Update your file path here */
	display: flex;
	align-items: center;
	padding: 60px;
	background-color: #ebebeb;
	position: relative;
	overflow: hidden;
	background-repeat: no-repeat !important;
    background-size: cover !important;      /* Forces image to fill the width/height */
    background-position: center center !important; /* Centers the image perfectly */
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	gap: 60px;
	align-items: center;
}

.hero-left {
	display: flex !important;
    flex-direction: column !important;
    align-items: center !important;  /* Centers the content horizontally */
    text-align: center !important;   /* Centers the text lines */
    width: 100% !important;
	flex: 1;
	z-index: 2;
}

.hero-line {
	width: 100px;
	height: 3px;
	background: #555;
	margin: 0 0 30px 0;
}

.hero-left h2 {
	font-size: 48px;
	color: #101010;
	font-weight: 600;
	letter-spacing: -0.5px;
	line-height: 1.1;    /* Adjust this value; lower is tighter */
    margin-top: 10px;    /* Reduces space above the header */
    margin-bottom: 15px; /* Reduces space between header and paragraph */
    font-weight: 700;    /* Optional: keeps it bold and punchy */
}

.hero-left p {
	margin-left: auto !important;
    margin-right: auto !important;
    max-width: 800px; /* Prevents the lines from being too wide */
    text-align: center !important;
	font-size: 18px;
	color: #101010;
	margin-bottom: 40px;
	line-height: 1.8;
}

.cta-button {
	display: inline-block;
	padding: 18px 50px;
	background-color: #333;
	color: white;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	border: none;
	border-left: 2px solid #555;
	border-bottom: 2px solid #555;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
}

.cta-button::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: #444;
	transition: height 0.3s ease;
	z-index: -1;
}

.cta-button:hover {
	color: white;
}

.cta-button:hover::before {
	height: 20%;
}
/* Desktop Settings */
@media (min-width: 1200px) {
    .service-card {
        text-align: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 80px 0;
    }
}

/* Tablet & Mobile Settings */
@media (max-width: 1200px) {
    .slider-container {
        width: 100%;
        /* Adjust height to auto or a smaller fixed value for mobile */
        height: 350px; 
    }
    
    .slider-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.slide {
	position: absolute;
	width: 1200px;
	height: 480px;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #1a1a1a;
}

.slide.active {
	opacity: 1;
	z-index: 5;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Fallback text for slides if images don't load */
.slide::after {
	content: attr(data-fallback);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #555;
	font-size: 18px;
	text-align: center;
	opacity: 0;
	transition: opacity 0.3s;
}

.slide img[alt] {
	position: relative;
}

.slide img:not([src]),
.slide img[src=""] {
	opacity: 0;
}

.slide:not(:has(img[src])) ::after {
	opacity: 1;
}

.slider-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10;
}

.dot {
	width: 12px;
	height: 12px;
	background-color: rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.6);
}

.dot.active {
	background-color: white;
	transform: scale(1.2);
}

/* SERVICES SECTION - REDESIGNED WITH NUMBERS */
.section-services {
	padding: 120px 60px;
	background-color: #121212;
	border-top: 1px solid #2a2a2a;
}

.services-container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	font-size: 52px;
	font-weight: 800;
	margin-bottom: 80px;
	text-align: center;
	letter-spacing: -0.5px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 0;
}

.service-card {
	padding: 40px;
	background-color: transparent;
	border-right: 1px solid #2a2a2a;
	border-bottom: 1px solid #2a2a2a;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.service-card:nth-child(3n) {
	border-right: none;
}

.service-card:nth-last-child(-n+3) {
	border-bottom: none;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 0;
	background: linear-gradient(180deg, #555 0%, #333 100%);
	transition: height 0.3s ease;
}

.service-card:hover::before {
	height: 100%;
}

.service-number {
	font-size: 48px;
	font-weight: 300;
	color: #333;
	margin-bottom: 20px;
	font-family: 'Courier New', monospace;
	position: relative;
	display: inline-block;
}

/* Target the container you want to keep */
/* 1. Match the background to the Hero section */
.service-card {
	border-radius: 10px !important; /* Adjust this number: 10px for subtle, 30px for very round */
    overflow: hidden !important;   /* Crucial: clips the background/content to the rounded shape */
    background-color: #ebebeb; /* Standard Graphite dark theme hex */
    padding: 100px 0;
    margin: 0;
}

/* 2. Match the H1 title to the light grey you requested */
.service-main-title {
    color: #101010 !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* 3. Match the list/paragraph text to the Hero paragraph color */
.construction-list li {
    color: #101010;           /* This matches the 'From initial ground-breaking...' text color */
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 6px;
}

/* 4. Ensure headers within the list (like EXTERIOR) pop slightly more */
.list-header {
    color: #101010;           /* Pure white for sub-category headers */
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 15px;
}

.service-flex-container {
    display: flex;
    align-items: center; /* This keeps the now-shorter list centered next to the H1 */
    min-height: 480px;
}

.construction-list .list-header {
    font-family: 'Montserrat', sans-serif; /* The primary font for this template */
    font-weight: 700;                      /* Bold weight to match the Hero H2 */
    letter-spacing: -1px;                  /* Tightens the letters for that modern look */
    text-transform: uppercase;             /* Matches the 'RESIDENTIAL' styling */
}

.list-header::before {
    content: "" !important; /* Removes dot from headers */
}
.service-card:hover .service-number {
	color: #555;
}

.service-number::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #555;
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.service-card:hover .service-number::after {
	transform: scaleX(1);
}

.service-card h3 {
	font-size: 24px;
	margin-bottom: 16px;
	font-weight: 700;
}

.service-card p {
	color: #999;
	font-size: 15px;
	line-height: 1.8;
}



/* PORTFOLIO SECTION */
.section-portfolio {
	padding: 120px 60px;
	background-color: #1a1a1a;
	border-top: 1px solid #2a2a2a;
}

/* 1. Change the container to a 3-column grid */
/* 1. The Grid Layout */
/* 1. The Main Section */
#portfolio-container {
    padding: 100px 0;
    background-color: #1a1a1a;
    width: 100%;
    display: block; /* Ensures it stays a vertical block */
}

/* 2. The Title (Forced to stay on top) */
#portfolio-container h1 {
    text-align: center;
    width: 100%;
    margin-bottom: 60px;
    font-size: 48px;
    color: #ffffff;
    display: block;
}

/* 3. The Grid (The most important part) */
.portfolio-grid {
    display: grid !important;
    /* Forces 3 equal columns that fill the 1200px width */
    grid-template-columns: repeat(3, 1fr) !important; 
    gap: 50px 30px;
    max-width: 1200px;
    margin: 0 auto !important; /* This centers the grid on the screen */
    padding: 0 20px;
}

/* 4. The Individual Items */
.portfolio-item {
    text-align: center;
}

/* 5. The Image Size Fix */
.portfolio-item img {
    width: 100%;
    height: 240px;      /* Capped height to stop the 'huge' look */
    object-fit: cover;  /* Crops them perfectly into rectangles */
    border-radius: 12px;
    margin-bottom: 20px;
}

.portfolio-item h2 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
}

.portfolio-item p {
    font-size: 0.9rem;
    color: #888;
}
/* 3. The Text Alignment */
.project-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
/* ============================================================
   FINAL CLEANUP: SERVICES CENTERED & STRETCHED
   ============================================================ */

/* 1. Force the dark section to house the cards vertically */
.services-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 60px !important;
    width: 100% !important;
}

/* 2. The Main Card Container */
.service-card {
    background-color: transparent !important; /* Matches the site background */
    border: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 1100px !important;
}

/* 3. The White Box (The actual content area) */
.service-number {
    background: #ffffff !important;
    border-radius: 25px !important;
    padding: 60px !important;
    width: 100% !important;
    display: block !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center !important;
}

/* 4. Residential/Commercial Title */
.service-main-title {
    color: #101010 !important;
    font-size: 42px !important;
    margin-bottom: 30px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    display: block !important;
}

/* 5. The List: 2 columns on desktop, 1 on mobile */
.construction-list {
    display: inline-block !important;
    text-align: left !important;
    column-count: 2 !important;
    column-gap: 80px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    list-style: none !important;
    width: auto !important;
}

.construction-list li {
    color: #444 !important;
    font-size: 16px !important;
    margin-bottom: 10px !important;
    line-height: 1.4 !important;
}

/* 6. Sub-Headers (EXTERIOR, INTERIOR, etc) */
.list-header {
    column-span: all !important; /* Spans across both columns */
    color: #101010 !important;
    font-weight: 800 !important;
    margin: 30px 0 15px 0 !important;
    text-align: center !important;
    font-size: 1.2rem !important;
    display: block !important;
}

/* 7. Mobile Responsiveness */
@media (max-width: 768px) {
    .service-number {
        padding: 30px 20px !important;
    }
    .construction-list {
        column-count: 1 !important;
    }
    .service-main-title {
        font-size: 28px !important;
    }
}
@media (max-width: 768px) {
    /* 1. Position the Header for the dropdown */
    header {
        height: 80px !important;
        padding: 0 20px !important;
        position: relative;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    /* 2. Style the Navigation as a hidden dropdown */
    nav {
        display: none; /* Hidden by default */
        flex-direction: column !important;
        position: absolute !important;
        top: 80px; /* Sits exactly under the header */
        left: 0;
        width: 100%;
        background-color: #121212;
        border-bottom: 2px solid #2a2a2a;
        padding: 20px 0;
        z-index: 1000;
        gap: 0 !important;
    }

    /* 3. This class will be toggled via JavaScript */
    nav.active {
        display: flex !important;
    }

    /* 4. Organize the Nav Links into a list */
    nav a {
        width: 100% !important;
        height: 60px !important;
        padding: 0 40px !important;
        border-left: none !important;
        border-bottom: 1px solid #222 !important;
        clip-path: none !important; /* Remove the slant for a cleaner list */
        justify-content: flex-start !important;
    }

    /* 5. Show the Hamburger Button */
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #fff;
        transition: 0.3s;
    }
}@charset "utf-8";
/* CSS Document 

Tooplate 2156 Graphite Creative

https://www.tooplate.com/view/2156-graphite-creative

*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: #1a1a1a;
	color: #d0d0d0;
	line-height: 1.6;
}

/* HEADER */
header {
	height: 140px;
	background-color: #121212;
	border-bottom: 1px solid #2a2a2a;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 60px;
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo-area {
	display: flex;
	align-items: center;
	gap: 20px;
	cursor: pointer;
	text-decoration: none;
	color: #d0d0d0;
	transition: all 0.3s ease;
}

.logo-area:hover {
	opacity: 0.8;
}

.logo-vector {
	width: 100px;
	height: 100px;
	background: #000000);
	clip-path: polygon(0 0, 100% 0, 80% 100%, 0 80%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: white;
	font-size: 24px;
}

/* This targets the container holding the text */
.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1 !important; /* This is the "magic" number to bring lines together */
}

.logo-text h1 {
    font-size: 24px; /* Adjusted to fit better */
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0 !important; /* Removes default spacing between the two H1 lines */
    text-transform: uppercase;
    color: #ffffff;
}

.logo-text p {
    font-size: 10px;
    color: #777;
    margin-top: 2px !important; /* Controls the gap for the third small line */
    letter-spacing: 2px;
    text-transform: uppercase;
}
/* NAVIGATION */
nav {
	display: flex;
	gap: 16px;
	align-items: center;
}

/* UPDATED NAVIGATION */
nav a {
    height: 60px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    background-color: #101010 !important; /* Changes dark gray to pure black */
    color: #d0d0d0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    
    /* REMOVING BORDERS */
    border-left: none !important;   /* Removes the left black line */
    border-bottom: none !important; /* Removes the white bottom border */
    
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    
    /* This keeps the cool slanted shape */
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
}
nav a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: #2654c9;
	transition: height 0.3s ease;
	z-index: -1;
}

nav a:hover,
nav a.active {
	color: white;
}

nav a:hover::before,
nav a.active::before {
	height: 20%;
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
}

.menu-toggle span {
	width: 28px;
	height: 3px;
	background-color: #d0d0d0;
	transition: all 0.3s ease;
}

/* MAIN SECTIONS */
main {
	min-height: calc(100vh - 200px);
}

/* HERO SECTION */
.section-hero {
	min-height: 480px;
	background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), 
                url('images/Main-Img.jpg'); /* Update your file path here */
	display: flex;
	align-items: center;
	padding: 60px;
	background-color: #ebebeb;
	position: relative;
	overflow: hidden;
	background-repeat: no-repeat !important;
    background-size: cover !important;      /* Forces image to fill the width/height */
    background-position: center center !important; /* Centers the image perfectly */
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	gap: 60px;
	align-items: center;
}

.hero-left {
	display: flex !important;
    flex-direction: column !important;
    align-items: center !important;  /* Centers the content horizontally */
    text-align: center !important;   /* Centers the text lines */
    width: 100% !important;
	flex: 1;
	z-index: 2;
}

.hero-line {
	width: 100px;
	height: 3px;
	background: #555;
	margin: 0 0 30px 0;
}

.hero-left h2 {
	font-size: 48px;
	color: #101010;
	font-weight: 600;
	letter-spacing: -0.5px;
	line-height: 1.1;    /* Adjust this value; lower is tighter */
    margin-top: 10px;    /* Reduces space above the header */
    margin-bottom: 15px; /* Reduces space between header and paragraph */
    font-weight: 700;    /* Optional: keeps it bold and punchy */
}

.hero-left p {
	margin-left: auto !important;
    margin-right: auto !important;
    max-width: 800px; /* Prevents the lines from being too wide */
    text-align: center !important;
	font-size: 18px;
	color: #101010;
	margin-bottom: 40px;
	line-height: 1.8;
}

.cta-button {
	display: inline-block;
	padding: 18px 50px;
	background-color: #333;
	color: white;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	border: none;
	border-left: 2px solid #555;
	border-bottom: 2px solid #555;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
}

.cta-button::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: #444;
	transition: height 0.3s ease;
	z-index: -1;
}

.cta-button:hover {
	color: white;
}

.cta-button:hover::before {
	height: 20%;
}
/* Desktop Settings */
@media (min-width: 1200px) {
    .service-card {
        text-align: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 80px 0;
    }
}

/* Tablet & Mobile Settings */
@media (max-width: 1200px) {
    .slider-container {
        width: 100%;
        /* Adjust height to auto or a smaller fixed value for mobile */
        height: 350px; 
    }
    
    .slider-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.slide {
	position: absolute;
	width: 1200px;
	height: 480px;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #1a1a1a;
}

.slide.active {
	opacity: 1;
	z-index: 5;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Fallback text for slides if images don't load */
.slide::after {
	content: attr(data-fallback);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #555;
	font-size: 18px;
	text-align: center;
	opacity: 0;
	transition: opacity 0.3s;
}

.slide img[alt] {
	position: relative;
}

.slide img:not([src]),
.slide img[src=""] {
	opacity: 0;
}

.slide:not(:has(img[src])) ::after {
	opacity: 1;
}

.slider-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10;
}

.dot {
	width: 12px;
	height: 12px;
	background-color: rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.6);
}

.dot.active {
	background-color: white;
	transform: scale(1.2);
}

/* SERVICES SECTION - REDESIGNED WITH NUMBERS */
.section-services {
	padding: 120px 60px;
	background-color: #121212;
	border-top: 1px solid #2a2a2a;
}

.services-container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	font-size: 52px;
	font-weight: 800;
	margin-bottom: 80px;
	text-align: center;
	letter-spacing: -0.5px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 0;
}

.service-card {
	padding: 40px;
	background-color: transparent;
	border-right: 1px solid #2a2a2a;
	border-bottom: 1px solid #2a2a2a;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.service-card:nth-child(3n) {
	border-right: none;
}

.service-card:nth-last-child(-n+3) {
	border-bottom: none;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 0;
	background: linear-gradient(180deg, #555 0%, #333 100%);
	transition: height 0.3s ease;
}

.service-card:hover::before {
	height: 100%;
}

.service-number {
	font-size: 48px;
	font-weight: 300;
	color: #333;
	margin-bottom: 20px;
	font-family: 'Courier New', monospace;
	position: relative;
	display: inline-block;
}

/* Target the container you want to keep */
/* 1. Match the background to the Hero section */
.service-card {
	border-radius: 10px !important; /* Adjust this number: 10px for subtle, 30px for very round */
    overflow: hidden !important;   /* Crucial: clips the background/content to the rounded shape */
    background-color: #ebebeb; /* Standard Graphite dark theme hex */
    padding: 100px 0;
    margin: 0;
}

/* 2. Match the H1 title to the light grey you requested */
.service-main-title {
    color: #101010 !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* 3. Match the list/paragraph text to the Hero paragraph color */
.construction-list li {
    color: #101010;           /* This matches the 'From initial ground-breaking...' text color */
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 6px;
}

/* 4. Ensure headers within the list (like EXTERIOR) pop slightly more */
.list-header {
    color: #101010;           /* Pure white for sub-category headers */
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 15px;
}

.service-flex-container {
    display: flex;
    align-items: center; /* This keeps the now-shorter list centered next to the H1 */
    min-height: 480px;
}

.construction-list .list-header {
    font-family: 'Montserrat', sans-serif; /* The primary font for this template */
    font-weight: 700;                      /* Bold weight to match the Hero H2 */
    letter-spacing: -1px;                  /* Tightens the letters for that modern look */
    text-transform: uppercase;             /* Matches the 'RESIDENTIAL' styling */
}

.list-header::before {
    content: "" !important; /* Removes dot from headers */
}
.service-card:hover .service-number {
	color: #555;
}

.service-number::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #555;
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.service-card:hover .service-number::after {
	transform: scaleX(1);
}

.service-card h3 {
	font-size: 24px;
	margin-bottom: 16px;
	font-weight: 700;
}

.service-card p {
	color: #999;
	font-size: 15px;
	line-height: 1.8;
}



/* PORTFOLIO SECTION */
.section-portfolio {
	padding: 120px 60px;
	background-color: #1a1a1a;
	border-top: 1px solid #2a2a2a;
}

/* 1. Change the container to a 3-column grid */
/* 1. The Grid Layout */
/* 1. The Main Section */
#portfolio-container {
    padding: 100px 0;
    background-color: #1a1a1a;
    width: 100%;
    display: block; /* Ensures it stays a vertical block */
}

/* 2. The Title (Forced to stay on top) */
#portfolio-container h1 {
    text-align: center;
    width: 100%;
    margin-bottom: 60px;
    font-size: 48px;
    color: #ffffff;
    display: block;
}

/* 3. The Grid (The most important part) */
.portfolio-grid {
    display: grid !important;
    /* Forces 3 equal columns that fill the 1200px width */
    grid-template-columns: repeat(3, 1fr) !important; 
    gap: 50px 30px;
    max-width: 1200px;
    margin: 0 auto !important; /* This centers the grid on the screen */
    padding: 0 20px;
}

/* 4. The Individual Items */
.portfolio-item {
    text-align: center;
}

/* 5. The Image Size Fix */
.portfolio-item img {
    width: 100%;
    height: 240px;      /* Capped height to stop the 'huge' look */
    object-fit: cover;  /* Crops them perfectly into rectangles */
    border-radius: 12px;
    margin-bottom: 20px;
}

.portfolio-item h2 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
}

.portfolio-item p {
    font-size: 0.9rem;
    color: #888;
}
/* 3. The Text Alignment */
.project-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
/* ============================================================
   FINAL CLEANUP: SERVICES CENTERED & STRETCHED
   ============================================================ */

/* 1. Force the dark section to house the cards vertically */
.services-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 60px !important;
    width: 100% !important;
}

/* 2. The Main Card Container */
.service-card {
    background-color: transparent !important; /* Matches the site background */
    border: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 1100px !important;
}

/* 3. The White Box (The actual content area) */
.service-number {
    background: #ffffff !important;
    border-radius: 25px !important;
    padding: 60px !important;
    width: 100% !important;
    display: block !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center !important;
}

/* 4. Residential/Commercial Title */
.service-main-title {
    color: #101010 !important;
    font-size: 42px !important;
    margin-bottom: 30px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    display: block !important;
}

/* 5. The List: 2 columns on desktop, 1 on mobile */
.construction-list {
    display: inline-block !important;
    text-align: left !important;
    column-count: 2 !important;
    column-gap: 80px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    list-style: none !important;
    width: auto !important;
}

.construction-list li {
    color: #444 !important;
    font-size: 16px !important;
    margin-bottom: 10px !important;
    line-height: 1.4 !important;
}

/* 6. Sub-Headers (EXTERIOR, INTERIOR, etc) */
.list-header {
    column-span: all !important; /* Spans across both columns */
    color: #101010 !important;
    font-weight: 800 !important;
    margin: 30px 0 15px 0 !important;
    text-align: center !important;
    font-size: 1.2rem !important;
    display: block !important;
}

/* 7. Mobile Responsiveness */
@media (max-width: 768px) {
    .service-number {
        padding: 30px 20px !important;
    }
    .construction-list {
        column-count: 1 !important;
    }
    .service-main-title {
        font-size: 28px !important;
    }
}
@media (max-width: 768px) {
    /* 1. Position the Header for the dropdown */
    header {
        height: 80px !important;
        padding: 0 20px !important;
        position: relative;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    /* 2. Style the Navigation as a hidden dropdown */
    nav {
        display: none; /* Hidden by default */
        flex-direction: column !important;
        position: absolute !important;
        top: 80px; /* Sits exactly under the header */
        left: 0;
        width: 100%;
        background-color: #121212;
        border-bottom: 2px solid #2a2a2a;
        padding: 20px 0;
        z-index: 1000;
        gap: 0 !important;
    }

    /* 3. This class will be toggled via JavaScript */
    nav.active {
        display: flex !important;
    }

    /* 4. Organize the Nav Links into a list */
    nav a {
        width: 100% !important;
        height: 60px !important;
        padding: 0 40px !important;
        border-left: none !important;
        border-bottom: 1px solid #222 !important;
        clip-path: none !important; /* Remove the slant for a cleaner list */
        justify-content: flex-start !important;
    }

    /* 5. Show the Hamburger Button */
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #fff;
        transition: 0.3s;
    }
}@charset "utf-8";
/* CSS Document 

Tooplate 2156 Graphite Creative

https://www.tooplate.com/view/2156-graphite-creative

*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: #1a1a1a;
	color: #d0d0d0;
	line-height: 1.6;
}

/* HEADER */
header {
	height: 140px;
	background-color: #121212;
	border-bottom: 1px solid #2a2a2a;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 60px;
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo-area {
	display: flex;
	align-items: center;
	gap: 20px;
	cursor: pointer;
	text-decoration: none;
	color: #d0d0d0;
	transition: all 0.3s ease;
}

.logo-area:hover {
	opacity: 0.8;
}

.logo-vector {
	width: 100px;
	height: 100px;
	background: #000000);
	clip-path: polygon(0 0, 100% 0, 80% 100%, 0 80%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: white;
	font-size: 24px;
}

/* This targets the container holding the text */
.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1 !important; /* This is the "magic" number to bring lines together */
}

.logo-text h1 {
    font-size: 24px; /* Adjusted to fit better */
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0 !important; /* Removes default spacing between the two H1 lines */
    text-transform: uppercase;
    color: #ffffff;
}

.logo-text p {
    font-size: 10px;
    color: #777;
    margin-top: 2px !important; /* Controls the gap for the third small line */
    letter-spacing: 2px;
    text-transform: uppercase;
}
/* NAVIGATION */
nav {
	display: flex;
	gap: 16px;
	align-items: center;
}

/* UPDATED NAVIGATION */
nav a {
    height: 60px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    background-color: #101010 !important; /* Changes dark gray to pure black */
    color: #d0d0d0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    
    /* REMOVING BORDERS */
    border-left: none !important;   /* Removes the left black line */
    border-bottom: none !important; /* Removes the white bottom border */
    
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    
    /* This keeps the cool slanted shape */
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
}
nav a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: #2654c9;
	transition: height 0.3s ease;
	z-index: -1;
}

nav a:hover,
nav a.active {
	color: white;
}

nav a:hover::before,
nav a.active::before {
	height: 20%;
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
}

.menu-toggle span {
	width: 28px;
	height: 3px;
	background-color: #d0d0d0;
	transition: all 0.3s ease;
}

/* MAIN SECTIONS */
main {
	min-height: calc(100vh - 200px);
}

/* HERO SECTION */
.section-hero {
	min-height: 480px;
	background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), 
                url('images/Main-Img.jpg'); /* Update your file path here */
	display: flex;
	align-items: center;
	padding: 60px;
	background-color: #ebebeb;
	position: relative;
	overflow: hidden;
	background-repeat: no-repeat !important;
    background-size: cover !important;      /* Forces image to fill the width/height */
    background-position: center center !important; /* Centers the image perfectly */
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	gap: 60px;
	align-items: center;
}

.hero-left {
	display: flex !important;
    flex-direction: column !important;
    align-items: center !important;  /* Centers the content horizontally */
    text-align: center !important;   /* Centers the text lines */
    width: 100% !important;
	flex: 1;
	z-index: 2;
}

.hero-line {
	width: 100px;
	height: 3px;
	background: #555;
	margin: 0 0 30px 0;
}

.hero-left h2 {
	font-size: 48px;
	color: #101010;
	font-weight: 600;
	letter-spacing: -0.5px;
	line-height: 1.1;    /* Adjust this value; lower is tighter */
    margin-top: 10px;    /* Reduces space above the header */
    margin-bottom: 15px; /* Reduces space between header and paragraph */
    font-weight: 700;    /* Optional: keeps it bold and punchy */
}

.hero-left p {
	margin-left: auto !important;
    margin-right: auto !important;
    max-width: 800px; /* Prevents the lines from being too wide */
    text-align: center !important;
	font-size: 18px;
	color: #101010;
	margin-bottom: 40px;
	line-height: 1.8;
}

.cta-button {
	display: inline-block;
	padding: 18px 50px;
	background-color: #333;
	color: white;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	border: none;
	border-left: 2px solid #555;
	border-bottom: 2px solid #555;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
}

.cta-button::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: #444;
	transition: height 0.3s ease;
	z-index: -1;
}

.cta-button:hover {
	color: white;
}

.cta-button:hover::before {
	height: 20%;
}
/* Desktop Settings */
@media (min-width: 1200px) {
    .service-card {
        text-align: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 80px 0;
    }
}

/* Tablet & Mobile Settings */
@media (max-width: 1200px) {
    .slider-container {
        width: 100%;
        /* Adjust height to auto or a smaller fixed value for mobile */
        height: 350px; 
    }
    
    .slider-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.slide {
	position: absolute;
	width: 1200px;
	height: 480px;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #1a1a1a;
}

.slide.active {
	opacity: 1;
	z-index: 5;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Fallback text for slides if images don't load */
.slide::after {
	content: attr(data-fallback);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #555;
	font-size: 18px;
	text-align: center;
	opacity: 0;
	transition: opacity 0.3s;
}

.slide img[alt] {
	position: relative;
}

.slide img:not([src]),
.slide img[src=""] {
	opacity: 0;
}

.slide:not(:has(img[src])) ::after {
	opacity: 1;
}

.slider-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10;
}

.dot {
	width: 12px;
	height: 12px;
	background-color: rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.6);
}

.dot.active {
	background-color: white;
	transform: scale(1.2);
}

/* SERVICES SECTION - REDESIGNED WITH NUMBERS */
.section-services {
	padding: 120px 60px;
	background-color: #121212;
	border-top: 1px solid #2a2a2a;
}

.services-container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	font-size: 52px;
	font-weight: 800;
	margin-bottom: 80px;
	text-align: center;
	letter-spacing: -0.5px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 0;
}

.service-card {
	padding: 40px;
	background-color: transparent;
	border-right: 1px solid #2a2a2a;
	border-bottom: 1px solid #2a2a2a;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.service-card:nth-child(3n) {
	border-right: none;
}

.service-card:nth-last-child(-n+3) {
	border-bottom: none;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 0;
	background: linear-gradient(180deg, #555 0%, #333 100%);
	transition: height 0.3s ease;
}

.service-card:hover::before {
	height: 100%;
}

.service-number {
	font-size: 48px;
	font-weight: 300;
	color: #333;
	margin-bottom: 20px;
	font-family: 'Courier New', monospace;
	position: relative;
	display: inline-block;
}

/* Target the container you want to keep */
/* 1. Match the background to the Hero section */
.service-card {
	border-radius: 10px !important; /* Adjust this number: 10px for subtle, 30px for very round */
    overflow: hidden !important;   /* Crucial: clips the background/content to the rounded shape */
    background-color: #ebebeb; /* Standard Graphite dark theme hex */
    padding: 100px 0;
    margin: 0;
}

/* 2. Match the H1 title to the light grey you requested */
.service-main-title {
    color: #101010 !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* 3. Match the list/paragraph text to the Hero paragraph color */
.construction-list li {
    color: #101010;           /* This matches the 'From initial ground-breaking...' text color */
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 6px;
}

/* 4. Ensure headers within the list (like EXTERIOR) pop slightly more */
.list-header {
    color: #101010;           /* Pure white for sub-category headers */
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 15px;
}

.service-flex-container {
    display: flex;
    align-items: center; /* This keeps the now-shorter list centered next to the H1 */
    min-height: 480px;
}

.construction-list .list-header {
    font-family: 'Montserrat', sans-serif; /* The primary font for this template */
    font-weight: 700;                      /* Bold weight to match the Hero H2 */
    letter-spacing: -1px;                  /* Tightens the letters for that modern look */
    text-transform: uppercase;             /* Matches the 'RESIDENTIAL' styling */
}

.list-header::before {
    content: "" !important; /* Removes dot from headers */
}
.service-card:hover .service-number {
	color: #555;
}

.service-number::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #555;
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.service-card:hover .service-number::after {
	transform: scaleX(1);
}

.service-card h3 {
	font-size: 24px;
	margin-bottom: 16px;
	font-weight: 700;
}

.service-card p {
	color: #999;
	font-size: 15px;
	line-height: 1.8;
}



/* PORTFOLIO SECTION */
.section-portfolio {
	padding: 120px 60px;
	background-color: #1a1a1a;
	border-top: 1px solid #2a2a2a;
}

/* 1. Change the container to a 3-column grid */
/* 1. The Grid Layout */
/* 1. The Main Section */
#portfolio-container {
    padding: 100px 0;
    background-color: #1a1a1a;
    width: 100%;
    display: block; /* Ensures it stays a vertical block */
}

/* 2. The Title (Forced to stay on top) */
#portfolio-container h1 {
    text-align: center;
    width: 100%;
    margin-bottom: 60px;
    font-size: 48px;
    color: #ffffff;
    display: block;
}

/* 3. The Grid (The most important part) */
.portfolio-grid {
    display: grid !important;
    /* Forces 3 equal columns that fill the 1200px width */
    grid-template-columns: repeat(3, 1fr) !important; 
    gap: 50px 30px;
    max-width: 1200px;
    margin: 0 auto !important; /* This centers the grid on the screen */
    padding: 0 20px;
}

/* 4. The Individual Items */
.portfolio-item {
    text-align: center;
}

/* 5. The Image Size Fix */
.portfolio-item img {
    width: 100%;
    height: 240px;      /* Capped height to stop the 'huge' look */
    object-fit: cover;  /* Crops them perfectly into rectangles */
    border-radius: 12px;
    margin-bottom: 20px;
}

.portfolio-item h2 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
}

.portfolio-item p {
    font-size: 0.9rem;
    color: #888;
}
/* 3. The Text Alignment */
.project-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
/* ============================================================
   FINAL CLEANUP: SERVICES CENTERED & STRETCHED
   ============================================================ */

/* 1. Force the dark section to house the cards vertically */
.services-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 60px !important;
    width: 100% !important;
}

/* 2. The Main Card Container */
.service-card {
    background-color: transparent !important; /* Matches the site background */
    border: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 1100px !important;
}

/* 3. The White Box (The actual content area) */
.service-number {
    background: #ffffff !important;
    border-radius: 25px !important;
    padding: 60px !important;
    width: 100% !important;
    display: block !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center !important;
}

/* 4. Residential/Commercial Title */
.service-main-title {
    color: #101010 !important;
    font-size: 42px !important;
    margin-bottom: 30px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    display: block !important;
}

/* 5. The List: 2 columns on desktop, 1 on mobile */
.construction-list {
    display: inline-block !important;
    text-align: left !important;
    column-count: 2 !important;
    column-gap: 80px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    list-style: none !important;
    width: auto !important;
}

.construction-list li {
    color: #444 !important;
    font-size: 16px !important;
    margin-bottom: 10px !important;
    line-height: 1.4 !important;
}

/* 6. Sub-Headers (EXTERIOR, INTERIOR, etc) */
.list-header {
    column-span: all !important; /* Spans across both columns */
    color: #101010 !important;
    font-weight: 800 !important;
    margin: 30px 0 15px 0 !important;
    text-align: center !important;
    font-size: 1.2rem !important;
    display: block !important;
}

/* 7. Mobile Responsiveness */
@media (max-width: 768px) {
    .service-number {
        padding: 30px 20px !important;
    }
    .construction-list {
        column-count: 1 !important;
    }
    .service-main-title {
        font-size: 28px !important;
    }
}
@media (max-width: 768px) {
    /* 1. Position the Header for the dropdown */
    header {
        height: 80px !important;
        padding: 0 20px !important;
        position: relative;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    /* 2. Style the Navigation as a hidden dropdown */
    nav {
        display: none; /* Hidden by default */
        flex-direction: column !important;
        position: absolute !important;
        top: 80px; /* Sits exactly under the header */
        left: 0;
        width: 100%;
        background-color: #121212;
        border-bottom: 2px solid #2a2a2a;
        padding: 20px 0;
        z-index: 1000;
        gap: 0 !important;
    }

    /* 3. This class will be toggled via JavaScript */
    nav.active {
        display: flex !important;
    }

    /* 4. Organize the Nav Links into a list */
    nav a {
        width: 100% !important;
        height: 60px !important;
        padding: 0 40px !important;
        border-left: none !important;
        border-bottom: 1px solid #222 !important;
        clip-path: none !important; /* Remove the slant for a cleaner list */
        justify-content: flex-start !important;
    }

    /* 5. Show the Hamburger Button */
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #fff;
        transition: 0.3s;
    }
}@charset "utf-8";
/* CSS Document 

Tooplate 2156 Graphite Creative

https://www.tooplate.com/view/2156-graphite-creative

*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: #1a1a1a;
	color: #d0d0d0;
	line-height: 1.6;
}

/* HEADER */
header {
	height: 140px;
	background-color: #121212;
	border-bottom: 1px solid #2a2a2a;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 60px;
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo-area {
	display: flex;
	align-items: center;
	gap: 20px;
	cursor: pointer;
	text-decoration: none;
	color: #d0d0d0;
	transition: all 0.3s ease;
}

.logo-area:hover {
	opacity: 0.8;
}

.logo-vector {
	width: 100px;
	height: 100px;
	background: #000000);
	clip-path: polygon(0 0, 100% 0, 80% 100%, 0 80%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: white;
	font-size: 24px;
}

/* This targets the container holding the text */
.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1 !important; /* This is the "magic" number to bring lines together */
}

.logo-text h1 {
    font-size: 24px; /* Adjusted to fit better */
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0 !important; /* Removes default spacing between the two H1 lines */
    text-transform: uppercase;
    color: #ffffff;
}

.logo-text p {
    font-size: 10px;
    color: #777;
    margin-top: 2px !important; /* Controls the gap for the third small line */
    letter-spacing: 2px;
    text-transform: uppercase;
}
/* NAVIGATION */
nav {
	display: flex;
	gap: 16px;
	align-items: center;
}

/* UPDATED NAVIGATION */
nav a {
    height: 60px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    background-color: #101010 !important; /* Changes dark gray to pure black */
    color: #d0d0d0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    
    /* REMOVING BORDERS */
    border-left: none !important;   /* Removes the left black line */
    border-bottom: none !important; /* Removes the white bottom border */
    
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    
    /* This keeps the cool slanted shape */
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
}
nav a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: #2654c9;
	transition: height 0.3s ease;
	z-index: -1;
}

nav a:hover,
nav a.active {
	color: white;
}

nav a:hover::before,
nav a.active::before {
	height: 20%;
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
}

.menu-toggle span {
	width: 28px;
	height: 3px;
	background-color: #d0d0d0;
	transition: all 0.3s ease;
}

/* MAIN SECTIONS */
main {
	min-height: calc(100vh - 200px);
}

/* HERO SECTION */
.section-hero {
	min-height: 480px;
	background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), 
                url('images/Main-Img.jpg'); /* Update your file path here */
	display: flex;
	align-items: center;
	padding: 60px;
	background-color: #ebebeb;
	position: relative;
	overflow: hidden;
	background-repeat: no-repeat !important;
    background-size: cover !important;      /* Forces image to fill the width/height */
    background-position: center center !important; /* Centers the image perfectly */
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	gap: 60px;
	align-items: center;
}

.hero-left {
	display: flex !important;
    flex-direction: column !important;
    align-items: center !important;  /* Centers the content horizontally */
    text-align: center !important;   /* Centers the text lines */
    width: 100% !important;
	flex: 1;
	z-index: 2;
}

.hero-line {
	width: 100px;
	height: 3px;
	background: #555;
	margin: 0 0 30px 0;
}

.hero-left h2 {
	font-size: 48px;
	color: #101010;
	font-weight: 600;
	letter-spacing: -0.5px;
	line-height: 1.1;    /* Adjust this value; lower is tighter */
    margin-top: 10px;    /* Reduces space above the header */
    margin-bottom: 15px; /* Reduces space between header and paragraph */
    font-weight: 700;    /* Optional: keeps it bold and punchy */
}

.hero-left p {
	margin-left: auto !important;
    margin-right: auto !important;
    max-width: 800px; /* Prevents the lines from being too wide */
    text-align: center !important;
	font-size: 18px;
	color: #101010;
	margin-bottom: 40px;
	line-height: 1.8;
}

.cta-button {
	display: inline-block;
	padding: 18px 50px;
	background-color: #333;
	color: white;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	border: none;
	border-left: 2px solid #555;
	border-bottom: 2px solid #555;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
}

.cta-button::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: #444;
	transition: height 0.3s ease;
	z-index: -1;
}

.cta-button:hover {
	color: white;
}

.cta-button:hover::before {
	height: 20%;
}
/* Desktop Settings */
@media (min-width: 1200px) {
    .service-card {
        text-align: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 80px 0;
    }
}

/* Tablet & Mobile Settings */
@media (max-width: 1200px) {
    .slider-container {
        width: 100%;
        /* Adjust height to auto or a smaller fixed value for mobile */
        height: 350px; 
    }
    
    .slider-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.slide {
	position: absolute;
	width: 1200px;
	height: 480px;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #1a1a1a;
}

.slide.active {
	opacity: 1;
	z-index: 5;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Fallback text for slides if images don't load */
.slide::after {
	content: attr(data-fallback);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #555;
	font-size: 18px;
	text-align: center;
	opacity: 0;
	transition: opacity 0.3s;
}

.slide img[alt] {
	position: relative;
}

.slide img:not([src]),
.slide img[src=""] {
	opacity: 0;
}

.slide:not(:has(img[src])) ::after {
	opacity: 1;
}

.slider-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10;
}

.dot {
	width: 12px;
	height: 12px;
	background-color: rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.6);
}

.dot.active {
	background-color: white;
	transform: scale(1.2);
}

/* SERVICES SECTION - REDESIGNED WITH NUMBERS */
.section-services {
	padding: 120px 60px;
	background-color: #121212;
	border-top: 1px solid #2a2a2a;
}

.services-container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	font-size: 52px;
	font-weight: 800;
	margin-bottom: 80px;
	text-align: center;
	letter-spacing: -0.5px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 0;
}

.service-card {
	padding: 40px;
	background-color: transparent;
	border-right: 1px solid #2a2a2a;
	border-bottom: 1px solid #2a2a2a;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.service-card:nth-child(3n) {
	border-right: none;
}

.service-card:nth-last-child(-n+3) {
	border-bottom: none;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 0;
	background: linear-gradient(180deg, #555 0%, #333 100%);
	transition: height 0.3s ease;
}

.service-card:hover::before {
	height: 100%;
}

.service-number {
	font-size: 48px;
	font-weight: 300;
	color: #333;
	margin-bottom: 20px;
	font-family: 'Courier New', monospace;
	position: relative;
	display: inline-block;
}

/* Target the container you want to keep */
/* 1. Match the background to the Hero section */
.service-card {
	border-radius: 10px !important; /* Adjust this number: 10px for subtle, 30px for very round */
    overflow: hidden !important;   /* Crucial: clips the background/content to the rounded shape */
    background-color: #ebebeb; /* Standard Graphite dark theme hex */
    padding: 100px 0;
    margin: 0;
}

/* 2. Match the H1 title to the light grey you requested */
.service-main-title {
    color: #101010 !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* 3. Match the list/paragraph text to the Hero paragraph color */
.construction-list li {
    color: #101010;           /* This matches the 'From initial ground-breaking...' text color */
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 6px;
}

/* 4. Ensure headers within the list (like EXTERIOR) pop slightly more */
.list-header {
    color: #101010;           /* Pure white for sub-category headers */
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 15px;
}

.service-flex-container {
    display: flex;
    align-items: center; /* This keeps the now-shorter list centered next to the H1 */
    min-height: 480px;
}

.construction-list .list-header {
    font-family: 'Montserrat', sans-serif; /* The primary font for this template */
    font-weight: 700;                      /* Bold weight to match the Hero H2 */
    letter-spacing: -1px;                  /* Tightens the letters for that modern look */
    text-transform: uppercase;             /* Matches the 'RESIDENTIAL' styling */
}

.list-header::before {
    content: "" !important; /* Removes dot from headers */
}
.service-card:hover .service-number {
	color: #555;
}

.service-number::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #555;
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.service-card:hover .service-number::after {
	transform: scaleX(1);
}

.service-card h3 {
	font-size: 24px;
	margin-bottom: 16px;
	font-weight: 700;
}

.service-card p {
	color: #999;
	font-size: 15px;
	line-height: 1.8;
}



/* PORTFOLIO SECTION */
.section-portfolio {
	padding: 120px 60px;
	background-color: #1a1a1a;
	border-top: 1px solid #2a2a2a;
}

/* 1. Change the container to a 3-column grid */
/* 1. The Grid Layout */
/* 1. The Main Section */
#portfolio-container {
    padding: 100px 0;
    background-color: #1a1a1a;
    width: 100%;
    display: block; /* Ensures it stays a vertical block */
}

/* 2. The Title (Forced to stay on top) */
#portfolio-container h1 {
    text-align: center;
    width: 100%;
    margin-bottom: 60px;
    font-size: 48px;
    color: #ffffff;
    display: block;
}

/* 3. The Grid (The most important part) */
.portfolio-grid {
    display: grid !important;
    /* Forces 3 equal columns that fill the 1200px width */
    grid-template-columns: repeat(3, 1fr) !important; 
    gap: 50px 30px;
    max-width: 1200px;
    margin: 0 auto !important; /* This centers the grid on the screen */
    padding: 0 20px;
}

/* 4. The Individual Items */
.portfolio-item {
    text-align: center;
}

/* 5. The Image Size Fix */
.portfolio-item img {
    width: 100%;
    height: 240px;      /* Capped height to stop the 'huge' look */
    object-fit: cover;  /* Crops them perfectly into rectangles */
    border-radius: 12px;
    margin-bottom: 20px;
}

.portfolio-item h2 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
}

.portfolio-item p {
    font-size: 0.9rem;
    color: #888;
}
/* 3. The Text Alignment */
.project-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
/* ============================================================
   FINAL CLEANUP: SERVICES CENTERED & STRETCHED
   ============================================================ */

/* 1. Force the dark section to house the cards vertically */
.services-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 60px !important;
    width: 100% !important;
}

/* 2. The Main Card Container */
.service-card {
    background-color: transparent !important; /* Matches the site background */
    border: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 1100px !important;
}

/* 3. The White Box (The actual content area) */
.service-number {
    background: #ffffff !important;
    border-radius: 25px !important;
    padding: 60px !important;
    width: 100% !important;
    display: block !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center !important;
}

/* 4. Residential/Commercial Title */
.service-main-title {
    color: #101010 !important;
    font-size: 42px !important;
    margin-bottom: 30px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    display: block !important;
}

/* 5. The List: 2 columns on desktop, 1 on mobile */
.construction-list {
    display: inline-block !important;
    text-align: left !important;
    column-count: 2 !important;
    column-gap: 80px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    list-style: none !important;
    width: auto !important;
}

.construction-list li {
    color: #444 !important;
    font-size: 16px !important;
    margin-bottom: 10px !important;
    line-height: 1.4 !important;
}

/* 6. Sub-Headers (EXTERIOR, INTERIOR, etc) */
.list-header {
    column-span: all !important; /* Spans across both columns */
    color: #101010 !important;
    font-weight: 800 !important;
    margin: 30px 0 15px 0 !important;
    text-align: center !important;
    font-size: 1.2rem !important;
    display: block !important;
}

/* 7. Mobile Responsiveness */
@media (max-width: 768px) {
    .service-number {
        padding: 30px 20px !important;
    }
    .construction-list {
        column-count: 1 !important;
    }
    .service-main-title {
        font-size: 28px !important;
    }
}
@media (max-width: 768px) {
    /* 1. Position the Header for the dropdown */
    header {
        height: 80px !important;
        padding: 0 20px !important;
        position: relative;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    /* 2. Style the Navigation as a hidden dropdown */
    nav {
        display: none; /* Hidden by default */
        flex-direction: column !important;
        position: absolute !important;
        top: 80px; /* Sits exactly under the header */
        left: 0;
        width: 100%;
        background-color: #121212;
        border-bottom: 2px solid #2a2a2a;
        padding: 20px 0;
        z-index: 1000;
        gap: 0 !important;
    }

    /* 3. This class will be toggled via JavaScript */
    nav.active {
        display: flex !important;
    }

    /* 4. Organize the Nav Links into a list */
    nav a {
        width: 100% !important;
        height: 60px !important;
        padding: 0 40px !important;
        border-left: none !important;
        border-bottom: 1px solid #222 !important;
        clip-path: none !important; /* Remove the slant for a cleaner list */
        justify-content: flex-start !important;
    }

    /* 5. Show the Hamburger Button */
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #fff;
        transition: 0.3s;
    }
}@charset "utf-8";
/* CSS Document 

Tooplate 2156 Graphite Creative

https://www.tooplate.com/view/2156-graphite-creative

*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	background-color: #1a1a1a;
	color: #d0d0d0;
	line-height: 1.6;
}

/* HEADER */
header {
	height: 140px;
	background-color: #121212;
	border-bottom: 1px solid #2a2a2a;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 60px;
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo-area {
	display: flex;
	align-items: center;
	gap: 20px;
	cursor: pointer;
	text-decoration: none;
	color: #d0d0d0;
	transition: all 0.3s ease;
}

.logo-area:hover {
	opacity: 0.8;
}

.logo-vector {
	width: 100px;
	height: 100px;
	background: #000000);
	clip-path: polygon(0 0, 100% 0, 80% 100%, 0 80%);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	color: white;
	font-size: 24px;
}

/* This targets the container holding the text */
.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1 !important; /* This is the "magic" number to bring lines together */
}

.logo-text h1 {
    font-size: 24px; /* Adjusted to fit better */
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0 !important; /* Removes default spacing between the two H1 lines */
    text-transform: uppercase;
    color: #ffffff;
}

.logo-text p {
    font-size: 10px;
    color: #777;
    margin-top: 2px !important; /* Controls the gap for the third small line */
    letter-spacing: 2px;
    text-transform: uppercase;
}
/* NAVIGATION */
nav {
	display: flex;
	gap: 16px;
	align-items: center;
}

/* UPDATED NAVIGATION */
nav a {
    height: 60px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    background-color: #101010 !important; /* Changes dark gray to pure black */
    color: #d0d0d0;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    
    /* REMOVING BORDERS */
    border-left: none !important;   /* Removes the left black line */
    border-bottom: none !important; /* Removes the white bottom border */
    
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    
    /* This keeps the cool slanted shape */
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%);
}
nav a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: #2654c9;
	transition: height 0.3s ease;
	z-index: -1;
}

nav a:hover,
nav a.active {
	color: white;
}

nav a:hover::before,
nav a.active::before {
	height: 20%;
}

/* MOBILE MENU TOGGLE */
.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
}

.menu-toggle span {
	width: 28px;
	height: 3px;
	background-color: #d0d0d0;
	transition: all 0.3s ease;
}

/* MAIN SECTIONS */
main {
	min-height: calc(100vh - 200px);
}

/* HERO SECTION */
.section-hero {
	min-height: 480px;
	background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), 
                url('images/Main-Img.jpg'); /* Update your file path here */
	display: flex;
	align-items: center;
	padding: 60px;
	background-color: #ebebeb;
	position: relative;
	overflow: hidden;
	background-repeat: no-repeat !important;
    background-size: cover !important;      /* Forces image to fill the width/height */
    background-position: center center !important; /* Centers the image perfectly */
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	display: flex;
	gap: 60px;
	align-items: center;
}

.hero-left {
	display: flex !important;
    flex-direction: column !important;
    align-items: center !important;  /* Centers the content horizontally */
    text-align: center !important;   /* Centers the text lines */
    width: 100% !important;
	flex: 1;
	z-index: 2;
}

.hero-line {
	width: 100px;
	height: 3px;
	background: #555;
	margin: 0 0 30px 0;
}

.hero-left h2 {
	font-size: 48px;
	color: #101010;
	font-weight: 600;
	letter-spacing: -0.5px;
	line-height: 1.1;    /* Adjust this value; lower is tighter */
    margin-top: 10px;    /* Reduces space above the header */
    margin-bottom: 15px; /* Reduces space between header and paragraph */
    font-weight: 700;    /* Optional: keeps it bold and punchy */
}

.hero-left p {
	margin-left: auto !important;
    margin-right: auto !important;
    max-width: 800px; /* Prevents the lines from being too wide */
    text-align: center !important;
	font-size: 18px;
	color: #101010;
	margin-bottom: 40px;
	line-height: 1.8;
}

.cta-button {
	display: inline-block;
	padding: 18px 50px;
	background-color: #333;
	color: white;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	border: none;
	border-left: 2px solid #555;
	border-bottom: 2px solid #555;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
}

.cta-button::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: #444;
	transition: height 0.3s ease;
	z-index: -1;
}

.cta-button:hover {
	color: white;
}

.cta-button:hover::before {
	height: 20%;
}
/* Desktop Settings */
@media (min-width: 1200px) {
    .service-card {
        text-align: center;
        max-width: 1200px;
        margin: 0 auto;
        padding: 80px 0;
    }
}

/* Tablet & Mobile Settings */
@media (max-width: 1200px) {
    .slider-container {
        width: 100%;
        /* Adjust height to auto or a smaller fixed value for mobile */
        height: 350px; 
    }
    
    .slider-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.slide {
	position: absolute;
	width: 1200px;
	height: 480px;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #1a1a1a;
}

.slide.active {
	opacity: 1;
	z-index: 5;
}

.slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Fallback text for slides if images don't load */
.slide::after {
	content: attr(data-fallback);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #555;
	font-size: 18px;
	text-align: center;
	opacity: 0;
	transition: opacity 0.3s;
}

.slide img[alt] {
	position: relative;
}

.slide img:not([src]),
.slide img[src=""] {
	opacity: 0;
}

.slide:not(:has(img[src])) ::after {
	opacity: 1;
}

.slider-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10;
}

.dot {
	width: 12px;
	height: 12px;
	background-color: rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid rgba(255, 255, 255, 0.6);
}

.dot.active {
	background-color: white;
	transform: scale(1.2);
}

/* SERVICES SECTION - REDESIGNED WITH NUMBERS */
.section-services {
	padding: 120px 60px;
	background-color: #121212;
	border-top: 1px solid #2a2a2a;
}

.services-container {
	max-width: 1200px;
	margin: 0 auto;
}

.section-title {
	font-size: 52px;
	font-weight: 800;
	margin-bottom: 80px;
	text-align: center;
	letter-spacing: -0.5px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 0;
}

.service-card {
	padding: 40px;
	background-color: transparent;
	border-right: 1px solid #2a2a2a;
	border-bottom: 1px solid #2a2a2a;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.service-card:nth-child(3n) {
	border-right: none;
}

.service-card:nth-last-child(-n+3) {
	border-bottom: none;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 0;
	background: linear-gradient(180deg, #555 0%, #333 100%);
	transition: height 0.3s ease;
}

.service-card:hover::before {
	height: 100%;
}

.service-number {
	font-size: 48px;
	font-weight: 300;
	color: #333;
	margin-bottom: 20px;
	font-family: 'Courier New', monospace;
	position: relative;
	display: inline-block;
}

/* Target the container you want to keep */
/* 1. Match the background to the Hero section */
.service-card {
	border-radius: 10px !important; /* Adjust this number: 10px for subtle, 30px for very round */
    overflow: hidden !important;   /* Crucial: clips the background/content to the rounded shape */
    background-color: #ebebeb; /* Standard Graphite dark theme hex */
    padding: 100px 0;
    margin: 0;
}

/* 2. Match the H1 title to the light grey you requested */
.service-main-title {
    color: #101010 !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* 3. Match the list/paragraph text to the Hero paragraph color */
.construction-list li {
    color: #101010;           /* This matches the 'From initial ground-breaking...' text color */
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 6px;
}

/* 4. Ensure headers within the list (like EXTERIOR) pop slightly more */
.list-header {
    color: #101010;           /* Pure white for sub-category headers */
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 15px;
}

.service-flex-container {
    display: flex;
    align-items: center; /* This keeps the now-shorter list centered next to the H1 */
    min-height: 480px;
}

.construction-list .list-header {
    font-family: 'Montserrat', sans-serif; /* The primary font for this template */
    font-weight: 700;                      /* Bold weight to match the Hero H2 */
    letter-spacing: -1px;                  /* Tightens the letters for that modern look */
    text-transform: uppercase;             /* Matches the 'RESIDENTIAL' styling */
}

.list-header::before {
    content: "" !important; /* Removes dot from headers */
}
.service-card:hover .service-number {
	color: #555;
}

.service-number::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 1px;
	background: #555;
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.service-card:hover .service-number::after {
	transform: scaleX(1);
}

.service-card h3 {
	font-size: 24px;
	margin-bottom: 16px;
	font-weight: 700;
}

.service-card p {
	color: #999;
	font-size: 15px;
	line-height: 1.8;
}



/* PORTFOLIO SECTION */
.section-portfolio {
	padding: 120px 60px;
	background-color: #1a1a1a;
	border-top: 1px solid #2a2a2a;
}

/* 1. Change the container to a 3-column grid */
/* 1. The Grid Layout */
/* 1. The Main Section */
#portfolio-container {
    padding: 100px 0;
    background-color: #1a1a1a;
    width: 100%;
    display: block; /* Ensures it stays a vertical block */
}

/* 2. The Title (Forced to stay on top) */
#portfolio-container h1 {
    text-align: center;
    width: 100%;
    margin-bottom: 60px;
    font-size: 48px;
    color: #ffffff;
    display: block;
}

/* 3. The Grid (The most important part) */
.portfolio-grid {
    display: grid !important;
    /* Forces 3 equal columns that fill the 1200px width */
    grid-template-columns: repeat(3, 1fr) !important; 
    gap: 50px 30px;
    max-width: 1200px;
    margin: 0 auto !important; /* This centers the grid on the screen */
    padding: 0 20px;
}

/* 4. The Individual Items */
.portfolio-item {
    text-align: center;
}

/* 5. The Image Size Fix */
.portfolio-item img {
    width: 100%;
    height: 240px;      /* Capped height to stop the 'huge' look */
    object-fit: cover;  /* Crops them perfectly into rectangles */
    border-radius: 12px;
    margin-bottom: 20px;
}

.portfolio-item h2 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 5px;
}

.portfolio-item p {
    font-size: 0.9rem;
    color: #888;
}
/* 3. The Text Alignment */
.project-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
/* ============================================================
   FINAL CLEANUP: SERVICES CENTERED & STRETCHED
   ============================================================ */

/* 1. Force the dark section to house the cards vertically */
.services-grid {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 60px !important;
    width: 100% !important;
}

/* 2. The Main Card Container */
.service-card {
    background-color: transparent !important; /* Matches the site background */
    border: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
    width: 100% !important;
    max-width: 1100px !important;
}

/* 3. The White Box (The actual content area) */
.service-number {
    background: #ffffff !important;
    border-radius: 25px !important;
    padding: 60px !important;
    width: 100% !important;
    display: block !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center !important;
}

/* 4. Residential/Commercial Title */
.service-main-title {
    color: #101010 !important;
    font-size: 42px !important;
    margin-bottom: 30px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    display: block !important;
}

/* 5. The List: 2 columns on desktop, 1 on mobile */
.construction-list {
    display: inline-block !important;
    text-align: left !important;
    column-count: 2 !important;
    column-gap: 80px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    list-style: none !important;
    width: auto !important;
}

.construction-list li {
    color: #444 !important;
    font-size: 16px !important;
    margin-bottom: 10px !important;
    line-height: 1.4 !important;
}

/* 6. Sub-Headers (EXTERIOR, INTERIOR, etc) */
.list-header {
    column-span: all !important; /* Spans across both columns */
    color: #101010 !important;
    font-weight: 800 !important;
    margin: 30px 0 15px 0 !important;
    text-align: center !important;
    font-size: 1.2rem !important;
    display: block !important;
}

/* 7. Mobile Responsiveness */
@media (max-width: 768px) {
    .service-number {
        padding: 30px 20px !important;
    }
    .construction-list {
        column-count: 1 !important;
    }
    .service-main-title {
        font-size: 28px !important;
    }
}
@media (max-width: 768px) {
    /* 1. Position the Header for the dropdown */
    header {
        height: 80px !important;
        padding: 0 20px !important;
        position: relative;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    /* 2. Style the Navigation as a hidden dropdown */
    nav {
        display: none; /* Hidden by default */
        flex-direction: column !important;
        position: absolute !important;
        top: 80px; /* Sits exactly under the header */
        left: 0;
        width: 100%;
        background-color: #0a0a0a;
        border-bottom: 2px solid #2a2a2a;
        padding: 20px 0;
        z-index: 1000;
        gap: 0 !important;
    }

    /* 3. This class will be toggled via JavaScript */
    nav.active {
        display: flex !important;
    }

    /* 4. Organize the Nav Links into a list */
    nav a {
        width: 100% !important;
        height: 60px !important;
        padding: 0 40px !important;
        border-left: none !important;
        border-bottom: 1px solid #222 !important;
        clip-path: none !important; /* Remove the slant for a cleaner list */
        justify-content: flex-start !important;
    }

    /* 5. Show the Hamburger Button */
    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: #fff;
        transition: 0.3s;
    }
}

/* ============================================================
   ABOUT US SECTION FIX
   ============================================================ */

.section-about {
    padding: 100px 60px;
    background-color: #1a1a1a;
    display: block !important;
    clear: both;
}

/* Centers the title */
.section-about .section-title {
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

/* Layout: Text on left, Boxes on right */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 60px;
}

.about-content h3 {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: #d0d0d0;
}

/* Styling the 3 detail blocks on the right */
.about-blocks {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-block {
    background: #252525;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #2654c9; /* The blue from your nav */
    transition: transform 0.3s ease;
}

.about-block:hover {
    transform: translateX(10px);
}

.about-block h4 {
    color: #ffffff;
    margin-bottom: 8px;
}

/* Responsive Fix for Mobile */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr; /* Stacks text on top of blocks */
    }
}

/* ============================================================
   CONTACT SECTION STYLING
   ============================================================ */

.section-contact {
    padding: 100px 60px;
    background-color: #121212; /* Slightly darker than About for contrast */
    border-top: 1px solid #2a2a2a;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Info on left, Form on right */
    gap: 80px;
}

/* LEFT SIDE: Contact Info */
.contact-info h3 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item label {
    display: block;
    color: #2654c9; /* Blue accent */
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-item a, .contact-item p {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

/* RIGHT SIDE: The Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #888;
    font-size: 14px;
}

.form-group input, 
.form-group textarea {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 15px;
    color: #fff;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: #2654c9;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

/* The Submit Button */
.submit-btn {
    background-color: #2654c9;
    color: white;
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background-color: #1e44a5;
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
/* ============================================================
   MOBILE RESPONSIVE FIX FOR CONTACT FORM
   ============================================================ */

@media (max-width: 768px) {
    .section-contact {
        padding: 60px 20px !important; /* Reduces side padding so form can grow */
    }

    .contact-container {
        grid-template-columns: 1fr !important; /* Stacks Info and Form */
        gap: 40px !important;
    }

    /* This fixes the two-column row seen in your screenshot */
    .form-row {
        grid-template-columns: 1fr !important; /* Forces Name and Email to stack */
        gap: 20px !important;
    }

    /* Ensures all inputs and textareas hit the edges of their container */
    .form-group input, 
    .form-group textarea {
        width: 100% !important;
        box-sizing: border-box; /* Prevents horizontal scroll */
        font-size: 16px; /* Prevents iOS from zooming in on focus */
    }

    .contact-info h3 {
        font-size: 28px !important;
        text-align: center;
    }

    .contact-info p {
        text-align: center;
    }

    .contact-item {
        text-align: center;
    }
}

/* ============================================================
   FOOTER & MOBILE FORM CLEANUP
   ============================================================ */

/* 1. Change the "OmniseeitVmFx" link color */
.section-contact + footer a, 
footer a,
.contact-container + footer a {
    color: #ebebeb !important;
    text-decoration: none;
    transition: opacity 0.3s;
}

footer a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* 2. Mobile Form Responsiveness */
@media (max-width: 768px) {
    .section-contact {
        padding: 60px 20px !important;
    }

    .contact-container {
        grid-template-columns: 1fr !important; /* Stacks info and form */
        width: 100% !important;
    }

    .form-row {
        grid-template-columns: 1fr !important; /* Stacks Name and Email */
    }

    .form-group input, 
    .form-group textarea {
        width: 100% !important;
        font-size: 16px !important; /* Prevents auto-zoom on mobile */
    }
    
    /* Centers the bottom copyright text on mobile */
    footer {
        text-align: center;
        padding: 20px;
    }
}

/* ============================================================
   FOOTER CENTERING & LINK COLOR
   ============================================================ */

footer {
    width: 100%;
    padding: 30px 20px;
    background-color: #121212; /* Matches your contact section */
    text-align: center;        /* This centers the text */
    border-top: 1px solid #2a2a2a;
}

footer p {
    margin: 0;
    font-size: 14px;
    color: #888;              /* Soft grey for the main text */
}

footer a {
    color: #ebebeb !important; /* Your requested link color */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #2654c9 !important; /* Changes to blue on hover to match your nav */
    text-decoration: underline;
}