



body {
    font-family: "Notosan", sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #000000; /* Set the background color to black */
    color: #fff; /* Ensure text is readable on a black background */
}


body,
html {
    /* Remove or override any overflow-x: hidden that may cause issues */
    overflow-x: unset;
}

.hero {
    position: relative;
    text-align: center;
    color: #fff;
    overflow: hidden; /* Ensure no extra content overflows the hero section */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(1, 2, 20, 20.7), transparent), 
                    linear-gradient(to bottom left, rgba(0, 0, 1, 0.4), transparent),
                    linear-gradient(to top right, rgba(0, 0, 1, 0.4), transparent), 
                linear-gradient(to top left, rgba(0, 0, 1, 0.4), transparent);   

    z-index: 2; 
    pointer-events: none; /* Allow interactions with the images */
}

main {
    padding: 2rem;
}

section {
    margin-bottom: 0; /* Remove bottom margin to avoid space between sections */
    padding: 0; /* Remove default padding if any */
}

.project-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.project {
    background: #f4f4f4;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    /* Remove these lines: */
    /* position: fixed;
    bottom: 0;
    width: 100%; */
}

.menu-button {
    position: fixed; /* Changed from absolute to fixed */
    top: 1rem; /* Position it at the top */
    right: 1rem; /* Position it at the right */
    background: transparent; /* Keep the background transparent */
    color: #f4CB0D; /* Change text color to  */
    border: 2px solid #f4CB0D; /* Match border color with text */
    padding: 1rem 2rem; /* Keep the larger button size */
    font-size: 1.5rem; /* Keep the larger font size */
    cursor: pointer;
    border-radius: 5px; /* Optional: Add rounded corners */
    z-index: 1000; /* Ensure it appears above other elements */
    transition: background 0.3s, color 0.3s, border-color 0.3s, top 0.3s;
}

.menu-button:hover {
    background: #000000; /* Slightly darker  on hover */
    color: #f0e8e8; /* Keep the text color on hover */
    border-color: #f4CB0D; /* Match border color on hover */
}

.menu-button.shrink {
    top: 8px;
    background: #000;
    color: #F4CB0D;
    border-color: #F4CB0D;
}

.menu-button .menu-text {
    display: inline;
    transition: opacity 0.2s;
    font-family: 'ProximaNova', sans-serif; /* Change font style for menu text */
}


.contact-hero-btn {
    background: transparent;
    color: #f4CB0D;
    border: 2px solid #f4CB0D;
    padding: 1rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    z-index: 1000;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
}

.contact-hero-btn:hover {
    background: #000000;
    color: #f0e8e8;
    border-color: #ffe46d;
}

.menu-button .menu-text,
    .contact-hero-btn .menu-text  {
    display: none!important;
    transition: opacity 0.2s;
}


/* Remove default margin for hero-overlay button */
.hero-overlay .contact-hero-btn {
    margin-top: 1.2rem;
    position: static;
    left: unset;
    right: unset;
    top: unset;
    box-shadow: none;
}

.menu-container {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #333;
    color: #fff;
    padding: 2rem;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    transition: left 0.3s ease;
    z-index: 999;
}

.menu-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-container li {
    margin: 1rem 0;
}

.menu-container a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
}

.menu-container a:hover {
    text-decoration: underline;
}

.menu-container.slide-in {
    left: 0;
}

.hidden {
    display: none;
}

/* --- Menu Overlay: Slide in from left or right --- */
.menu-overlay {
    position: fixed;
    top: 0;
    left: -100vw;
    right: auto;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 1);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        left 0.5s cubic-bezier(.77,0,.18,1),
        right 0.5s cubic-bezier(.77,0,.18,1),
        opacity 0.5s,
        visibility 0.5s;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('../images/Finish3.webp');
    background-size: cover, cover;
    background-position: 0% center, 0% center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Slide in from left */
