/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Design System Colors */
:root {
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(222.2, 84%, 4.9%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(222.2, 84%, 4.9%);
    --primary: hsl(213, 94%, 28%);
    --primary-foreground: hsl(0, 0%, 98%);
    --primary-glow: hsl(213, 94%, 40%);
    --construction-orange: hsl(25, 95%, 53%);
    --construction-orange-foreground: hsl(0, 0%, 98%);
    --secondary: hsl(213, 32%, 91%);
    --secondary-foreground: hsl(213, 94%, 28%);
    --muted: hsl(213, 32%, 96%);
    --muted-foreground: hsl(213, 16%, 46%);
    --accent: hsl(213, 32%, 91%);
    --accent-foreground: hsl(213, 94%, 28%);
    --border: hsl(213, 32%, 91%);
    --input: hsl(213, 32%, 91%);
    --ring: hsl(213, 94%, 28%);
    --shadow-construction: 0 10px 30px -10px hsl(213, 94%, 28%, 0.3);
    --shadow-glow: 0 0 40px hsl(25, 95%, 53%, 0.2);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
   /* background: rgba(255, 255, 255, 0.95);*/
    background: #155AB3;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

/*

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-left: 0px;
}

*/

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
   color: white; 
}

.logo-img {
    height: 50px;       /* adjust to your preference */
    width: auto;        /* keep aspect ratio */
    margin-right: 10px; /* spacing between image & text */
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--foreground);
    transition: color 0.3s;
    color: white;
}

.nav-links a:hover {
    color: var(--primary);
    color: orange;
}



@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

/* Buttons */
.btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-construction {
    background: var(--construction-orange);
    color: var(--construction-orange-foreground);
}

.btn-construction:hover {
    background: hsl(25, 95%, 48%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-construction);
}

.btn-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-glow));
    color: var(--primary-foreground);
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-construction);
}

.btn-outline {
    border: 1px solid white;
    color: white;
    background: transparent;
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('./src/assets/construction-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 4rem;
    margin: 0 auto;
    padding: 0 1rem;
    max-width: 64rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(var(--primary), 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title-accent {
    display: block;
    color: var(--construction-orange);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
}

/* Sections */
.section {
    padding: 5rem 0;
}

.about-section {
    background: linear-gradient(135deg, var(--background), var(--muted));
}

.projects-section {
    background: rgba(var(--muted), 0.5);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

/* Grids */
.features-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.services-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.projects-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Cards */
.feature-card, .service-card, .project-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover, .service-card:hover, .project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon, .service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-icon.construction-orange {
    color: var(--construction-orange);
}

.feature-card h3, .service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-card p, .service-card p {
    color: var(--muted-foreground);
}

.service-card:hover h3 {
    color: var(--primary);
}

/* Project Cards */
.project-image {
    height: 12rem;
    background: linear-gradient(135deg, rgba(var(--primary), 0.2), rgba(var(--construction-orange), 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.project-card:hover .project-image {
    transform: scale(1.1);
}

.project-content h3 {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.project-content p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    gap: 3rem;
    max-width: 64rem;
    margin: 0 auto;
}

.contact-info h3, .form-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-label {
    font-weight: 500;
}

.contact-value {
    color: var(--muted-foreground);
}

.form-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    padding: 2rem;
}

.form-card form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-card input, .form-card textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--input);
    border-radius: 0.5rem;
    background: var(--background);
    transition: border-color 0.3s;
}

.form-card input:focus, .form-card textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(var(--primary), 0.2);
}

@media (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 3rem 0;


.footer-content {
    text-align: center;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-subtitle {
    margin-bottom: 1.5rem;
}

.footer-copyright {
    font-size: 0.875rem;
    opacity: 0.8;
}


/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

.footer-content a {
  color: inherit !important;       /* force same color as surrounding text */
  text-decoration: none !important; /* remove underline */
  font-weight: inherit;            /* match normal text weight */
}
.footer-content a:hover {
  text-decoration: underline;      /* optional hover effect */
}
}