html, body {
      margin: 0;
      padding: 0;
      overflow-x: hidden;
    }
    .navbar {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      background: transparent;
      transition: background 0.3s ease, padding 0.3s ease;
      padding: 1rem 1.5rem;
    }
    .navbar.scrolled {
      background: #000;
      padding: 0.5rem 1.5rem;
    }
    .navbar-nav .nav-link {
      color: #fff;
      font-weight: 500;
      padding: 0.5rem 1rem;
    }
    .navbar-nav .nav-link.active {
      color: #d10000;
    }
    .navbar-brand img {
      height: 70px;
      margin-left: 20px;
      transition: height 0.3s ease;
    }
    .navbar.scrolled .navbar-brand img {
      height: 50px;
    }
    .left-section {
      background: url('assets/images/100.jpg') no-repeat center center;
      background-size: cover;
      color: maroon;
      position: relative;
      padding: 4rem 2rem;
      height: 100vh;
      display: flex;
      flex-direction: row;
    }
    .left-section::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(255, 255, 255, 0.9);
      z-index: 1;
    }
    .left-content {
      position: relative;
      z-index: 2;
    }
    .left-content h2 {
      font-family: 'Fredericka the Great', cursive;
      font-size: 2rem;
    }
    .breadcrumb-custom {
      font-size: 0.9rem;
      color: #444;
    }
    .breadcrumb-custom .active {
      color: maroon;
      font-weight: bold;
    }
    .right-section {
      overflow: hidden;
      padding: 0;
      height: 100vh;
    }
    .slideshow-img {
      width: 100%;
      height: 100vh;
      object-fit: cover;
      animation: zoom 10s ease-in-out infinite;
    }
    @keyframes zoom {
      0% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.1); }
      100% { transform: scale(1); opacity: 1; }
    }
    .projects-section {
      padding: 5rem 2rem;
      background-color: #fff;
    }
    .project-card {
      border: 1px solid #eee;
      margin-bottom: 2rem;
      text-align: center;
    }
    .project-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }
    .project-card h5 {
      padding: 1rem 1rem 0 1rem;
      font-weight: 600;
    }
    .project-card a {
      color: #d10000;
      font-weight: 500;
      display: inline-block;
      margin-bottom: 1rem;
    }

    /* Footer CTA Section Styling */
/* Footer CTA Section Styling */
    .footer-cta {
    position: relative;
    background: url('assets/images/102.jpg') no-repeat center center;
    background-size: 120%; /* Slight zoom-out */
    color: #000;
    padding: 4rem 2rem;
    overflow: hidden;
    }

    /* CTA wrapper box */
    .footer-cta .cta-wrapper {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 10px;
    }
    /* Footer CTA Title */
    .footer-cta-title {
    font-family: 'Fredericka the Great', cursive;
      font-size: 2rem;
    color: maroon;
    }

    /* Footer Styling */
    footer.footer {
    position: relative;
    background: url('assets/images/1000.jpg') no-repeat center center;
    background-size: 120%; /* Slight zoom-out */
    color: #000;
    overflow: hidden;
    padding: 2rem 1rem;
    }

    /* Semi-transparent white overlay only (no grayscale) */
    footer.footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.6); /* "Dark white" overlay */
    z-index: 1;
    }

    /* Ensure footer content stays above the overlay */
    footer.footer > * {
    position: relative;
    z-index: 2;
    }

    /* Footer Links */
    .footer a {
    text-decoration: none;
    color: inherit;
    }

    .footer a:hover {
    color: #dc3545;
    }

    /* Footer Icons */
    .footer-icons i {
    font-size: 1.5rem;
    color: #000;
    }

    .footer-icons i:hover {
    color: #dc3545;
    }
    .project-description {
        padding: 4rem 2rem;
        display: flex;
        justify-content: space-between;
        background-color: transparent;
    }

    
    .contractor-ul{
      list-style: none;
      font-size: large;
      
    }

        /* .bento-item {
            height: 200px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
            transition: transform 0.3s ease;
        }

        .bento-item:hover {
            transform: scale(1.05);
        } */

        /* .bento-tall {
            height: 410px;
        } */