.menu-overlay.active.slide-left {
    left: 0;
    right: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Slide in from right */
.menu-overlay.active.slide-right {
    left: auto;
    right: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Default: fallback to left slide if no direction class is set */
.menu-overlay.active:not(.slide-right) {
    left: 0;
    right: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.menu-overlay-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 1.2rem 2rem 0.5rem 2rem;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1101;
    background: transparent;
}

.menu-overlay-logo {
    width: 220px;
    height: auto;
    object-fit: contain;
    margin-right: 1.5rem;
    z-index: 1101;
    max-width: 100%;
}



.menu-overlay .close-button {
    position: absolute;
    top: 0.2rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 3.5rem;
    cursor: pointer;
    z-index: 1102;
    padding: 0;
    line-height: 1;
}

.menu-content {
    text-align: left; /* Align menu items to the left */
    padding-left: 2rem; /* Add padding to the left for spacing */
    width: 100%; /* Ensure the menu content spans the full width */
    max-width: 300px; /* Limit the width of the menu content */
    position: absolute; /* Position the menu content absolutely */
    left: 0; /* Align it to the left edge of the screen */
    top: 50%; /* Start at the vertical center */
    transform: translateY(-50%); /* Adjust to center vertically */
    height: auto; /* Adjust height to fit the content */
    background: transparent; /* Ensure the background matches the overlay */
    margin-top: 90px; /* push menu-content below header/logo */
}

.menu-content ul {
    padding: 0;
    margin: 0;
}

.menu-content li {
    margin: 1rem 0;
}

.menu-content a {
    text-decoration: none;
    color: #f4CB0D; /* Change text color to yellow */ 
    font-size: 1.5rem;
}

.menu-content a:hover {
    text-decoration: underline;
    color: #f4CB0D; /* Slightly lighter yellow on hover */
}

.company-logo {
    position: absolute; /* Changed from absolute to fixed */
    top: 20px;
    left: 20px;
    width: 220px;
    height: auto;
    object-fit: contain;
    z-index: 1001; /* Increase z-index to stay above content */
    transition: width 0.3s ease, height 0.3s ease;
}






.hero {
    position: relative;
    display: inline-block;
  }
  
  .hero {
    display: block;
    width: 100%;
    height: auto;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle at top right, rgba(0, 0, 0, 0.6), transparent 40%);
  }

.close-button {
    position: absolute;
    top: 10px; /* Adjust vertical position */
    right: 10px; /* Adjust horizontal position */
    background: transparent;
    border: none;
    color: #fff;
    font-size: 5rem;
    cursor: pointer;
    z-index: 1100; /* Ensure it appears above the overlay */
}

.close-button:hover {
    color: #ccc; /* Change color on hover */
}

.carousel {
    position: relative;
    width: 100%;
    height: 100vh; /* Set a fixed height for the carousel */
    overflow: hidden;
    z-index: 1; /* Ensure the carousel is below the gradient */
}

.carousel-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Ensure all images fill the carousel */
    object-fit: cover; /* Maintain aspect ratio while covering the area */
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.carousel-image.active {
    opacity: 1;
    z-index: 1;
}

.carousel-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 3.5); /* Add a dark overlay */
    z-index: 2; /* Ensure the overlay is above the image */
    pointer-events: none; /* Allow interactions with the image */
}

.list-unstyled li a {
    display: inline-block; /* Ensure transform works by making the element inline-block */
    color: #f4CB0D !important; /* Force yellow text color */
    font-size: 2.5rem; /* Optional: Adjust font size */
    text-decoration: none; /* Remove underline */
    font-family: 'ProximaNova', sans-serif; /* Change font style for list links */
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth transition for movement and color */
}

.list-unstyled li a:hover {
    color: #f4CB0D !important; /* Slightly lighter yellow on hover */
    text-decoration: dotted; /* Add underline on hover */
    transform: translateX(10px); /* Move 10px to the right on hover */
}

.hero-overlay {
    position: absolute;
    top: 50%; /* Center vertically */
    left: 5%; /* Position the content on the left side */
    transform: translateY(-50%); /* Adjust for vertical centering */
    text-align: left; /* Align text to the left */
    color: #f4CB0D; /* Match the theme */
    z-index: 3; /* Ensure it appears above the carousel images */
    transition: all 0.3s ease; /* Smooth transitions for size and position changes */
    font-family: "Nunito", sans-serif !important;
}
.hero-overlay a {
   font-size:larger;
}
.hero-overlay h1 {
    font-weight: bold;
    font-style: italic; /* Make the text italic */
    font-family: 'ProximaNova', sans-serif; /* Change font style for hero title */
    text-transform: uppercase;
    margin-bottom: 0rem;
    font-size: 5rem;
    transition: font-size 0.3s ease; /* Smooth transitions for font size changes */
}


.hero-overlay p {
    font-size: 2rem;
    font-family: 'ProximaNova', sans-serif; /* Change font style for hero subtitle */
    margin-bottom: 0rem;
    margin-left: 15px;
    transition: font-size 0.3s ease; /* Smooth transitions for font size changes */
    
}

.division-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000;
    color: #f4CB0D;
    margin-bottom: 0 !important;
    margin-top: 0 !important; /* Ensure no top margin */
}

.division-parallax-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../images/GreenSpace.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.division-parallax-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(21,24,26,0.85) 60%, rgba(245,204,13,0.15) 100%);
    z-index: 2;
}

.division-parallax-content {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    padding: 4rem 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-snap-type: x mandatory; /* Optional: for snap scrolling */
    cursor: grab;
    scroll-behavior: smooth;
    cursor: grab;
    scrollbar-width: none;
}
.division-parallax-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}
.division-parallax-block {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: rgba(0,0,0,0.65);
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.15);
    padding: 2rem 1.5rem 2.5rem 1.5rem;
    gap: 1.5rem;
    min-width: 340px;      /* Set a fixed min-width for horizontal scroll */
    max-width: 90%;       /* Prevent cards from being too wide */
    flex: 0 0 auto;        /* Prevent shrinking/growing in flex row */
    min-height: 620px;
    overflow: hidden;
    transition: box-shadow 0.3s, border 0.3s;
    z-index: 2;
    background-size: initial;
    background-position: initial;
    background-repeat: initial;
    border: 3px solid transparent;
    scroll-snap-align: start; /* Optional: for snap scrolling */
}

