/* --- Basic Setup & Typography --- */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #333333;
    overflow-x: hidden;
}
html {
    overflow-x: hidden;
}
h1, h2 {
    font-weight: 700;
    margin: 0;
}

p {
    line-height: 1.6;
    color: #555555;
}

/* --- Hero Section --- */
.hero-section {
    height: 200px;
    background-image:
        linear-gradient(45deg, rgba(44, 49, 57, 0.685), rgba(29, 31, 33, 0.826)),
        url('/Images/hero-section-photo.webp');
    background-size: cover;
    background-position: center;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-title {
    margin: 0;
    font-size: 2rem; 
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); 
}

.breadcrumb {
    margin: 10px 0 0;
    font-size: 1rem; 
    font-weight: 400;
    letter-spacing: 1px;
}

.Home-link{
    color: white;
    text-decoration: none;
}
.aboutUs-link{
    font-weight: 600;
    color: rgb(255, 255, 255);
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); 
}
.Home-link:hover, .aboutUs-link:hover{
    color: #007BFF;
}


/* --- Layout Container --- */
.container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-content {
    padding: 50px 0;
}

/* --- Intro Section --- */
.intro-section {
    text-align: center;
    margin-bottom: 50px;
}

.intro-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.intro-section p {
    font-size: 1.1rem;
    max-width: 800px; 
    margin: 0 auto;
    color: #6c757d;
}

/* --- Portfolio Grid --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile default */
    gap: 15px;                  /* Minimal spacing */
}

.portfolio-item {
    overflow: hidden;
    height: 365px;             /* Fixed height */
    position: relative;
}

.portfolio-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;         /* Crop image to fit container */
    object-position: top;      /* Align image to top */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.portfolio-item img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* --- Modal (Lightbox) Styles --- */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    animation-name: zoom;
    animation-duration: 0.4s;
}

@keyframes zoom {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 28px;
    transition: 0.3s;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
    border: none;
}

.prev { left: 1rem; border-radius: 3px 0 0 3px; }
.next { right: 1rem; border-radius: 0 3px 3px 0; }

.prev:hover, .next:hover { background-color: rgba(0,0,0,0.8); }

/* --- Get-a-Quote Section --- */
.Get-a-quote-section {
    width: 100%;
    padding: 5rem 0;
}

.Get-a-quote-container {
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.Get-a-quote-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.Get-main-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    letter-spacing: -0.025em;
    margin: 0;
}

.Get-sub-heading {
    margin-top: 2rem;
    max-width: 36rem;
    font-size: .75rem;
    color: #6c757d;
}

.cta-button {
    margin-top: 1.5rem;
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.cta-button:hover { background-color: #1f2937; }
.cta-button:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px #374151, 0 0 0 5px #f9fafb;
}

/* --- Responsive Design --- */
@media (min-width: 640px) {
    .Get-a-quote-container { padding: 0 1.5rem; }
    .Get-main-heading { font-size: 1.75rem; }
    .Get-sub-heading { font-size: 1rem; }
}

@media (min-width: 768px) {
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}