/* --- 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;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-section h1 {
    font-size: 2rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    color: #fff;
}
.breadcrumb {
    margin: 10px 0 0;
    font-size: 1rem; 
    font-weight: 400;
    letter-spacing: 1px;
    color: white;
}

.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-top: 50px;
}

/* --- Introduction 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: 1000px;
    margin: 0 auto;
    line-height: 1.6;
    color: #6c757d;
}

/* --- Portfolio Grid --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 column for mobile */
    gap: 30px;
}
.portfolio-item{
    height: 365px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.portfolio-item img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


/* Section Container */
        .Get-a-quote-section {
            width: 100%;
            padding: 5rem 0; /* Formerly py-20 */
        }

        /* Max-width and Centering Container */
        .Get-a-quote-container {
            max-width: 1050px;
            margin-left: auto;
            margin-right: auto;
            padding-left: 1rem; /* Formerly px-4 */
            padding-right: 1rem;
        }

        /* Flex container for centering content */
        .Get-a-quote-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        /* Main Heading - Size reduced */
        .Get-main-heading {
            font-size: 1.5rem; /* Smaller than original */
            font-weight: 600;
            color: #111827;
            letter-spacing: -0.025em;
            margin-top: 3rem;
        }

        /* Subheading/Paragraph - Size reduced */
        .Get-sub-heading {
            margin-top: 2rem;
            max-width: 36rem;
            font-size: .75rem; /* Smaller than original */
            color: #6c757d;
        }

        /* Call-to-Action Button */
        .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 Styles for Tablets and Mobiles */
        @media (min-width: 640px) {
            .Get-a-quote-container {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
            .Get-main-headingg {
                font-size: 1.75rem; /* Responsive sizing */
            }
            .Get-sub-heading {
                font-size: 1rem; /* Responsive sizing */
            }
        }

        @media (min-width: 768px) {
            .brand-section {
                padding: 8rem 0; /* Formerly md:py-32 */
            }
            
        }

/* --- Responsive Design (Media Queries) --- */
/* For tablets and desktops */
@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
    }
}

@media (max-width: 640px ) and (max-width: 768px) {
   .hero-section h1{
                font-size: 1.5rem;
            }
}