.division-parallax-block:hover {
    box-shadow: 0 0 0 6px #f4CB0D88, 0 4px 32px rgba(0,0,0,0.25);
    border-color: #f4CB0D;
    z-index: 3;
}
.division-parallax-block .division-img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.division-parallax-block .division-img img {
    width: 100%;
    max-width: 320px;
    min-width: 220px;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.25);
    background: #181b1d;
    display: block;
    margin: 0 auto;
    position: static;
    top: unset;
    /* Remove sticky for grid layout */
}



/* Remove background images for each card */
.division-parallax-block:nth-child(1),
.division-parallax-block:nth-child(2),
.division-parallax-block:nth-child(3),
.division-parallax-block:nth-child(4) {
    background-image: none;
}

.division-info {
    width: 100%;
    color: #f4CB0D;
    text-align: center;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 2;
    background: rgba(0,0,0,0.7);
    border-radius: 12px;
    padding: 1.2rem 1rem 2.2rem 1rem; /* extra bottom padding for button */
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    max-height: 7.5em; /* ~5 lines */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.division-info h2 {
    color: #f4CB0D;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px #000a;
}
.division-info p {
    color: #f4CB0D;
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 0;
    /* Inherit truncation from parent */
}

.see-more {
    display: inline-flex;
    align-items: center;
    color: #F4CB0D;
    font-weight: bold;
    font-size: 1.5em;
    margin: 1.2em auto 0 auto;
    cursor: pointer;
    background: transparent;
    border: 2px solid transparent;
    outline: none;
    padding: 0.5em 1.2em;
    border-radius: 24px;
    transition: color 0.2s, background 0.2s, border 0.2s;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
}
.see-more i {
    margin-left: 0.5em;
    font-size: 1.2em;
}
.see-more:hover, .see-more:focus {
    color: #fff;
    background: rgba(245,204,13,0.15);
    border: 2px solid #F4CB0D;
}

/* Animation for fade up */
.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
    will-change: opacity, transform;
    pointer-events: none;
}
.animate-fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Services Section Parallax Background & Overlay */
.services-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000;
    color: #f4CB0D;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}
.services-parallax-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../images/GreenSpace.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}
.services-parallax-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(21,24,26,0.85) 60%, rgba(245,204,13,0.15) 100%);
    z-index: 2;
}
.services-section > .container {
    position: relative;
    z-index: 3;
}

/* Services Section Title (with yellow line) */
.services-title {
    display: flex;
    align-items: center;
    color: #f4CB0D;
    font-weight: bold;
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin: 2rem 0 2.5rem 0;
    font-family: inherit;
    gap: 1rem;
    text-align: left;
}
.services-title span {
    flex: 1;
    height: 2px;
    background: #F4CB0D;
    margin-left: 1rem;
    display: block;
    border-radius: 2px;
}
.services-title::after,
.services-title::before {
    content: none;
}

/* Services Cards Row */
.services-cards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem 2rem;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 3rem;
}

/* Services Card (Portfolio Style) */
.services-card {
    background: #181818;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.15);
    border: 2px solid #F4CB0D;
    padding: 2.2rem 1.5rem 2rem 1.5rem;
    max-width: 340px;
    min-width: 260px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s, border 0.3s, transform 0.2s;
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}
.services-card:hover {
    box-shadow: 0 0 0 8px #F4CB0D44, 0 8px 32px rgba(0,0,0,0.25);
    border-color: #fff700;
    transform: translateY(-8px) scale(1.03);
    z-index: 3;
}
.services-card-icon {
    font-size: 3.2rem;
    color: #F4CB0D;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 8px #000a;
}
.services-card-title {
    color: #F4CB0D;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    text-align: center;
}
.services-card-desc {
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
    text-align: center;
}

/* Services/Portfolio Filter Bar */
.services-filters-row,
.portfolio-filters-row {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 2rem;
}
.portfolio-filters-row {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
     scrollbar-width: thin;
    scrollbar-color: #F4CB0D #181818;
}
.portfolio-filters-row::-webkit-scrollbar {
        height: 6px;
        background: #181818;
}
.portfolio-filters-row::-webkit-scrollbar-thumb {
        background: #F4CB0D;
        border-radius: 3px;
}
#services-filters,
#portfolio-filters {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}
#services-filters li,
#portfolio-filters li {
    cursor: pointer;
    color: #F4CB0D;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 0.5em 1.2em;
    border-radius: 24px;
    border: 2px solid transparent;
    background: transparent;
    transition: background 0.2s, color 0.2s, border 0.2s;
    user-select: none;
}
#services-filters li.filter-active,
#portfolio-filters li.filter-active {
    background: #F4CB0D;
    color: #181818;
    border: 2px solid #F4CB0D;
}
#services-filters li:hover,
#portfolio-filters li:hover {
    background: #181818;
    color: #F4CB0D;
    border: 2px solid #F4CB0D;
}

/* Projects Section (was Portfolio Section) */
.projects-section {
    background: #000;
    background-image: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)), url('../images/bgservices2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Add this for parallax effect */
    color: #F4CB0D;
    padding: 4rem 0 4rem 0;
}
.projects-title {
    display: flex;
    align-items: center;
    color: #F4CB0D;
    font-weight: bold;
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin: 2rem 0 2.5rem 0;
    font-family: inherit;
    gap: 1rem;
    text-align: left;
}
.projects-title span {
    flex: 1;
    height: 2px;
    background: #F4CB0D;
    margin-left: 1rem;
    display: block;
    border-radius: 2px;
}

