/* ------------------- */
/* Basic Reset & Fonts */
/* ------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    /* This prevents horizontal scrollbars from appearing */
    overflow-x: hidden; 
}
html{
    overflow-x: hidden;
}

/* ------------------- */
/* Navbar Styles       */
/* ------------------- */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.nav-container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    height: 58px;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    position: relative;
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    padding: 9px 0;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #007bff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #007bff;
}

.nav-links a:hover::after,
.nav-links a.active-link::after {
    transform: scaleX(1);
}

.nav-links a.active-link {
    color: #007bff;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    list-style: none;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 5px;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu,
.dropdown.dropdown-active .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #555;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background-color: #f4f4f4;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: #333;
    z-index: 1001;
}


/* ------------------- */
/* Hero Banner Section */
/* ------------------- */
.hero-banner {
    position: relative;
    padding: 40px 20px;
    text-align: center;
    margin-top: 60px;
    height: 200px;
    color: #fff;
    background-image: url('/Images/hero-section-photo.webp');
    background-size: cover;
    background-position: center;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(45deg, rgba(44, 49, 57, 0.685), rgba(29, 31, 33, 0.826)); 
    z-index: 1;
}
.hero-title {
    margin: 0;
    font-size: 2rem; 
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); 
}

.breadcrumb {
    margin: 10px 0 0;
    font-size: 1rem; 
    font-weight: 400;
    color: #fff;
    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;
}


.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}


/* ------------------- */
/* Main Content Styles */
/* ------------------- */
.main-container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 40px 20px;
}

.info-header {
    text-align: center;
    margin-bottom: 50px;
}

.info-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.info-header p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #6c757d;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.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;
}

.contact-cta {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 12px;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-cta p {
    max-width: 600px;
    margin: 0 auto 25px;
    color: #6c757d;
}

.cta-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #333;
}

/* ------------------- */
/* Lightbox Styles     */
/* ------------------- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    display: block;
    margin: auto;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #bbb;
}

.Get-a-quote-container{
    text-align: center;
    padding-top: 30px;
}
.Get-sub-heading{
    padding-bottom: 30px;
}

/* ------------------- */
/* Footer Styles       */
/* ------------------- */
.footer {
    background-color: #fff;
    color: #000000;
    width: 100%;
}

.footer-container {
    max-width: 1050px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(1, 1fr); /* Mobile first */
}

.footer-column h3 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin: -0.5px 0;
    color: #4A5568;
}

.social-footer-icon {
    width: 14px;
    height: 14px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #4A5568;
    transition: color 0.2s ease-in-out;
}

.footer-column ul li a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    font-size: 0.875rem;
    color: #4A5568;
}


/* ------------------- */
/* Responsive Media Queries */
/* ------------------- */

/* Tablet and smaller */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 0px 20px 20px;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        transition: right 0.4s ease-in-out;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        display: block;
        width: 100%;
    }

    .nav-links li {
        margin: 10px 0;
        width: 100%;
    }

    .dropdown-menu {
        display: block;
        position: static;
        box-shadow: none;
        border-radius: 0;
        background-color: transparent;
        padding-left: 15px;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
    }

    .dropdown-menu.mobile-active {
        max-height: 500px;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown:hover .dropdown-menu.mobile-active {
        display: block; 
    }
}

/* Tablet */
@media (min-width: 750px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* Mobile */
@media (max-width: 768px) {
    .hero-banner h1 {
        font-size: 1.5rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .info-header h2 {
        font-size: 2rem;
    }

    .contact-cta h2 {
        font-size: 1.5rem;
    }
}