/* Group filtered rows together by hiding non-matching rows and removing gaps */
.portfolio-table tbody tr {
    display: table-row;
    transition: opacity 0.2s;
}
.portfolio-table tbody tr.filtered-out {
    display: none !important;
}

/* Portfolio Section */
.portfolio-section {
    background: #000;
    color: #F4CB0D;
    padding: 4rem 0 4rem 0;
}
.portfolio-title {
    display: flex;
    align-items: center;
    color: #F4CB0D;
    font-weight: bold;
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin: 2rem 0 2.5rem 0;
    font-family: inherit;
    gap: 1rem;
    text-align: left;
}
.portfolio-title span {
    flex: 1;
    height: 2px;
    background: #F4CB0D;
    margin-left: 1rem;
    display: block;
    border-radius: 2px;
}
.portfolio-table-wrapper {
    overflow-x: auto;
    background: #181818;
    border-radius: 12px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.15);
    padding: 2rem 1rem;
    margin-top: 1.5rem;
}
.portfolio-table {
    width: 100%;
    border-collapse: collapse;
    color: #F4CB0D;
    background: transparent;
}
.portfolio-table th,
.portfolio-table td {
    padding: 0.7em 1.2em;
    border-bottom: 1px solid #333;
    font-size: 1.1rem;
    text-align: left;
}
.portfolio-table th {
    background: #222;
    color: #F4CB0D;
    font-size: 1.2rem;
    font-weight: bold;
    border-bottom: 2px solid #F4CB0D;
}
.portfolio-table tr {
    transition: background 0.2s;
}
.portfolio-table tr:hover {
    background: #222;
}


#projects-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}
#projects-pagination button {
    background: #F4CB0D;
    color: #181818;
    border: none;
    border-radius: 4px;
    padding: 0.5em 1.2em;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
#projects-pagination button.active,
#projects-pagination button:focus {
    background: #181818;
    color: #F4CB0D;
    outline: none;
}
#projects-pagination button:hover:not(.active) {
    background: #fff7c0;
    color: #181818;
}

/* Projects Card Grid */
.projects-cards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    margin-top: 2rem;
}
.project-card {
    background: #181818;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.15);
    border: 2px solid #F4CB0D;
    width: 320px;
    min-width: 220px;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    overflow: hidden;
    transition: box-shadow 0.3s, border 0.3s, transform 0.2s;
    position: relative;
    opacity: 1;
    transform: scale(1);
    transition:
        opacity 0.35s cubic-bezier(.4,0,.2,1),
        transform 0.35s cubic-bezier(.4,0,.2,1),
        box-shadow 0.3s, border 0.3s;
    will-change: opacity, transform;
}
.project-card:hover {
    box-shadow: 0 0 0 8px #F4CB0D44, 0 8px 32px rgba(0,0,0,0.25);
    border-color: #fff700;
    transform: translateY(-8px) scale(1.03);
    z-index: 3;
}
.project-card.filter-anim-out {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}
.project-card.filter-anim-in {
    opacity: 1;
    transform: scale(1.04);
    animation: cardFilterIn 0.35s cubic-bezier(.4,0,.2,1);
}
@keyframes cardFilterIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1.04);
    }
}
.project-card-img {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid #F4CB0D;
    background-color: #F4CB0D;
}
.project-card-info {
    padding: 1.2rem 1rem 1.2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.project-card-title {
    color: #F4CB0D;
    font-size: 1.2rem;
    font-weight: bold;
}
.project-card-location {
    color: #F4CB0D;
    font-size: 1rem;
    line-height: 1.5;
}

/* Hide filtered-out cards */
.project-card.filtered-out {
    display: none !important;
}

/* Gallery Modal */
.project-gallery-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}
.project-gallery-modal.hidden {
    display: none;
}
.project-gallery-content {
    position: relative;
    background: #181818;
    border-radius: 12px;
    padding: 2rem 2rem 1.5rem 2rem;
    max-width: 100%;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.project-gallery-images img {
    max-width: 70vw;
    max-height: 60vh;
    border-radius: 8px;
    box-shadow: 0 4px 32px #000a;
    display: block;
    margin: 0 auto;
    background-color: #F4CB0D;
}
.project-gallery-caption {
    color: #F4CB0D;
    font-size: 1.1rem;
    margin-top: 1rem;
    text-align: center;
}
.project-gallery-close {
    position: absolute;
    top: 0.5rem;
    right: 1.2rem;
    background: transparent;
    border: none;
    color: #F4CB0D;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
}
.project-gallery-prev,
.project-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #F4CB0D;
    color: #181818;
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    opacity: 0.8;
}
.project-gallery-prev { left: -2.5rem; }
.project-gallery-next { right: -2.5rem; }
.project-gallery-prev:hover,
.project-gallery-next:hover {
    background: #fff;
    color: #F4CB0D;
    opacity: 1;
}


/* Services Modal Overlay */
.services-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    background: rgba(0,0,0,0.97);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-y: auto;
    transition: opacity 0.3s;
    opacity: 1;
    left: -100vw;
    pointer-events: none;
    transition: left 0.5s cubic-bezier(.77,0,.18,1), opacity 0.3s;
}
.services-modal-overlay.active {
    left: 0;
    opacity: 1;
    pointer-events: auto;
}
.services-modal-overlay.hidden {
    display: none;
    opacity: 0;
}
.services-modal-content {
    background: transparent;
    color: #F4CB0D;
    margin: 0 auto;
    border-radius: 0;
    max-width: 1200px;
    width: 100vw;
    min-height: 100vh;
    box-shadow: none;
    position: relative;
    padding: 0;
    overflow-y: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.services-modal-close {
    position: fixed;
    top: 1.2rem;
    right: 2.2rem;
    background: transparent;
    flex-direction: column;
    align-items: center;
}
.services-modal-close {
    position: fixed;
    top: 1.2rem;
    right: 2.2rem;
    background: transparent;
    border: none;
    color: #F4CB0D;
    font-size: 3.2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2100;
    transition: color 0.2s;
}
.services-modal-close:hover {
    color: #fff;
}
.services-modal-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #F4CB0D;
    margin: 2.5rem 0 1.5rem 0;
    text-align: center;
    width: 100%;
    letter-spacing: 1px;
}
.services-modal-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem 3rem 2rem;
    justify-items: center;
}
.services-modal-card {
    background: #181818;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.15);
    border: 2px solid #F4CB0D;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    width: 100%;
    max-width: 350px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}
.services-modal-card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.7rem;
}
.services-modal-card-title {
    color: #F4CB0D;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    text-align: center;
}
.services-modal-card ul {
    color: #F4CB0D;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0;
    text-align: left;
    padding-left: 1.2em;
}
.services-modal-card ul li {
    margin-bottom: 0.5em;
}



/* Projects Modal Overlay - Fullscreen Slide-in */
.projects-modal-overlay {
    position: fixed;
    top: 0; left: -100vw; /* Start off-screen to the left */
    width: 100vw;
    height: 100vh;
    z-index: 4000;
    background: rgba(0,0,0,0.97);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    transition: left 0.5s cubic-bezier(.77,0,.18,1), opacity 0.3s;
    opacity: 1;
    pointer-events: none;
}
.projects-modal-overlay.active {
    left: 0;
    opacity: 1;
    pointer-events: auto;
}
.projects-modal-overlay.hidden {
    display: none;
    opacity: 0;
}
.projects-modal-content {
    background: #181818;
    color: #F4CB0D;
    border-radius: 0;
    max-width: 100vw;
    width: 100vw;
    min-height: 100vh;
    max-height: none;
    box-shadow: none;
    position: relative;
    padding: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: none;
}
.projects-modal-title {
    font-size: 2rem;
    font-weight: bold;
    color: #F4CB0D;
    margin: 2.5rem 0 1.5rem 0;
    text-align: center;
    width: 100%;
    letter-spacing: 1px;
}
.projects-modal-cards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 1rem;
    max-height: 65vh;
    overflow-y: auto;
}
.projects-modal-close {
    position: fixed;
    top: 1.2rem;
    right: 2.2rem;
    background: transparent;
    border: none;
    color: #F4CB0D;
    font-size: 3.2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 4100;
    transition: color 0.2s;
}
.projects-modal-close:hover {
    color: #fff;
}



.license-modal-overlay {
    position: fixed;
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100vh;
    z-index: 20000;
    background: rgba(0,0,0,0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: left 0.5s cubic-bezier(.77,0,.18,1), opacity 0.3s;
    opacity: 1;
    pointer-events: none;
}
.license-modal-overlay.active {
    left: 0;
    opacity: 1;
    pointer-events: auto;
}
.license-modal-overlay.hidden {
    display: none;
    opacity: 0;
}
.license-modal-content {
    position: relative;
    width: 100vw;
    height: 100vh;
    background: #181818;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}
.license-modal-iframe {
    width: 100vw;
    height: 100vh;
    border: none;
    background: #181818;
    display: block;
}
.license-modal-close {
    position: absolute;
    top: 1.2rem;
    right: 2.2rem;
    background: transparent;
    border: none;
    color: #F4CB0D;
    font-size: 3.2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 21000;
    transition: color 0.2s;
    line-height: 1;
}
.license-modal-close:hover {
    color: #fff;
}


.footer-menu-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    margin: 1.5rem 0;
    width: 100%;
    flex-wrap: wrap;
}
.footer-menu-link {
    color: #F4CB0D;
    font-size: 1.25rem;
    font-family: 'Alatsi', Arial, sans-serif;
    font-weight: bold;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s, letter-spacing 0.2s, transform 0.2s;
    margin-bottom: 0.2rem;
    padding: 0.2em 0.1em;
    display: inline-block;
}
.footer-menu-link:hover,
.footer-menu-link:focus {
    color: #fff;
    letter-spacing: 0.28em;
    transform: translateY(-2px) scale(1.08);
    text-shadow: 0 2px 8px #F4CB0D44;
    /* Remove underline animation */
    text-decoration: none;
}


/* Fix: Prevent horizontal scroll caused by 100vw on elements with padding or border */
.site-footer,
.footer-container,
.footer-menu-list,
.license-modal-content,
.license-modal-iframe,
.contact-modal-content,
.division-modal-content,
.division-modal-body,
.projects-modal-content {
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}


/* Fix: Prevent horizontal scroll from .division-modal-parallax-content and blocks */
.division-modal-parallax-content,
.division-modal-parallax-content .division-parallax-block,
.division-modal-parallax-content .division-info,
.division-modal-parallax-content .division-img {
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}



/* Fix: Prevent horizontal scroll from .projects-cards-row */
.projects-cards-row {
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Fix: Prevent horizontal scroll from .carousel */
.carousel {
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Fix: Prevent horizontal scroll from .menu-content */
.menu-content {
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Fix: Prevent horizontal scroll from .footer-menu-list */
.footer-menu-list {
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Optional: Prevent horizontal scroll on all elements */
* {
    box-sizing: border-box;
}

/* Fix: Prevent horizontal scroll from .footer-menu-list */
.footer-menu-list {
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
}

/* Optional: Prevent horizontal scroll on all elements */
* {
    box-sizing: border-box;
}

/* Black navbar background behind logo/menu, hidden by default */
.logo-navbar-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 96px; /* Increased for better fit */
    background: #000; /* Always black */
    opacity: 0.96;    /* Optional: slightly transparent */
    z-index: 999;
    transition: background 0.3s, height 0.3s, opacity 0.3s;
    pointer-events: none;
}

/* Shrink state: show black bar */
.logo-navbar-bg.shrink {
    background: #000;
    height: 64px; /* Taller when shrunk for better fit */
    opacity: 1;
}


/* Menu button transitions for navbar */
.menu-button {
    position: fixed;
    top: 32px;
    right: 32px;
    background: transparent; /* Keep the background transparent */
    color: #f4CB0D; 
    border: 2px solid #f4CB0D; 
    padding: 1rem 2rem; /* Keep the larger button size */
    font-size: 1.5rem; /* Keep the larger font size */
    cursor: pointer;
    border-radius: 5px; /* Optional: Add rounded corners */
    z-index: 1000; /* Ensure it appears above other elements */
    transition: background 0.3s, color 0.3s, border-color 0.3s, top 0.3s;
}
.menu-button.shrink {
    top: 20px;
    background: #000;
    color: #F4CB0D;
    border-color: #F4CB0D;
}

.carousel-bottom-right-text {
  position: absolute;
  right: 3vw;
  bottom: 3vw;
  z-index: 1;
  color: #f4CB0D;
  padding: 1.2rem 2rem;
  border-radius: 12px;
  font-size: 50px;
  font-family: 'jacobicustom', sans-serif !important;
  max-width: 100vw;
  text-align: right;
  pointer-events: none; /* So it doesn't block carousel controls */
}
@keyframes fadeText {
  0% { opacity: 0; transform: translateY(10px); }
  50% { opacity: 1; transform: translateY(0); }
  100% { opacity: 1; }
}

.carousel-bottom-right-text.animate {
  animation: fadeText 4.6s ease;
}
.license-item {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
  color: #f4CB0D;
  pointer-events: none;
}

.license-item.show-license {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}



/* ========== Desktop Resolutions========== */

/* 800x600 */
@media (min-width: 800px) {
/* MAIN  */
    .menu-button .menu-text,
    .contact-hero-btn .menu-text {
        display: inline!important;
    }
    .menu-button,
    .contact-hero-btn {
        padding: 0.5rem 0.7rem;
        font-size: 1rem;
    }
     .menu-overlay-logo {
        width: 220px;
        height: auto;
        margin-right: 1.5rem;
        z-index: 1101;
    }
     .company-logo {
         width: 220px; 
        height: auto;
    }
    .hero-overlay {
        top: 30%;
        left: 2%;
    }
    .hero-overlay h1 {
        font-size: 3rem;
    }
    .hero-overlay p {
        font-size: 3rem;
    }
     .portfolio-filters-row {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
        margin-bottom: 1.2rem;
        scrollbar-width: thin;
        scrollbar-color: #F4CB0D #181818;
    }
    .portfolio-filters-row::-webkit-scrollbar {
        height: 6px;
        background: #181818;
    }
    .portfolio-filters-row::-webkit-scrollbar-thumb {
        background: #F4CB0D;
        border-radius: 3px;
    }
    .menu-content {
    top: 50%; /* Start at the vertical center */
    transform: translateY(-50%); /* Adjust to center vertically */
    background: transparent; /* Ensure the background matches the overlay */
    margin-top: 20px; /* push menu-content below header/logo */ 
    }
    .list-unstyled li a {
    display: inline-block; /* Ensure transform works by making the element inline-block */
    color: #f4CB0D !important; /* Force yellow text color */
    font-size: 1.5rem; /* Optional: Adjust font size */
    text-decoration: none; /* Remove underline */
    font-family: 'ProximaNova', sans-serif; /* Change font style for list links */
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth transition for movement and color */

    }
    .list-unstyled li a:hover {
    color: #f4CB0D !important; /* Slightly lighter yellow on hover */
    text-decoration: dotted; /* Add underline on hover */
    transform: translateX(10px); /* Move 10px to the right on hover */
   }
    .close-button{
    font-size: 10vh!important;
   }
   .division-parallax-block{
     height: 120px;
     width: 120px;
   }
   .division-parallax-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    justify-items: center;
    align-items: stretch;
  }

}


/* 1024x768 */
@media (min-width: 801px) and (max-width: 1024px)  {
    /* MAIN  */
    .menu-button .menu-text,
    .contact-hero-btn .menu-text {
        display: inline!important;
    }
    .menu-button,
    .contact-hero-btn {
        padding: 0.5rem 0.7rem;
        font-size: 1.5rem;
    }
     .menu-overlay-logo {
        width: 320px; 
        height: auto;
        margin-right: 1.5rem;
        z-index: 1101;
    }
     .company-logo {
        width: 320px;
        height: auto;
    }
    .hero-overlay {
        top: 30%;
        left: 2%;
    }
    .hero-overlay h1 {
        font-size: 3rem;
    }
    .hero-overlay p {
        font-size: 3rem;
    }
     .portfolio-filters-row {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.5rem;
        margin-bottom: 1.2rem;
        scrollbar-width: thin;
        scrollbar-color: #F4CB0D #181818;
    }
    .portfolio-filters-row::-webkit-scrollbar {
        height: 6px;
        background: #181818;
    }
    .portfolio-filters-row::-webkit-scrollbar-thumb {
        background: #F4CB0D;
        border-radius: 3px;
    }

      .menu-content {
    top: 50%; /* Start at the vertical center */
    transform: translateY(-50%); /* Adjust to center vertically */
    background: transparent; /* Ensure the background matches the overlay */
    margin-top: 80px; /* push menu-content below header/logo */ 
    }
    .list-unstyled li a {
    display: inline-block; /* Ensure transform works by making the element inline-block */
    color: #f4CB0D !important; /* Force yellow text color */
    font-size: clamp(2rem, 2.5vw, 20.4rem); /* scales with screen size */
    text-decoration: none; /* Remove underline */
    font-family: 'ProximaNova', sans-serif; /* Change font style for list links */
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth transition for movement and color */

    }
    .list-unstyled li a:hover {
    color: #f4CB0D !important; /* Slightly lighter yellow on hover */
    text-decoration: dotted; /* Add underline on hover */
    transform: translateX(10px); /* Move 10px to the right on hover */
   }
   .close-button{
    font-size: 10vh!important;
   }
}



/* 1128x634 */
@media (min-width: 1025px) and (max-width: 1128px) {
     .menu-overlay-logo {
        width: 420px; 
        height: auto;
        margin-right: 1.5rem;
        z-index: 1101;
    }
     .company-logo {
        width: 420px;
        height: auto;
    }
    .menu-content {
    top: 50%; /* Start at the vertical center */
    transform: translateY(-50%); /* Adjust to center vertically */
    background: transparent; /* Ensure the background matches the overlay */
    margin-top: 80px; /* push menu-content below header/logo */ 
    }
    .list-unstyled li a {
    display: inline-block; /* Ensure transform works by making the element inline-block */
    color: #f4CB0D !important; /* Force yellow text color */
    font-size: clamp(1.5rem,1.5vw, 15.4rem); /* scales with screen size */
    text-decoration: none; /* Remove underline */
    font-family: 'ProximaNova', sans-serif; /* Change font style for list links */
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth transition for movement and color */

    }
    .list-unstyled li a:hover {
    color: #f4CB0D !important; /* Slightly lighter yellow on hover */
    text-decoration: dotted; /* Add underline on hover */
    transform: translateX(10px); /* Move 10px to the right on hover */
   }
       .division-parallax-block{
     height: 380px;
     width: 100%;
   }
   .division-parallax-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    justify-items: center;
    align-items: stretch;
  }
}

/* 1152x864 */
@media (min-width: 1129px) and (max-width: 1152px) {
     .menu-overlay-logo {
        width: 420px; 
        height: auto;
        margin-right: 1.5rem;
        z-index: 1101;
    }
     .company-logo {
        width: 420px;
        height: auto;
    }
      .menu-content {
    top: 50%; /* Start at the vertical center */
    transform: translateY(-50%); /* Adjust to center vertically */
    background: transparent; /* Ensure the background matches the overlay */
    margin-top: 80px; /* push menu-content below header/logo */ 
    }
    .list-unstyled li a {
    display: inline-block; /* Ensure transform works by making the element inline-block */
    color: #f4CB0D !important; /* Force yellow text color */
    font-size: clamp(2.8rem,2.5vw, 15.4rem); /* scales with screen size */
    text-decoration: none; /* Remove underline */
    font-family: 'ProximaNova', sans-serif; /* Change font style for list links */
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth transition for movement and color */

    }
    .list-unstyled li a:hover {
    color: #f4CB0D !important; /* Slightly lighter yellow on hover */
    text-decoration: dotted; /* Add underline on hover */
    transform: translateX(10px); /* Move 10px to the right on hover */
   }
    .division-parallax-block{
     height: 380px;
     width: 100%;
   }
   .division-parallax-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    justify-items: center;
    align-items: stretch;
  }
}

/* 1280x720 */
@media (min-width: 1153px) and (max-width: 1280px) {
  /* 720p HD displays */
}

/* Screens up to 1280px wide (includes 1280x960 and 1280x1024) */
@media (max-width: 1280px) {
  .division-parallax-block {
    height: 380px;
    width: 100%; /* Avoid fixed width for better responsiveness */
  }
  .division-parallax-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    justify-items: center;
    align-items: stretch;
  }
}


/* 1366x768 */
@media (min-width: 1281px) and (max-width: 1366px) {
  /* Most common laptop resolution */
    .division-parallax-block{
     height: 380px;
     width: 100%;
   }
   .division-parallax-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    justify-items: center;
    align-items: stretch;
  }
}

/* 1440x900 */
@media (min-width: 1367px) and (max-width: 1440px) {
  /* 16:10 monitors / MacBooks */
    /* Most common laptop resolution */
    .division-parallax-block{
     height: 380px;
     width: 100%;
   }
   .division-parallax-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    justify-items: center;
    align-items: stretch;
  }
}

/* 1600x900 */
@media (min-width: 1441px) and (max-width: 1600px) {
  /* 16:10 monitors / MacBooks */
    /* Most common laptop resolution */
    .division-parallax-block{
     height: 380px;
     width: 100%;
   }
   .division-parallax-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    justify-items: center;
    align-items: stretch;
  }
}

/* 1680x1050 */
@media (min-width: 1601px) and (max-width: 1680px) {
  /* WSXGA+ resolution */
      .division-parallax-block{
     height: 380px;
     width: 100%;
   }
   .division-parallax-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    justify-items: center;
    align-items: stretch;
  }
}

/* 1760x990 */
@media (min-width: 1681px) and (max-width: 1760px) {
  /* Uncommon widescreen monitors */
  
 /* Full HD desktop */
    .menu-overlay-logo {
        width: 420px; 
        height: auto;
        margin-right: 1.5rem;
        z-index: 1101;
    }
     .company-logo {
        width: 420px;
        height: auto;
    }
     .menu-button .menu-text,
    .contact-hero-btn .menu-text {
        display: inline!important;
    }
    .menu-button,
    .contact-hero-btn {
        padding: 0.5rem 0.7rem;
        font-size: 1.8rem;
    }
      .menu-content {
    top: 50%; /* Start at the vertical center */
    transform: translateY(-50%); /* Adjust to center vertically */
    background: transparent; /* Ensure the background matches the overlay */
    margin-top: 80px; /* push menu-content below header/logo */ 
    }

    .list-unstyled li a {
    display: inline-block; /* Ensure transform works by making the element inline-block */
    color: #f4CB0D !important; /* Force yellow text color */
    font-size: clamp(2.8rem,2.5vw, 15.4rem); /* scales with screen size */
    text-decoration: none; /* Remove underline */
    font-family: 'ProximaNova', sans-serif; /* Change font style for list links */
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth transition for movement and color */
    }
    .list-unstyled li a:hover {
    color: #f4CB0D !important; /* Slightly lighter yellow on hover */
    text-decoration: dotted; /* Add underline on hover */
    transform: translateX(10px); /* Move 10px to the right on hover */
    }
    .division-parallax-block{
     height: 380px;
     width: 400px;
   }
   .division-parallax-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    justify-items: center;
    align-items: stretch;
  }
}


/* 1920x1080 (Full HD) */
@media (min-width: 1761px) and (max-width: 1920px) {
  /* Full HD desktop */
    .menu-overlay-logo {
        width: 420px; 
        height: auto;
        margin-right: 1.5rem;
        z-index: 1101;
    }
     .company-logo {
        width: 420px;
        height: auto;
    }
     .menu-button .menu-text,
    .contact-hero-btn .menu-text {
        display: inline!important;
    }
    .menu-button,
    .contact-hero-btn {
        padding: 0.7rem 0.7rem;
        font-size: 1.8rem;
    }
      .menu-content {
    top: 50%; /* Start at the vertical center */
    transform: translateY(-50%); /* Adjust to center vertically */
    background: transparent; /* Ensure the background matches the overlay */
    margin-top: 80px; /* push menu-content below header/logo */ 
    }

    .list-unstyled li a {
    display: inline-block; /* Ensure transform works by making the element inline-block */
    color: #f4CB0D !important; /* Force yellow text color */
    font-size: clamp(2.8rem,2.5vw, 15.4rem); /* scales with screen size */
    text-decoration: none; /* Remove underline */
    font-family: 'ProximaNova', sans-serif; /* Change font style for list links */
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth transition for movement and color */

    }

    .list-unstyled li a:hover {
    color: #f4CB0D !important; /* Slightly lighter yellow on hover */
    text-decoration: dotted; /* Add underline on hover */
    transform: translateX(10px); /* Move 10px to the right on hover */
    }
    .division-parallax-block{
     height: 380px;
     width: 400px;
   }
   .division-parallax-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    justify-items: center;
    align-items: stretch;
  }
  .carousel-bottom-right-text {
    font-size: 140px;
  }
}

/* ========== 🖥️ High-End Displays ========== */

/* QHD / 2K and Ultra-wide */
@media (min-width: 1921px) and (max-width: 2560px) {
  /* QHD / 2K displays */

}

/* Ultra-wide (3440×1440 etc.) */
@media (min-width: 2561px) and (max-width: 3440px) {
  /* Ultra-wide monitors */
}

/* 4K displays */
@media (min-width: 3441px) {
  /* 4K monitors and higher */
}
