* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #333333;
}

::-webkit-scrollbar-thumb {
    background: #c98252;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d69668;
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #c98252 #333333;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif;
    color: #9e9c9c;
    background-color: #262626;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

header {
    display: flex;
    width: 100%;
    height: 15vh;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    position: fixed;
    top: 0;
    z-index: 1000;
    background-color: #262626;
    transition: top 0.6s ease;
}

@media screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    header {
        position: fixed;
        top: 0;
        right: -250px;
        flex-direction: column;
        height: 100vh;
        width: 250px;
        padding: 80px 20px 20px;
        background-color: #1a1a1a;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        justify-content: flex-start;
        align-items: flex-start;
        z-index: 1000;
    }

    header.active {
        right: 0;
    }

    header img {
        width: 80px;
        margin-bottom: 30px;
    }

    header.active {
        height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 60px;
    }

    header.active nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }

    header.active .btn {
        margin-top: 20px;
    }

    nav {
        display: none;
    }

    .hamburger {
        display: flex;
        position: fixed;
        top: 20px;
        left: 20px;
        z-index: 1001;
    }

    .overlay.active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
    }

    .gallery {
        height: auto;
        max-height: 50vh;
    }

    .gallery-track {
        height: 100%;
    }

    .gallery-track img {
        height: auto;
        max-height: 45vh;
    }
}

header img {
    width: 100px;
    transition: transform 0.7s ease;
}

header img:hover {
    transform: scale(1.1);
}

nav {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    font-weight: bold;
}

header a {
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav a {
    font-size: 1.2rem;
}

.bouncy {
    font-size: 15px;
    position: relative;
    text-decoration: none;
    color: #9e9c9c;
    padding-bottom: 4px;
}

.bouncy::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #c98252;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}

.bouncy:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.bouncy.active {
    color: #c98252;
    position: relative;
    text-shadow: 0 0 10px rgba(201, 130, 82, .3);
}

.bouncy.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #c98252 30%, #c98252 70%, transparent 100%);
    background-size: 200% 100%;
    background-position: 100% 0;
    animation: activeLinkSlide 2s linear infinite;
    transform: none !important;
    transition: none !important;
}

@keyframes activeLinkSlide {
    0% { 
        background-position: 100% 0;
    }
    100% { 
        background-position: -100% 0;
    }
}

.btn {
    position: relative;
    display: inline-block;
    padding: 0.5em 2em;
    cursor: pointer;
    overflow: hidden;
}

.btn span span span {
    color: #9e9c9c;
    transition: color 0.5s ease;
}

.btn:hover span span span {
    color: #c98252;
}

.btn::before,
.btn::after {
    content: "";
    position: absolute;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #5e5e5e;
}

.btn::before {
    top: 0;
}

.btn::after {
    bottom: 0;
}

.btn:hover > * > *::before,
.btn:hover > * > *::after {
    transform: translate3d(0, 0, 0);
}

.btn:hover > * > * > *::before,
.btn:hover > * > * > *::after {
    transform: translate3d(0, 0, 0);
}

.btn > *::before,
.btn > *::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: #5e5e5e;
}

.btn > *::before {
    left: 0;
}

.btn > *::after {
    right: 0;
}

.btn > * > *::before,
.btn > * > *::after {
    content: "";
    position: absolute;
    left: 0;
    z-index: 9;
    height: 2px;
    width: 100%;
    background-color: #c98252;
}

.btn > * > *::before {
    top: 0;
    transform: translate3d(-105%, 0, 0);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn > * > *::after {
    bottom: 0;
    transform: translate3d(105%, 0, 0);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn > * > * > *::before,
.btn > * > * > *::after {
    content: "";
    position: absolute;
    top: 0;
    z-index: 9;
    height: 100%;
    width: 2px;
    background-color: #c98252;
}

.btn > * > * > *::before {
    left: 0;
    transform: translate3d(0, 105%, 0);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn > * > * > *::after {
    right: 0;
    transform: translate3d(0, -105%, 0);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section {
    padding: 40px 20px;
    max-width: 100vw;
    width: 100%;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    overflow-x: hidden;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero {
    width: 100%;
    padding-top: 50px;
    text-align: center;
    height: 100vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100vw;
    overflow-x: hidden;
}

.hero-text {
    max-width: 100%;
    margin-right: 150px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
    width: 100%;
}

.hero-text.hidden {
    opacity: 0;
    transform: translateX(150px);
}

.hero-text .line {
    width: 80%;
    height: 12px;
    background-color: #080808;
    margin-left: 120px;
}

.hero-img {
    width: 45%;
    height: 75%;
    opacity: 80%;
    transform: translateX(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
    width: 100%;
}

.hero-img.hidden {
    opacity: 0;
    transform: translateX(-150px);
}

.hero .header-1 {
    margin-left: 40px;
    margin-bottom:50px;
    margin-top: 50px;
    color: #c98252;
}

.hero .header-2 {
    margin-left: 250px;
    margin-bottom: 50px;
    color: #c98252;
}

.hero p {
    color: #9e9c9c;
}

.hero h2 {
    font-size: 2.7rem;
    color: #f0f8ff;
}

.hero .bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Place behind other content */
}

/* Individual bubble */
.hero .bubbles span {
    position: absolute;
    bottom: 50%; /* Start from the middle */
    width: 150px; /* Larger bubbles */
    height: 150px;
    background-color: #1a1919; /* Subtle bubble color */
    border-radius: 50%;
    animation: subtle-bubble 8s infinite ease-in-out;
    opacity: 0.5;
}

@keyframes subtle-bubble {
     0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1); 
    }
}

.hero .bubbles span:nth-child(1) {
    top: 10%;
    left: 5%;
    width: 900px; 
    height: 900px;
    animation-duration: 10s;
    animation-delay: 0s;
}
.hero .bubbles span:nth-child(2) {
    top: 0%;
    left: 70%;
    width: 900px;
    height: 900px;
    animation-duration: 12s;
    animation-delay: 2s;
}
.slider {
    margin: 40px 0px;
    width: 100%;
    height: 30vh;
    position: relative;
    overflow: hidden;
}

.slider-container {
    display: flex;
    align-items: center;
    width: 100%; 
    animation: slide 40s linear infinite;
}

.slider-container img {
    width: calc(100% / 8); 
    margin: 0 20px;
    height: 100%;
}

@keyframes slide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-600px * 7));
    }
  }

.projects,
.services,
.contact {
    padding: 20px;
    margin-bottom: 30px;
}

.about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60vh;
    background-color: #0D0D0D;
    max-width: 100vw;
    overflow-x: hidden;
}

.gallery {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
    background: #1a1a1a;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    max-width: 100%;
}

.gallery-track {
    display: flex;
    width: 100%;
    height: 100%;
}

.gallery-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(201, 130, 82, 0.3);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
    transition: background-color 0.3s ease;
}

.gallery-btn:hover {
    background: rgba(201, 130, 82, 0.8);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}


.gallery-track {
    display: flex;
    transition: transform 1s ease-in-out;
    width: 100%;
    height: 100%; /* Added full height */
}

.gallery-track img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    margin: 10;
    flex-shrink: 0;
}

.gallery-btn {
    width: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #f0f8ff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 2;
    border-radius: 50%;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.gallery-btn:hover {
    background-color: rgba(201, 130, 82, 0.8);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.gallery-container {
    width: 100%;
    height: 400px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background-color: rgba(26, 26, 26, 0.8);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(201, 130, 82, 0.3);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.gallery-nav:hover {
    background: rgba(201, 130, 82, 0.8);
}

.gallery-nav.prev {
    left: 20px;
}

.gallery-nav.next {
    right: 20px;
}


.project-slides {
    position: relative;
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.project-slides img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(201,130,82,0.3);
    border: none;
    border-radius: 50%;
    color: #f0f8ff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.3s;
}
.gallery-nav:hover {
    background: rgba(201,130,82,0.8);
}
.gallery-nav.prev { left: 20px; }
.gallery-nav.next { right: 20px; }

@media (max-width: 768px) {
    .gallery-container { height: 250px; }
}



.about-text {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: #f0f0f0;
    font-size: 1.2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    max-width: 100%;
}
.about-text h3{
    font-size: 2rem;
    color: #c98252;
}

.about p {
    line-height: 1.8;
    font-size: 1.1rem;
    color: #f0f0f0;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solutions {
    position: relative;
    height: 50vh;
    background-color: #2b2d2d;
    max-width: 100vw;
    overflow-x: hidden;
}

.solutions-title {
    font-size: 7rem;
    color: #373838;
    position: absolute;
    top: 110px;
    left: 70px;
    width: 100%;
    z-index: 1;
    font-weight: bold;
    text-transform: uppercase;
    opacity: 0;
    letter-spacing: 40px;
    line-height: 100px;
    transform: translateY(150px);
    transition: opacity 1s ease, transform 1.5s ease;
}

.solutions-title.fade-in {
    opacity: 0.8;
    transform: translateY(0);
}

.container-1 {
    position: absolute;
    bottom: 0;
    right: 65px;
    width: 60%;
    height: 25vh;
    background-color: #212221;
    z-index: 2;
    opacity: 0.7;
    max-width: 100vw;
    overflow-x: hidden;
}

.container-1 h3 {
    font-size: 1.5rem;
    color: #c98252;
    position: absolute;
    bottom: 0;
    z-index: 2;
    left: 30px;
    font-weight: bold;
    text-transform: uppercase;
}

.container-2 p {
    color: #ebebeb;
    letter-spacing: 3px;
    line-height: 25px;
    position: absolute;
    left: 30px;
}

.solutions-txt {
    height: 50vh;
    background-color: #212221;
    position: relative;
    max-width: 100vw;
    overflow-x: hidden;
}

.container-2 {
    height: 20vh;
    background-color: #2b2d2d;
    position: absolute;
    top: 0;
    right: 65px;
    width: 60%;
    max-width: 100vw;
    overflow-x: hidden;
    padding: 10px;
}

.services {
    background-color: #050505;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 70vh;
    padding: 20px;
    max-width: 100vw;
    overflow-x: hidden;
}

.services-container {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
    background: none;
    background-color: #1a1a1a;
    overflow-x: hidden;
    max-width: 100%;
}

.section-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(135deg, #1a1a1a 0%, #262626 50%, #1a1a1a 100%);
    margin: 2rem auto;
}

.services-section {
    opacity: 0;
    transform: translateY(30px);
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    background: transparent;
    padding: 4rem 2rem;
    text-align: center;
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
        clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

@keyframes titleShine {
    0% {
        background-position: -100%;
    }
    100% {
        background-position: 200%;
    }
}

@keyframes sectionReveal {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.services-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: transparent;
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 0.5rem;
    z-index: 1;
    background: linear-gradient(90deg, 
        rgba(201, 130, 82, 0.8),
        #c98252,
        rgba(201, 130, 82, 0.8));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    display: inline-block;
    animation: titleReveal 0.8s ease-out forwards, titleShine 3s linear 0.8s infinite;
}

.construction-services {
    animation: sectionReveal 1s ease-out forwards;
}

.construction-services .service-card p {
    color: #a8a8a8;
}

.construction-services .service-features li {
    color: #a8a8a8;
}

.low-current-services {
    animation: sectionReveal 1s ease-out 0.4s forwards;
}

.low-current-services .service-card p {
    color: #c4c4c4;
}

.low-current-services .service-features li {
    color: #c4c4c4;
}

@media screen and (max-width: 768px) {
    .construction-container,
    .lowcurrent-container {
        padding: 2rem 1rem;
        background: linear-gradient(135deg, #1a1a1a 0%, #262626 50%, #1a1a1a 100%);

    }
    
    .services-section {
        width: 100%;
        padding: 2rem 0.5rem;
        overflow-x: hidden;
    }
    
    .section-separator {
        width: 90%;
    }

    .services-section .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* Construction and Low Current Service Containers */
.construction-container,
.lowcurrent-container {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    max-width: 100%;
}

/* Construction Services - Darker Grade */
.construction-container {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    position: relative;
}

/* Fading separator line after construction container */
.construction-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #c98252 20%, #e6a573 50%, #c98252 80%, transparent 100%);
    box-shadow: 0 0 20px rgba(201, 130, 82, 0.5);
}

.construction-container .service-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
    border: 1px solid rgba(201, 130, 82, 0.1);
}

.construction-container .service-card::before {
    background: linear-gradient(90deg, #c98252 0%, #d49366 100%);
    height: 4px;
}

.construction-container .service-icon {
    color: #c98252;
    filter: drop-shadow(0 0 10px rgba(201, 130, 82, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.construction-container .service-card h3 {
    color: #d49366;
}

.construction-container .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(201, 130, 82, 0.15);
    border-color: rgba(201, 130, 82, 0.3);
}

.construction-container .service-features li::before {
    color: #c98252;
}

.construction-container .section-title span {
    background: linear-gradient(90deg, #c98252 0%, #d49366 50%, #c98252 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Construction Container Additional Effects */
.construction-container .service-card:hover .service-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(201, 130, 82, 0.5));
}

.construction-container .service-card:hover h3 {
    text-shadow: 0 0 20px rgba(201, 130, 82, 0.3);
}

/* Low Current Services - Lighter Grade */
.lowcurrent-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

.lowcurrent-container .service-card {
    background: linear-gradient(135deg, #262626 0%, #333333 100%);
    border: 1px solid rgba(201, 130, 82, 0.15);
}

.lowcurrent-container .service-card::before {
    background: linear-gradient(90deg, #e6a573 0%, #f0b589 100%);
    height: 4px;
}

.lowcurrent-container .service-icon {
    color: #e6a573;
    filter: drop-shadow(0 0 10px rgba(230, 165, 115, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.lowcurrent-container .service-card h3 {
    color: #f0b589;
}

.lowcurrent-container .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(230, 165, 115, 0.15);
    border-color: rgba(230, 165, 115, 0.3);
}

.lowcurrent-container .service-features li::before {
    color: #e6a573;
}

.lowcurrent-container .section-title span {
    background: linear-gradient(90deg, #e6a573 0%, #f0b589 50%, #e6a573 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Low Current Container Additional Effects */
.lowcurrent-container .service-card:hover .service-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(230, 165, 115, 0.5));
}

.lowcurrent-container .service-card:hover h3 {
    text-shadow: 0 0 20px rgba(230, 165, 115, 0.3);
}

.services-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.service {
    height: 50vh;
    width: 20%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.service img {
    width: 100%;
    height: 60%;
    transition: transform 0.3s ease;
}

.service:hover img {
    transform: scale(1.05);
}

.service h4,
.service p {
    transition: color 0.3s ease;
}

.service:hover {
    border-bottom: 2px solid #c98252;
    background-color: #111;
}

.projects {
    background-color: #0B0B0B;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    width: 100%;
    height: 120vh;
    max-width: 100vw;
    overflow-x: hidden;
}

.container-1 {
    display: flex;
    width: 90%;
    margin-left: 50px;
    max-width: 100vw;
    overflow-x: hidden;
}

.container-2 {
    display: flex;
    margin-left: 100px;
    width: 90%;
    max-width: 100vw;
    overflow-x: hidden;
}

.project {
    height: 40vh;
    width: 30%;
    text-align: center;
    margin: 25px;
    padding: 15px;
    background-color: #0D0D0D;
    border-radius: 10px;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.projects .project img {
    width: 100%;
    height: 25vh;
}

.projects .project:hover {
    transform: scale(1.05);
}

.project:hover {
    border-bottom: 2px solid #c98252;
    background-color: #111;
}

.project.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.projects-container {
    margin-top: 100px;
    background-color: #262626;
    padding: 0;
}

.project-section {
    display: flex;
    height: 80vh;
    width: 100%;
    align-items: center;
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.project-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #c98252, transparent);
    bottom: 0;
    left: 0;
}

.project-section.reverse {
    background-color: #262626;
}

.project-info-half {
    width: 50%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.project-info-half h2 {
    color: #c98252;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.project-info-half h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #c98252;
}

.project-info-half p {
    color: #9e9c9c;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.project-details {
    margin-top: 2rem;
}

.detail-item {
    display: flex;
    margin-bottom: 1rem;
    align-items: center;
}

.detail-item::before {
    content: '';
    width: 15px;
    height: 2px;
    background-color: #c98252;
    margin-right: 10px;
}

.detail-label {
    color: #c98252;
    width: 120px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.detail-value {
    color: #9e9c9c;
}

.project-gallery-half {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem; /* Reduced padding */
}

@media screen and (max-width: 768px) {
    .project-section,
    .project-section.reverse {
        flex-direction: column;
    }
    
    .project-info-half {
        width: 100%;
        order: 1;
    }
    
    .project-gallery-half {
        width: 100%;
        order: 2;
        margin-top: 2rem;
    }
}

.project-slides {
    position: relative;
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.project-slides img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    flex-shrink: 0;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.project-section.reverse .project-gallery-half {
    justify-content: center;
}

.projects-title {
    padding: 0px 0 40px;
    text-align: center;
}

.projects-title h1 {
    font-size: 2.5rem;
    color: #c98252;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.projects-title .title-line {
    width: 100px;
    height: 3px;
    background-color: #c98252;
    margin: 0 auto 20px;
}

.projects-title p {
    color: #f0f8ff;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.project-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.project-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #9e9c9c;
    line-height: 1.6;
    font-size: 1rem;
}

.project-list p {
    position: relative;
    color: #9e9c9c;
    line-height: 1.6;
    font-size: 1.1rem;
}

.project-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    background-color: #c98252;
    border-radius: 50%;
}

.project-header {
    margin-bottom: 2rem;
}

.project-header h2 {
    color: #c98252;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.project-meta {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-item i {
    color: #c98252;
    font-size: 1.2rem;
}

.meta-item span {
    color: #9e9c9c;
    font-size: 1rem;
}

.zoom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
    touch-action: none;
}

.zoom-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.zoom-modal img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    transform-origin: center;
    transform: scale(1) translate(0, 0);
    transition: transform 0.3s ease;
    cursor: zoom-in;
    will-change: transform;
    user-select: none;
    -webkit-user-drag: none;
}

.zoom-modal.img.panning {
    transition: none;
}

.zoom-modal .zoom-controls {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 20px;
    z-index: 10000;
}

.zoom-modal .zoom-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 200px;
    height: 4px;
    border-radius: 2px;
    background: #666;
    outline: none;
    cursor: pointer;
}

.zoom-modal .zoom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #c98252;
    cursor: pointer;
    transition: background 0.3s ease;
}

.zoom-modal .zoom-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #c98252;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease;
}

.zoom-modal .zoom-value {
    color: #f0f8ff;
    font-size: 14px;
    min-width: 50px;
    text-align: center;
}

.zoom-modal .reset-zoom {
    background: rgba(201, 130, 82, 0.3);
    color: #f0f8ff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.zoom-modal .reset-zoom:hover {
    background: rgba(201, 130, 82, 0.8);
}

.zoom-modal .zoom-controls .zoom-button {
    background: rgba(201, 130, 82, 0.3);
    color: #f0f8ff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
}

.zoom-modal .zoom-controls .zoom-button:hover {
    background-color: rgba(201, 130, 82, 0.8);
}

.zoom-modal .close-zoom {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #f0f8ff;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(201, 130, 82, 0.3);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.zoom-modal .close-zoom:hover {
    background-color: rgba(201, 130, 82, 0.8);
}

.zoom-modal .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201, 130, 82, 0.3);
    color: #f0f8ff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background-color 0.3s ease;
}

.zoom-modal .nav-button:hover {
    background-color: rgba(201, 130, 82, 0.8);
}

.zoom-modal .prev-zoom {
    left: 20px;
}

.zoom-modal .next-zoom {
    right: 20px;
}

@media screen and (max-width: 1200px) {
    .gallery-container {
        height: 400px;
    }

    .project-gallery-half {
        width: 100%;
        padding: 2rem;
    }

    .project-section,
    .project-section.reverse {
        flex-direction: column;
    }

    .project-info-half {
        width: 100%;
        padding: 2rem;
    }

    .project-section.reverse .project-gallery-half {
        justify-content: center;
    }

    .gallery-container {
        width: 100%;
    }
}

@media screen and (max-width: 992px) {
    .project-section,
    .project-section.reverse {
        flex-direction: column;
    }

    .project-info-half,
    .project-gallery-half {
        width: 100%;
        padding: 2rem;
    }

    .gallery-container {
        width: 80%;
        height: 400px;
    }
}

@media screen and (max-width: 768px) {
    .project-gallery-half {
        padding: 1rem;
    }

    .gallery-container {
        width: 95%;
    }

    .gallery-container {
        width: 90%;
        height: 300px;
    }

    .project-gallery-half,
    .project-section.reverse .project-gallery-half {
        width: 100%;
        padding: 2rem;
        justify-content: center;
        order: 2; /* Move gallery after text */
    }
    
    .project-info-half {
        width: 100%;
        order: 1; /* Ensure text comes first */
    }
    
    .project-section,
    .project-section.reverse {
        flex-direction: column;
        height: auto;
    }

    .projects-title {
        padding: auto;
    }

    .projects-title h1 {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
}

.projects-grid {
    padding: 4rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background: #f0f8ff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.project-info p {
    color: #666;
    line-height: 1.5;
}

.contact {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 70vh;
    max-width: 100vw;
    overflow-x: hidden;
}

.contact-img {
    max-height: 100%;
    width: 40%;
    transition: opacity 1s ease, transform 1.5s ease;
    opacity: 0;
    transform: translateX(-150px);
    overflow: hidden;
    max-width: 100%;
}

.contact-img img {
    width: 100%;
    mix-blend-mode: exclusion;
}

.contact-img.fade-in {
    opacity: 1;
    transform: translateX(0);
}

.quote {
    width: 40%;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1.5s ease;
    max-width: 100%;
    text-align: center;

}

.memories {
    font-size: 2rem;
    color: #c98252;
    font-weight: bold;
    text-transform: uppercase;
    opacity: 0.8;
    letter-spacing: 5px;
}

.quote a {
    display: block;
    text-align: center;
    width: 220px;
    margin: 50px auto;
}



.quote.fade-in {
    opacity: 1;
    transform: translateY(0);
}

footer {
    background-color: #0B0B0B;
    width: 100%;
    padding: 60px 0 0;
    color: #9e9c9c;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c98252, transparent);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px 30px;
}

.footer-brand {
    flex: 0 0 300px;
    margin-bottom: 30px;
}

.footer-logo {
    color: #c98252;
    margin-bottom: 15px;
}

.footer-logo h2 {
    font-size: 2.5rem;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-brand p {
    margin-top: 15px;
    color: #9e9c9c;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    flex: 0 0 200px;
    margin-bottom: 30px;
}

.footer-links h3 {
    color: #c98252;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #c98252;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #9e9c9c;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #c98252;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #c98252;
    padding-left: 18px;
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

.footer-contact {
    flex: 0 0 250px;
    margin-bottom: 30px;
}

.footer-contact h3 {
    color: #c98252;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #c98252;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    color: #c98252;
    margin-right: 12px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-item span {
    color: #9e9c9c;
    font-size: 0.95rem;
}

.footer-social {
    flex: 0 0 200px;
    margin-bottom: 30px;
}

.footer-social h3 {
    color: #c98252;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
}

.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #c98252;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1a1a1a;
    color: #9e9c9c;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.social-links a:hover {
    background-color: #c98252;
    color: #f0f8ff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(201, 130, 82, 0.3);
}

.footer-bottom {
    background-color: #080808;
    padding: 20px 0;
    text-align: center;
}

.copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.copyright p {
    color: #9e9c9c;
    font-size: 0.9rem;
    margin: 0;
}

/* Hamburger Menu Icon */
.hamburger {
    display: none;
    cursor: pointer;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    width: 30px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #c98252;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    header {
        position: fixed;
        top: 0;
        right: -250px;
        flex-direction: column;
        height: 100vh;
        width: 250px;
        padding: 80px 20px 20px;
        background-color: #1a1a1a;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        justify-content: flex-start;
        align-items: flex-start;
        z-index: 1000;
    }

    header.active {
        right: 0;
    }

    header img {
        width: 80px;
        margin-bottom: 30px;
    }

    nav {
        flex-direction: column;
        width: 100%;
        gap: 20px;
        margin: 30px 0;
        align-items: flex-start;
    }

    nav a {
        font-size: 1.1rem;
        padding: 10px 0;
        width: 100%;
        border-bottom: 1px solid #333;
    }

    .btn {
        padding: 0.5em 1.5em;
        margin-top: 20px;
        align-self: flex-start;
    }

    /* When menu is open, darken the rest of the page */
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        z-index: 999;
    }

    .overlay.active {
        display: block;
    }

    /* Adjust hamburger icon when menu is open */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Small Mobile Styles */
@media screen and (max-width: 480px) {
    header {
        padding: 10px 5px;
    }

    nav {
        gap: 8px;
    }

    nav a {
        font-size: 0.9rem;
        padding: 4px 8px;
    }

    .hero-text {
        margin-right: 0;
    }

    .hero {
        flex-direction: column;
        justify-content: center;
    }

    .hero-img {
        width: 80%;
        height: auto;
        margin-bottom: 20px;
    }

    .container-1,
    .container-2 {
        width: 90%;
        margin: 0 auto;
        padding: 10px;
    }

    .hero-text,
    .hero-img {
        padding: 0 15px;
    }

    .city-content {
        padding: 0 15px;
        box-sizing: border-box;
    }
}

.fade-in {
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media screen and (max-width: 768px) {
    .hero img {
        width: 70%;
    }

    .hero-text {
        margin-right: 0;
    }

    .construction-container,
    .lowcurrent-container {
        padding: 2rem 1rem;
    }

    .service {
        width: 80%;
        margin: 10px 0;
    }

    .projects .container-1,
    .projects .container-2 {
        flex-direction: column;
        margin-left: 0;
    }

    .contact {
        flex-direction: column;
        align-items: center;
    }

    footer .upper {
        flex-direction: column;
        align-items: center;
    }

    .explore,
    .social-icons {
        text-align: center;
    }
}

.city-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 50px;
    box-sizing: border-box;
}

.left-text h2 {
    font-size: 3rem;
    margin-left: 55px;
    text-align: center;
}

.left-text .why {
    color: #f0f8ff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 20px;
}

.left-text .black {
    color: #000;
}

.left-text .aurora {
    color: #c98252;
    text-shadow: 0 0 5px rgba(201, 130, 82, 0.5);
}

.right-text {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 40%;
    padding-left: 20px;
    opacity: 0;
    transform: translateX(250px);
    transition: opacity 1s ease, transform 1.5s ease;
    width: 100%;
}

.right-text.fade-in {
    opacity: 1;
    transform: translateX(0);
}

.right-text p {
    font-size: 1.5rem;
    margin: 10px 0;
    display: flex;
    align-items: center;
}

.right-text .dash {
    display: inline-block;
    width: 20px;
    height: 7px;
    background-color: #c98252;
    margin-right: 10px;
}

.right-text .highlight {
    color: #f0f8ff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.right-text .subtext {
    font-size: 1.2rem;
    color: #9e9c9c;
    margin-left: 30px;
}

.city-sketch {
    position: relative;
    background-color: #2b2b2b;
    color: #f0f8ff;
    padding: 50px 20px;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../imgs/bg.png");
    background-size: contain;
    background-position: 40px 0px;
    background-repeat: no-repeat;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Media Queries */
@media screen and (max-width: 1200px) {
    .hero-text {
        margin-right: 50px;
    }

    .solutions-title {
        font-size: 5rem;
        letter-spacing: 20px;
        position: absolute;
        top:  140px;
    }

    .right-text {
        max-width: 50%;
    }
}

@media screen and (max-width: 992px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        padding-top: 100px;
    }

    .hero-text {
        margin-right: 0;
        margin-top: 30px;
    }

    .hero-img {
        width: 60%;
    }

    .about {
        flex-direction: column;
        height: auto;
        padding: 40px 0;
    }

    .gallery,
    .about-text {
        width: 80%;
        margin: 20px auto;
    }

    .solutions-title {
        font-size: 4rem;
        letter-spacing: 15px;
    }

    .container-1,
    .container-2 {
        width: 80%;
        right: 30px;
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 10px;
    }

    nav {
        gap: 10px;
    }

    nav a {
        font-size: 1rem;
    }

    .btn {
        padding: 0.4em 1.5em;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .solutions-title {
        font-size: 3rem;
        letter-spacing: 10px;
    }

    .construction-container,
    .lowcurrent-container {
        padding: 2rem 1rem;
    }

    .service {
        width: 90%;
        height: auto;
        margin: 15px auto;
    }

    .city-content {
        flex-direction: column;
        padding: 20px;
    }

    .left-text h2 {
        font-size: 2.5rem;
        margin-right: 0;
    }

    .right-text {
        max-width: 90%;
        transform: translateX(0);
        margin-top: 30px;
    }

    .contact {
        padding: 40px 20px;
        
    }

    .contact-img,
    .quote {
        width: 90%;
    }
}

@media screen and (max-width: 576px) {
    header img {
        width: 80px;
    }

    .hero-text .line {
        margin-left: 60px;
    }

    .hero .header-2 {
        margin-left: 100px;
    }

    .solutions-title {
        font-size: 2rem;
        letter-spacing: 5px;
    }

    .container-1 h3 {
        font-size: 1.2rem;
    }

    .container-2 p {
        font-size: 0.9rem;
        line-height: 20px;
    }

    .right-text p {
        font-size: 1.2rem;
    }

    .right-text .subtext {
        font-size: 1rem;
    }

    .memories {
        font-size: 1.5rem;
    }

    .cont h2 {
        font-size: 2rem;
    }

    .social-icons {
        margin-right: 0;
    }
}

@media screen and (max-width: 1024px) {
    /* Tablet Landscape */
    header {
        height: 10vh;
        padding: 15px;
    }

    nav {
        gap: 15px;
    }

    .hero {
        flex-direction: column;
        height: auto;
        padding: 120px 20px 50px;
    }

    .hero-text {
        margin: 0 auto;
        text-align: center;
    }

    .hero-img {
        width: 70%;
        margin: 30px auto;
    }

    .about {
        flex-direction: column;
        height: auto;
        padding: 50px 20px;
    }

    .gallery {
        width: 90%;
        margin: 0 auto 30px;
    }

    .about-text {
        width: 90%;
        margin: 0 auto;
    }

    .services {
        height: auto;
        padding: 50px 20px;
    }

    .construction-container,
    .lowcurrent-container {
        padding: 2rem 1rem;
    }

    .service {
        width: 45%;
        margin-bottom: 20px;
    }

    .container-1,
    .container-2 {
        width: 90%;
        margin: 0 auto;
    }
    .slider {
        height: 10vh;
    }

    .slider-container img {
        width: calc(100% / 8);
        margin: 0 10px;
    }
    .contact{
        height: auto;
    }
    .left-text{
        margin-right: 100px;
    }
    .projects-container{
        position: relative;
    }
    .solutions-title {
        font-size: 5rem;
        letter-spacing: 30px;
        top: 280px;
        left: 70px;
    }
    


}

@media screen and (max-width: 768px) {
    header {
        height: 8vh;
    }

    header img {
        width: 80px;
    }

    nav {
        gap: 8px;
    }

    nav a {
        font-size: 0.9rem;
        padding: 5px 10px;
    }

    .btn {
        padding: 0.3em 1em;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .hero-text .line {
        margin-left: 60px;
        height: 8px;
    }

    .hero .header-1,
    .hero .header-2 {
        margin-left: 0;
    }

    .service {
        width: 90%;
        height: auto;
    }

    .project {
        width: 90%;
        margin: 15px auto;
    }
    
    .project-section,
    .project-section.reverse {
        flex-direction: column;
        height: auto;
        padding: 2rem 1rem;
    }
    
    .project-gallery-half,
    .project-info-half {
        width: 100%;
        padding: 1rem 0;
    }
    
    .project-gallery-half {
        order: 2;
    }
    
    .project-info-half {
        order: 1;
    }

    .contact {
        height: auto;
        padding: 50px 20px;
        flex-direction: column;
    }

    .contact-img,
    .quote {
        width: 90%;
        margin: 20px auto;
    }

    .memories {
        font-size: 1.8rem;
    }

    footer {
        height: auto;
        padding: 30px 20px;
    }

    .upper {
        flex-direction: column;
        text-align: center;
    }

    .cont {
        padding-left: 0;
        text-align: center;
    }

    .social-icons {
        margin-right: 0;
        align-items: center;
    }
    .solutions-title {
        font-size: 4rem;
        letter-spacing: 20px;
        top: 200px;
        left: 70px;
    }
    
}

@media screen and (max-width: 480px) {
    /* Mobile Phones */
    header {
        height: 7vh;
        padding: 10px;
    }

    nav {
        gap: 5px;
    }

    nav a {
        font-size: 0.8rem;
        padding: 4px 8px;
    }

    .btn {
        padding: 0.3em 1em;
    }

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero-text .line {
        margin-left: 30px;
        height: 6px;
    }

    .slider {
        height: 20vh;
    }

    .slider-container img {
        width: calc(100% / 3);
        margin: 0 10px;
    }

    .about-text h3 {
        font-size: 1.7rem;
    }

    .about p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .solutions-title {
        font-size: 2rem;
        letter-spacing: 13px;
        top: 160px;
        left: 20px;
    }
    .container-2{
        height: 33vh;
    }

    .container-1 h3 {
        font-size: 1.1rem;
    }

    .container-2 p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .service h4 {
        font-size: 1.1rem;
    }

    .service p {
        font-size: 0.9rem;
    }

    .memories {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }


    .cont h2 {
        font-size: 2rem;
    }

    .explore p,
    .social-icons p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 360px) {
    /* Small Mobile Phones */
    header img {
        width: 70px;
    }

    nav a {
        font-size: 0.7rem;
        padding: 3px 6px;
    }

    .hero h2 {
        font-size: 1.5rem;
    }


    .memories {
        font-size: 1.3rem;
    }
    .city-sketch{
        background-image: none;
          }

          .solutions-title {
            font-size: 1.7rem;
            letter-spacing: 11px;
            top: 130px;
            left: 20px;
        }
        .container-2{
            height: 45vh;
        }
}

/* Fix for devices with height < 600px */
@media screen and (max-height: 600px) {
    .hero,
    .about,
    .services,
    .city-sketch {
        min-height: auto;
        padding: 100px 20px 50px;
    }
    .city-sketch{
  background-image: none;
    }

    .container-1,
    .container-2 {
        position: relative;
        height: auto;
        margin: 20px auto;
    }
}

/* Our Clients Section Styles */
.our-clients {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
    text-align: center;
}

.our-clients h2 {
    font-size: 2.5rem;
    color: #c98252;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.our-clients h2.animate-in {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInFromBottom {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.our-clients p {
    font-size: 1.1rem;
    color: #9e9c9c;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.client-logos {
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: 2rem;
    justify-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .client-logos {
        grid-template-columns: repeat(3, minmax(200px, 1fr));
    }
    .city-sketch{
        height: 60vh;
        background-image: none;
          }
    .gallery{
        height: 50vh;
    }
    .city-sketch{
        height: auto;

    }
}

@media (max-width: 768px) {
    .client-logos {
        grid-template-columns: repeat(2, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .client-logos {
        grid-template-columns: repeat(1, minmax(200px, 1fr));
    }
    .city-sketch{
        background-image: none;
        height: auto;
          }
}

.client-logo {
    background-color: #262626;
    border-radius: 10px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Ensure proper centering for the last row */
.client-logos {
    display: grid;
    grid-auto-flow: dense;
}

.client-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Services Page Styles */
.services-hero {
    height: 45vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #262626 50%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}
.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 130, 82, 0.1), transparent);
    animation: shine 5s infinite;
}
.services-hero-content {
    text-align: center;
    z-index: 2;
}

.services-hero h1 {
    font-size: 4rem;
    color: #c98252;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    animation: fadeInUp 1s ease-out;
}

.services-hero p {
    font-size: 1.2rem;
    color: #9e9c9c;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.service-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(45deg, #c98252 25%, transparent 25%) -50px 0,
        linear-gradient(-45deg, #c98252 25%, transparent 25%) -50px 0;
    background-size: 100px 100px;
    opacity: 0.1;
    animation: waveAnimation 10s linear infinite;
}

@keyframes waveAnimation {
    0% {
        background-position: -50px 0, -50px 0;
    }
    100% {
        background-position: 50px 0, 50px 0;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    background: transparent;
}

.service-card {
    background: #262626;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #c98252;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.5rem;
    color: #c98252;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: #f0f8ff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #9e9c9c;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: #9e9c9c;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #c98252;
}

.service-process {
    padding: 5rem 2rem;
    background-color: #262626;
    text-align: center;
}

.service-process h2 {
    color: #c98252;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-process h2.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.process-timeline {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    flex: 1;
    min-width: 200px;
    position: relative;
    padding: 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.process-step:nth-child(1) {
    transition-delay: 0.1s;
}

.process-step:nth-child(2) {
    transition-delay: 0.2s;
}

.process-step:nth-child(3) {
    transition-delay: 0.3s;
}

.process-step:nth-child(4) {
    transition-delay: 0.4s;
}

.step-number {
    font-size: 3rem;
    color: #c98252;
    opacity: 0.2;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
}

.process-step h3 {
    color: #f0f8ff;
    margin: 2rem 0 1rem;
    position: relative;
    z-index: 1;
}

.process-step p {
    color: #9e9c9c;
}

.why-choose-us {
    padding: 80px 40px;
    background-color: #202020;
    overflow: hidden;
}

.why-choose-us h2 {
    text-align: center;
    color: #c98252;
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-us h2.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
    margin: 0 auto;
}

.why-choose-us h2 {
    color: #c98252;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: #262626;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature i {
    font-size: 2.5rem;
    color: #c98252;
    margin-bottom: 1rem;
}

.feature h3 {
    color: #f0f8ff;
    margin-bottom: 1rem;
}

.feature p {
    color: #9e9c9c;
}

.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../imgs/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.cta-content h2 {
    color: #f0f8ff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #9e9c9c;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #c98252;
    color: #f8f8ff;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.6s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #f8f8ff;
    color: #c98252;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 130, 82, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles for Services Page */
@media screen and (max-width: 768px) {
    .services-hero h1 {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        flex-direction: column;
    }

    .process-step {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }
    .services-grid{
        max-width: 100%;
    }
    .service-card {
        padding: 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}


.bys-cta-section {
    padding: 100px 20px;
    background: 
    linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(38, 38, 38, 0.95) 100%),
    url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="60" height="60" fill="none"/><path d="M0 30h30M30 0v30" stroke="%23c98252" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: cover, 60px 60px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.bys-cta-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.bys-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #c98252 50%, transparent 100%);
    z-index: 2;
}

.bys-cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(201, 130, 82, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(230, 165, 115, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.bys-cta-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.bys-cta-content {
    padding-left: 4rem;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.bys-cta-section.visible .bys-cta-content {
    opacity: 1;
    transform: translateX(0);
}

.bys-cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c98252 0%, #e6a573 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

.bys-cta-icon i {
    font-size: 2.5rem;
    color: white;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.bys-cta-content h2 {
    font-size: 2.8rem;
    color: #e6a573;
    margin-bottom: 20px;
    line-height: 1.2;
}

.bys-cta-content > p {
    font-size: 1.2rem;
    color: #9e9c9c;
    line-height: 1.8;
    margin-bottom: 40px;
}

.bys-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.bys-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #9e9c9c;
    font-size: 1.1rem;
}

.bys-feature-item i {
    color: #c98252;
    font-size: 1.3rem;
}

.bys-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #c98252 0%, #e6a573 100%);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 5px 25px rgba(201, 130, 82, 0.3);
    position: relative;
    overflow: hidden;
}

.bys-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.bys-cta-button:hover::before {
    left: 100%;
}

.bys-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 130, 82, 0.5);
}

.bys-cta-button i {
    transition: transform 0.3s ease;
}

.bys-cta-button:hover i {
    transform: translateX(5px);
}

/* Visual Side */
.bys-cta-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
    linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(38, 38, 38, 0.8) 100%),
    url('../imgs/bys.jpeg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.bys-cta-section.visible .bys-cta-visual {
    opacity: 1;
    transform: translateX(0);
}

.bys-cta-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(201, 130, 82, 0.03) 2px,
            rgba(201, 130, 82, 0.03) 4px
        );
    pointer-events: none;
}

.bys-visual-circle {
    display: none;
}

.bys-visual-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    z-index: 2;
    padding: 40px;
}

.grid-item {
    width: 100px;
    height: 100px;
    background: rgba(38, 38, 38, 0.85);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(201, 130, 82, 0.4);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: scale(0.8);
}

.bys-cta-section.visible .grid-item {
    opacity: 1;
    transform: scale(1);
}

.bys-cta-section.visible .grid-item:nth-child(1) {
    transition-delay: 0.6s;
}

.bys-cta-section.visible .grid-item:nth-child(2) {
    transition-delay: 0.7s;
}

.bys-cta-section.visible .grid-item:nth-child(3) {
    transition-delay: 0.8s;
}

.bys-cta-section.visible .grid-item:nth-child(4) {
    transition-delay: 0.9s;
}

.bys-cta-section.visible .grid-item:nth-child(5) {
    transition-delay: 1.0s;
}

.bys-cta-section.visible .grid-item:nth-child(6) {
    transition-delay: 1.1s;
}

.grid-item:hover {
    background: linear-gradient(135deg, rgba(201, 130, 82, 0.9) 0%, rgba(230, 165, 115, 0.9) 100%);
    backdrop-filter: blur(15px);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 10px 30px rgba(201, 130, 82, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(230, 165, 115, 0.8);
}

.grid-item i {
    font-size: 2.5rem;
    color: #e6a573;
    transition: all 0.3s ease;
}

.grid-item:hover i {
    color: white;
    transform: scale(1.2);
}

/* Responsive Design for BYS CTA */
@media screen and (max-width: 1200px) {
    .bys-cta-container {
        gap: 60px;
    }
    
    .bys-cta-content h2 {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 992px) {
    .bys-cta-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .bys-cta-visual {
        height: 400px;
    }
    
    .bys-visual-grid {
        padding: 30px;
    }
    
    .grid-item {
        width: 90px;
        height: 90px;
    }
    
    .grid-item i {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    .bys-cta-section {
        padding: 60px 20px;
    }
    .bys-cta-content{
        padding-left: 10px;
    }
    .bys-cta-content h2 {
        font-size: 2rem;
    }
    
    .bys-cta-content > p {
        font-size: 1rem;
    }
    
    .bys-feature-item {
        font-size: 1rem;
    }
    
    .bys-cta-button {
        padding: 15px 35px;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }
    
    .bys-visual-grid {
        gap: 20px;
    }
    
    .grid-item {
        width: 70px;
        height: 70px;
    }
    
    .grid-item i {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 480px) {
    .bys-cta-icon {
        width: 60px;
        height: 60px;
    }
    
    .bys-cta-icon i {
        font-size: 2rem;
    }
    
    .bys-cta-content h2 {
        font-size: 1.6rem;
    }
    
    .bys-cta-visual {
        height: 350px;
    }
    
    .bys-visual-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px;
    }
    
    .grid-item {
        width: 80px;
        height: 80px;
    }
    
    .grid-item:nth-child(5),
    .grid-item:nth-child(6) {
        display: none;
    }
}

.bys-hero {
    min-height: 70vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #262626 50%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    padding: 4rem 2rem;
}

.bys-hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.bys-hero h1 {
    font-size: 2.5rem;
    color: #c98252;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 8px;
}

.bys-hero img{
    width:100%;
    height: 40vh;
    object-fit:contain;
}

.bys-hero p {
    font-size: 1rem;
    color: #ebebeb;
    line-height: 1.8;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.bys-button{
    margin:40px 0;
    cursor: pointer;
}
.hero-subtitle {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

.subtitle-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #f0f8ff;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.subtitle-item:hover {
    transform: translateY(-5px);
    color: #c98252;
}

.subtitle-item i {
    color: #c98252;
    font-size: 1.3rem;
}



@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    
}

.system-builder {
    padding: 2rem;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    min-height: 90vh;
    display: none;
    position: relative;
    overflow: hidden;
}

.system-builder.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-form-btn {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1f1b1b 0%, #272524 100%);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100;
}

.close-form-btn:hover {
    background: linear-gradient(135deg, #e6a573 0%, #f0b589 100%);
    transform: rotate(90deg);
    box-shadow: 0 5px 20px rgba(201, 130, 82, 0.5);
}

.builder-container {
    max-width: 1200px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding-right: 1rem;
}

/* Custom Scrollbar */
.builder-container::-webkit-scrollbar {
    width: 8px;
}

.builder-container::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 10px;
}

.builder-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #c98252 0%, #e6a573 100%);
    border-radius: 10px;
}

.builder-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e6a573 0%, #f0b589 100%);
}

.progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    flex-shrink: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #262626;
    border: 3px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #666;
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    background: linear-gradient(135deg, #c98252 0%, #e6a573 100%);
    border-color: #c98252;
    color: #fff;
    box-shadow: 0 0 20px rgba(201, 130, 82, 0.5);
}

.progress-step.completed .step-circle {
    background: #c98252;
    border-color: #c98252;
    color: #fff;
}

.step-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.progress-step.active .step-label {
    color: #e6a573;
}

.progress-step.completed .step-label {
    color: #c98252;
}

.progress-line {
    flex: 1;
    height: 3px;
    background: #333;
    margin: 0 1rem;
    position: relative;
    max-width: 200px;
}

.progress-line.completed {
    background: linear-gradient(90deg, #c98252 0%, #e6a573 100%);
}

.builder-form {
    background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(201, 130, 82, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-step {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-step h2 {
    color: #e6a573;
    font-size: 1.5rem;
    margin-bottom: 3rem;
    text-align: center;
}


/* Property Options - Column Layout */
.property-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    max-height: 50vh;
    overflow-y: auto;
    padding-right: 0.5rem;
}

/* Custom Scrollbar for property options */
.property-options::-webkit-scrollbar {
    width: 6px;
}

.property-options::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 10px;
}

.property-options::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #c98252 0%, #e6a573 100%);
    border-radius: 10px;
}

.property-card {
    background: linear-gradient(135deg, #222 0%, #2a2a2a 100%);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 2px solid #333;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
    max-width: 600px;
    width: 100%;
}

.property-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #666, transparent);
    transition: all 0.3s ease;
}

.property-card:hover {
    transform: translateX(5px);
    border-color: rgba(201, 130, 82, 0.5);
    box-shadow: 0 5px 20px rgba(201, 130, 82, 0.2);
}

.property-card:hover::before {
    background: linear-gradient(180deg, transparent, #c98252, transparent);
}

.property-card.selected {
    border-color: #c98252;
    background: linear-gradient(135deg, #2a2420 0%, #3a2f28 100%);
    box-shadow: 0 5px 20px rgba(201, 130, 82, 0.3);
}

.property-card.selected::before {
    background: linear-gradient(180deg, #c98252, #e6a573, #c98252);
}

.property-icon {
    font-size: 2.5rem;
    color: #666;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.property-card-content {
    flex: 1;
}

.property-icon {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.property-card:hover .property-icon {
    color: #c98252;
    transform: scale(1.1);
}

.property-card.selected .property-icon {
    color: #e6a573;
    filter: drop-shadow(0 0 15px rgba(201, 130, 82, 0.5));
}

.property-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.property-card p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.property-card.selected p {
    color: #b8a99a;
}

.property-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.detail-item {
    background: linear-gradient(135deg, #222 0%, #2a2a2a 100%);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    border: 2px solid #333;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
}


.detail-item:hover {
    border-color: rgba(201, 130, 82, 0.3);
    box-shadow: 0 5px 15px rgba(201, 130, 82, 0.1);
}

.detail-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #e6a573;
    font-size: 1rem;
    font-weight: 500;
}

.detail-label i {
    font-size: 1.3rem;
    color: #c98252;
}

/* Counter Controls */
.counter-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.counter-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #161210 0%, #000000 100%);
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.counter-btn:hover {
    border-color: #c98252;
    background: linear-gradient(135deg, #c98252 0%, #e6a573 100%);
    transform: scale(1.1);
    box-shadow: 0 3px 15px rgba(201, 130, 82, 0.4);

}

.counter-btn:active {
    transform: scale(0.95);
}

.counter-controls input[type="number"] {
    width: 80px;
    height: 45px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    color: #e6a573;
    background: #1a1a1a;
    border: 2px solid #444;
    border-radius: 8px;
    outline: none;
}

/* Remove number input arrows */
.counter-controls input[type="number"]::-webkit-inner-spin-button,
.counter-controls input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Toggle Group for Garden */
.toggle-group {
    display: flex;
    gap: 1rem;
}

.toggle-btn {
    padding: 0.8rem 2rem;
    border-radius: 8px;
    background: #333;
    border: 2px solid #444;
    color: #999;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toggle-btn:hover {
    border-color: rgba(201, 130, 82, 0.5);
    color: #c98252;
}

.toggle-btn.active {
    background: linear-gradient(135deg, #c98252 0%, #e6a573 100%);
    border-color: #c98252;
    color: white;
    box-shadow: 0 3px 15px rgba(201, 130, 82, 0.3);
}

.toggle-btn i {
    font-size: 0.9rem;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
    flex-shrink: 0;
}

.btn-prev,
.btn-next,
.btn-submit {
    padding: 1rem 2.5rem;
    font-size: .8rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-prev {
    background: #333;
    color: #999;
}

.btn-prev:not(:disabled):hover {
    background: #444;
    color: #fff;
    transform: translateX(-5px);
}

.btn-prev:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-next,
.btn-submit {
    background: linear-gradient(135deg, #c98252 0%, #e6a573 100%);
    color: #fff;
    margin-left: auto;
}

.btn-next:not(:disabled):hover,
.btn-submit:hover {
    background: linear-gradient(135deg, #e6a573 0%, #f0b589 100%);
    box-shadow: 0 5px 20px rgba(201, 130, 82, 0.4);
    transform: translateX(5px);
}

.btn-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #555;
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #555 !important;
}

 .whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px; 
    border-radius: 50%;
    background: linear-gradient(135deg, #1f1b1b 0%, #272524 100%);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100;
}

.whatsapp-float.active {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #e6a573 0%, #f0b589 100%);
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(201, 130, 82, 0.7);
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-content {
    text-align: center;
    color: #fff;
    max-width: 400px;
    padding: 40px 20px;
}

.loading-spinner {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: #c98252;
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.spinner-ring:nth-child(2) {
    border-top-color: #e6a573;
    animation-delay: 0.3s;
    width: 85%;
    height: 85%;
    top: 7.5%;
    left: 7.5%;
}

.spinner-ring:nth-child(3) {
    border-top-color: #f0b589;
    animation-delay: 0.6s;
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loading-content h3 {
    font-size: 1.8rem;
    color: #c98252;
    margin-bottom: 12px;
    font-weight: 700;
}

.loading-content p {
    font-size: 1rem;
    color: #bfbfbf;
    line-height: 1.5;
}

.loading-cancel-btn {
    margin-top: 24px;
    padding: 12px 28px;
    background: transparent;
    border: 2px solid rgba(201, 130, 82, 0.5);
    color: #c98252;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.loading-cancel-btn:hover {
    background: rgba(201, 130, 82, 0.15);
    border-color: #c98252;
    transform: translateY(-2px);
}

.loading-cancel-btn i {
    font-size: 1.1rem;
}



@media screen and (max-width: 768px) {
    .bys-hero {
        min-height: 60vh;
        margin-top: 60px;
        padding: 3rem 1.5rem;
    }

    .bys-hero h1 {
        font-size: 3rem;
        letter-spacing: 4px;
    }

    .bys-hero p {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }

    .subtitle-item {
        font-size: 1rem;
    }

    /* System Builder Mobile */
    .system-builder {
        padding: 1.5rem 1rem;
    }

    .close-form-btn {
        bottom: 90px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }

    .builder-form {
        padding: 2rem 1.5rem;
    }

    .form-step h2 {
        font-size: 1.8rem;
    }

    .property-card {
        padding: 1.2rem 1.5rem;
        max-width: 100%;
    }
    

    .property-icon {
        font-size: 2rem;
    }

    .property-details {
        max-width: 100%;
        grid-template-columns: repeat(1, 1fr);
    }

    .detail-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.2rem 1rem;
    }

    .detail-label {
        font-size: 1rem;
        width: 100%;
    }

    .counter-controls {
        width: 100%;
        justify-content: center;
    }

    .toggle-group {
        width: 100%;
        justify-content: center;
    }

    .toggle-btn {
        flex: 1;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }

    .progress-bar {
        gap: 0.5rem;
    }

    .step-circle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step-label {
        font-size: 0.75rem;
    }

    .progress-line {
        max-width: 80px;
        margin: 0 0.5rem;
    }

    .form-navigation {
        flex-direction: column;
    }

    .btn-next,
    .btn-submit {
        margin-left: 0;
    }
}

@media screen and (max-width: 480px) {
    .bys-hero h1 {
        font-size: 2.2rem;
        letter-spacing: 3px;
    }

    .bys-hero p {
        font-size: 1rem;
    }

    .subtitle-item {
        font-size: 0.95rem;
    }

    .close-form-btn {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }    
    .form-step h2 {
        font-size: 1.5rem;
    }

    .step-description {
        font-size: 0.95rem;
    }

    .property-card {
        padding: 1.5rem 1rem;
    }
    .property-details {
        max-width: 100%;
        grid-template-columns: repeat(1, 1fr);
    }
    .detail-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.2rem 1rem;
    }

    .detail-label {
        font-size: 1rem;
        width: 100%;
    }

    .counter-controls {
        width: 100%;
        justify-content: center;
    }

    .toggle-group {
        width: 100%;
        justify-content: center;
    }

    .toggle-btn {
        flex: 1;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    .property-icon {
        font-size: 1rem;
    }
    
    .property-icon i {
        font-size: 1rem;
    }

    .step-label {
        display: none;
    }

    .btn-prev,
    .btn-next,
    .btn-submit {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
}

.contact-page {
    margin-top: 80px;
    background-color: #262626;
}

.contact-hero {
    text-align: center;
    padding: 60px 20px;
    background-color: #1a1a1a;
}

.contact-hero h1 {
    font-size: 3rem;
    color: #c98252;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.contact-hero p {
    color: #9e9c9c;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    gap: 40px;
}

.contact-info {
    flex: 1;
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    max-width: 400px;
}

.contact-info h2 {
    color: #c98252;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #9e9c9c;
}

.info-item i {
    font-size: 1.5rem;
    color: #c98252;
    margin-right: 15px;
    width: 30px;
}

.social-links {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #262626;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c98252;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #c98252;
    color: #f0f8ff;
    transform: translateY(-3px);
}

.contact-form {
    flex: 2;
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
    color: #f0f8ff;
    background: transparent;
    border: none;
    border-bottom: 2px solid #333;
    outline: none;
    transition: all 0.3s ease;
}

.form-group label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    font-size: 1rem;
    color: #666;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -20px;
    font-size: 0.8rem;
    color: #c98252;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #c98252;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.g-recaptcha {
    margin: 20px 0;
    display: flex;
    justify-content: start;
}

.submit-btn {
    background-color: transparent;
    color: #c98252;
    border: 2px solid #c98252;
    padding: 12px 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background-color: #c98252;
    color: #f0f8ff;
    transform: translateY(-3px);
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #666;
    border-color: #666;
}

.submit-btn:disabled:hover {
    background-color: #666;
    color: #f0f8ff;
    transform: none;
}

/* Form success/error messages */
.form-message {
    padding: 10px 15px;
    margin-top: 20px;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid #28a745;
    display: block;
}

.form-message.error {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid #dc3545;
    display: block;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info {
        max-width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .contact{-hero h1 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 20px;
    }}

    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

.about-page {
    padding-top: 15vh;
    background-color: #262626;
}

.about-hero {
    text-align: center;
    padding: 60px 20px;
    background-color: #1a1a1a;
    position: relative;
    overflow: hidden;
}
.about-hero::after {
   content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 130, 82, 0.1), transparent);
    animation: shine 10s infinite;

}

.about-hero h1 {
    font-size: 3.5rem;
    color: #c98252;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.about-hero p {
    color: #9e9c9c;
    font-size: 1.2rem;
}

.about-section {
    position: relative;
    padding: 80px 40px;
    background-color: #202020;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-content {
    max-width: 800px;
    text-align: center;
    z-index: 2;
    padding: 40px;
    background: rgba(32, 32, 32, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 130, 82, 0.1);
}

.section-content h2 {
    color: #c98252;
    font-size: 3rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(201, 130, 82, 0.3);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c98252, transparent);
}

.section-content p {
    color: #f0f0f0;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.shooting-star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #c98252;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(201, 130, 82, 0.1), 0 0 0 8px rgba(201, 130, 82, 0.1), 0 0 20px rgba(201, 130, 82, 1);
    animation: shoot 5s linear infinite;
    opacity: 0;
}

.shooting-star::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    height: 1px;
    background: linear-gradient(90deg, #c98252, transparent);
}

.shooting-star:nth-child(1) {
    top: 0;
    left: 0;
    animation-delay: 0s;
    animation-duration: 3s;
}

.shooting-star:nth-child(2) {
    top: 0;
    right: 0;
    left: auto;
    animation-delay: 0.8s;
    animation-duration: 4s;
}

.shooting-star:nth-child(3) {
    bottom: 0;
    left: 0;
    top: auto;
    animation-delay: 1.5s;
    animation-duration: 3.5s;
}

.shooting-star:nth-child(4) {
    bottom: 0;
    right: 0;
    top: auto;
    left: auto;
    animation-delay: 2.2s;
    animation-duration: 4.5s;
}

.shooting-star:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 5s;
}

.shooting-star:nth-child(6) {
    top: 30%;
    left: 20%;
    animation-delay: 1s;
    animation-duration: 3.2s;
}

.shooting-star:nth-child(7) {
    top: 70%;
    right: 20%;
    animation-delay: 2.5s;
    animation-duration: 4.2s;
}

.shooting-star:nth-child(8) {
    top: 20%;
    right: 40%;
    animation-delay: 1.8s;
    animation-duration: 3.8s;
}

.shooting-star:nth-child(9) {
    bottom: 30%;
    left: 30%;
    animation-delay: 0.5s;
    animation-duration: 4.8s;
}

.shooting-star:nth-child(10) {
    top: 40%;
    right: 30%;
    animation-delay: 3.5s;
    animation-duration: 3.3s;
}

.shooting-star:nth-child(11) {
    top: 60%;
    left: 40%;
    animation-delay: 2.8s;
    animation-duration: 3.7s;
}

.shooting-star:nth-child(12) {
    top: 15%;
    left: 60%;
    animation-delay: 4s;
    animation-duration: 4.5s;
}

.shooting-star:nth-child(13) {
    bottom: 20%;
    right: 50%;
    animation-delay: 1.2s;
    animation-duration: 3.9s;
}

.shooting-star:nth-child(14) {
    top: 80%;
    left: 15%;
    animation-delay: 3.8s;
    animation-duration: 4.3s;
}

.shooting-star:nth-child(15) {
    top: 35%;
    right: 15%;
    animation-delay: 2.3s;
    animation-duration: 3.6s;
}

@keyframes shoot {
    0% {
        transform: rotate(315deg) translateX(0);
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(315deg) translateX(-1500px);
        opacity: 0;
    }
}

.vision-mission {
    display: flex;
    padding: 60px 40px;
    gap: 40px;
    background-color: #1a1a1a;
}

.vision,
.mission {
    flex: 1;
}

.card {
    background-color: #262626;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(201, 130, 82, 0.1);
}

.card i {
    font-size: 3rem;
    color: #c98252;
    margin-bottom: 20px;
}

.card h2 {
    color: #c98252;
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.card p {
    color: #9e9c9c;
    line-height: 1.6;
    font-size: 1.1rem;
}

.why-choose-us {
    padding: 80px 40px;
    background-color: #202020;
}

.why-choose-us h2 {
    text-align: center;
    color: #c98252;
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-choose-us h2.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.benefit-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(201, 130, 82, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card i {
    font-size: 2.5rem;
    color: #c98252;
    margin-bottom: 20px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation Classes */
.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease;
}

.slide-in-bottom {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s ease;
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.rotate-in {
    opacity: 0;
    transform: rotate(-180deg) scale(0.8);
    transition: all 0.8s ease;
}

.animate-in {
    opacity: 1;
    transform: translate(0) scale(1) rotate(0);
}

/* Stagger children animations */
.stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

.stagger-children > *:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-children > *:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-children > *:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-children > *:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger-children > *:nth-child(5) {
    transition-delay: 0.5s;
}

.stagger-children > *:nth-child(6) {
    transition-delay: 0.6s;
}

.stagger-children.animate-in > * {
    opacity: 1;
    transform: translateY(0);
}

/* Animation styles */
.fade-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-element.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .about-section,
    .vision-mission {
        flex-direction: column;
    }

    .section-image {
        order: -1;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
   
}

@media screen and (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .section-content h2,
    .card h2,
    .why-choose-us h2 {
        font-size: 2rem;
    }

    .vision-mission {
        padding: 40px 20px;
    }

    .card {
        padding: 30px;
    }
}

@media screen and (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }

    .about-section,
    .vision-mission,
    .why-choose-us {
        padding: 40px 20px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== QUOTE PAGE STYLES ==================== */

.quote-page {
    padding-top: 15vh;
    min-height: 100vh;
    background: #1a1a1a;
}

.quote-hero {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, #262626 0%, #1a1a1a 100%);
}

.quote-hero h1 {
    font-size: 2.5rem;
    color: #e6a573;
    margin-bottom: 15px;
}

.quote-hero p {
    font-size: 1.1rem;
    color: #9e9c9c;
    max-width: 800px;
    margin: 0 auto;
}

.quote-hero p span {
    color: #c98252;
    font-weight: bold;
    text-transform: capitalize;
}

.quote-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Property Summary */
.property-summary {
    background: #262626;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid #333;
}

.property-summary h2 {
    color: #e6a573;
    margin-bottom: 25px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.property-summary h2 i {
    color: #c98252;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.summary-item {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.summary-item:hover {
    border-color: #c98252;
    transform: translateY(-2px);
}

.summary-item i {
    font-size: 1.5rem;
    color: #c98252;
}

.summary-label {
    color: #9e9c9c;
    font-size: 0.95rem;
}

.summary-value {
    color: #e6a573;
    font-weight: bold;
    font-size: 1.1rem;
    margin-left: auto;
}

/* Price Disclaimer */
.price-disclaimer {
    background: linear-gradient(135deg, rgba(201, 130, 82, 0.1) 0%, rgba(230, 165, 115, 0.05) 100%);
    border-left: 4px solid #c98252;
    padding: 20px 25px;
    margin-bottom: 30px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.price-disclaimer i {
    color: #c98252;
    font-size: 1.5rem;
    margin-top: 2px;
}

.price-disclaimer p {
    color: #9e9c9c;
    line-height: 1.6;
    margin: 0;
}

.price-disclaimer strong {
    color: #e6a573;
}

/* Suggested Items Section */
.suggested-items {
    background: #262626;
    border-radius: 15px;
    padding: 30px;
    border: 2px solid #333;
}


.suggested-items h2 {
    color: #e6a573;
    margin-bottom: 30px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.suggested-items h2 i {
    color: #c98252;
}

/* Items List */
.items-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.quote-item {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 12px;
    padding: 20px;
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 25px;
    align-items: center;
    transition: all 0.3s ease;
}

.quote-item:hover {
    box-shadow: 0 5px 20px rgba(201, 130, 82, 0.2);
}

/* Item Image */
.item-image {
    position: relative;
    width: 200px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.quote-item:hover .item-image img {
    transform: scale(1.1);
}

.item-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #c98252 0%, #e6a573 100%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

/* Item Details */
.item-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.item-details h3 {
    color: #e6a573;
    font-size: 1.3rem;
    margin: 0;
}

.item-details p {
    color: #9e9c9c;
    line-height: 1.6;
    margin: 0;
}

.item-specs {
    display: flex;
    gap: 30px;
    margin-top: 5px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9e9c9c;
    font-size: 0.9rem;
}

.spec-item i {
    color: #c98252;
}

/* Item Pricing */
.item-pricing {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
    min-width: 200px;
}

/* Quantity Control */
.quantity-control {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #262626;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #444;
}

.qty-input {
    width: 60px;
    height: 35px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
    color: #e6a573;
    background: transparent;
    border: none;
    outline: none;
}

/* Remove number input arrows */
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Item Total */
.item-total {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.total-label {
    color: #9e9c9c;
    font-size: 0.9rem;
}

.total-amount {
    color: #e6a573;
    font-size: 1.3rem;
    font-weight: bold;
}

/* Quote Total Section */
.quote-total {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
    border: 2px solid #c98252;
}

.total-breakdown {
    max-width: 500px;
    margin-left: auto;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 1.1rem;
    color: #9e9c9c;
    border-bottom: 1px solid #333;
}

.total-row:last-child {
    border-bottom: none;
}

.total-row.subtotal {
    color: #9e9c9c;
}

.total-row.tax {
    color: #9e9c9c;
    font-size: 1rem;
}

.total-row.grand-total {
    color: #e6a573;
    font-size: 1.5rem;
    font-weight: bold;
    padding-top: 20px;
    border-top: 2px solid #c98252;
}

.total-row.grand-total span:last-child {
    color: #c98252;
}

/* Quote Actions */
.quote-actions {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-top: 40px;
    padding: 0px 50px;
    flex-wrap: wrap;
}
.quote-actions-extra{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.btn-print,
.btn-modify {
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
}

.btn-print {
    background: #444;
    color: #e6a573;
    border: 2px solid #555;
}

.btn-print:hover {
    background: #555;
    border-color: #666;
    transform: translateY(-2px);
}


.btn-modify {
    background: transparent;
    color: #e6a573;
    border: 2px solid #c98252;
}

.btn-modify:hover {
    background: rgba(201, 130, 82, 0.1);
    transform: translateY(-2px);
}

/* Print Logo */
.print-logo {
    display: none;
}

.print-footer {
    display: none;
}

/* Print Styles */
@media print {
    header,
    footer,
    .whatsapp-float,
    .quote-actions,
    .hamburger {
        display: none !important;
    }
    
    .print-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 500;
        width: auto;
    }
    
    .print-logo img {
        width: 100px;
        height: auto;
    }
    
    .quote-page {
        padding-top: 0;
    }
    
    .quote-hero {
        padding-top: 30px;
        background: white !important;
    }
    
    .quote-hero h1 {
        color: #c98252 !important;
    }
    
    .quote-hero p {
        color: #333 !important;
    }
    
    .quote-item {
        page-break-inside: avoid;
        border: 1px solid #ddd !important;
        background: white !important;
    }
    
    body {
        background: white !important;
        color: #333 !important;
    }
    
    .quote-container,
    .property-summary,
    .suggested-items {
        background: white !important;
        border: 1px solid #ddd !important;
    }
    
    
    .quote-item.zero-quantity {
        display: none !important;
    }
 
    .counter-btn {
        display: none !important;
    }
    
    .quantity-control {
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        gap: 5px !important;
    }
    
    /* Add "Quantity:" label before input in print */
    .quantity-control::before {
        content: "Quantity: ";
        color: #666;
        font-size: 0.9rem;
    }
    
    .qty-input {
        color: #c98252 !important;
        font-size: 1rem !important;
        width: auto !important;
        text-align: left !important;
        font-weight: normal !important;
    }
    
    /* Align item pricing to the left */
    .item-pricing {
        align-items: flex-start !important;
        min-width: 150px;
        flex-direction: column !important;
        gap: 10px !important;
    }
    
    .quantity-control {
        justify-content: flex-start !important;
    }
    
    .item-total {
        align-items: flex-start !important;
    }
    
    /* Update colors for print */
    .property-summary h2,
    .suggested-items h2,
    .item-details h3,
    .summary-value,
    .total-amount {
        color: #c98252 !important;
    }
    
    .summary-label,
    .item-details p,
    .spec-item,
    .total-label,
    .total-row {
        color: #666 !important;
    }
    
    .summary-item,
    .detail-item {
        border-color: #ddd !important;
    }
    
    .quote-total {
        background: white !important;
        border: 2px solid #333 !important;
    }
    
    .total-row.grand-total {
        color: #000 !important;
        border-top: 2px solid #333 !important;
    }
    
    .total-row.grand-total span:last-child {
        color: #c98252!important;
    }
    
    .price-disclaimer {
        background: #f5f5f5 !important;
        border-left-color: #c98252 !important;
    }
    
    .price-disclaimer p,
    .price-disclaimer strong {
        color: #333 !important;
    }
    
    .price-disclaimer i {
        color: #c98252 !important;
    }
    
    /* Show and style print footer */
    .print-footer {
        display: block !important;
        margin-top: 40px;
        padding-top: 30px;
        border-top: 3px solid #c98252;
        page-break-inside: avoid;
    }
    
    .print-footer-content {
        display: flex;
        justify-content: start;
        align-items: center;
        width: auto;
        padding: 0 10px;
    }
    
    .print-footer-logo {
        display: flex;
        align-items: center;
    }
    
    .print-footer-logo img {
        width: 100px;
        height: auto;
    }
    
    .print-footer-contact {
        display: flex;
        margin-left: 40px;
        gap: 30px;
    }
    
    .print-contact-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #333;
        font-size: 0.95rem;
    }
    
    .print-contact-item i {
        color: #c98252;
        font-size: 1.1rem;
    }
    .suggested-items{
        margin-top: 220px;
    }
    .price-disclaimer{
        margin-top: 50px;
    }
    .property-summary{
        margin-top: 50px;
    }

}

/* Responsive Design for Quote Page */
@media screen and (max-width: 1200px) {
    .quote-item {
        grid-template-columns: 180px 1fr auto;
        gap: 20px;
    }
    
    .item-image {
        width: 180px;
        height: 135px;
    }
}

@media screen and (max-width: 992px) {
    .quote-item {
        grid-template-columns: 150px 1fr;
        gap: 15px;
    }
    
    .item-image {
        width: 150px;
        height: 110px;
    }
    
    .item-pricing {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        min-width: auto;
        padding-top: 15px;
        border-top: 1px solid #333;
    }
    
    .summary-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .quote-hero h1 {
        font-size: 2rem;
    }
    
    .quote-hero p {
        font-size: 1rem;
    }
    
    .quote-item {
        grid-template-columns: 1fr;
        padding: 15px;
    }
    
    .item-image {
        width: 100%;
        height: 200px;
    }
    
    .item-pricing {
        border-top: 1px solid #333;
        padding-top: 15px;
    }
    
    .property-summary,
    .suggested-items {
        padding: 20px 15px;
    }
    
    .item-specs {
        flex-direction: column;
        gap: 8px;
    }
    
    .total-breakdown {
        max-width: 100%;
    }
    
    .quote-actions {
        flex-direction: column;
    }
    .quote-actions-extra{
        flex-direction: column;
    }
    .btn-print,
    .btn-modify {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .quote-hero {
        padding: 40px 15px 30px;
    }
    
    .quote-hero h1 {
        font-size: 1.6rem;
    }
    
    .property-summary h2,
    .suggested-items h2 {
        font-size: 1.4rem;
    }
    
    .item-details h3 {
        font-size: 1.1rem;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .total-row.grand-total {
        font-size: 1.2rem;
    }
}



/* ========== PRODUCTS PAGE STYLES ========== */
.product-category-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(201, 130, 82, 0.1);
}

.product-category-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 130, 82, 0.08), transparent);
    animation: shine 13s infinite;
}

.product-cat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(201, 130, 82, 0.2);
}

.product-cat-info h2 {
    color: #c98252;
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.product-cat-info p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.4;
}

.product-cat-badge span {
    color: #fff;
    background: rgba(201, 130, 82, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(201, 130, 82, 0.3);
}

.product-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.product-item-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(15, 15, 15, 0.95));
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.product-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(201, 130, 82, 0.2);
    border-color: rgba(201, 130, 82, 0.4);
}

.product-item-card:hover .product-item-body h3 {
    color: #c98252;
}

.product-item-img {
    position: relative;
    width: 100%;
    height: 200px;
    background: #0a0a0a;
    overflow: hidden;
}

.product-item-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.product-item-card:hover .product-item-img img {
    transform: scale(1.05);
}

.product-item-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.product-item-body h3 {
    color: #f0f8ff;
    font-size: 1.15rem;
    font-weight: 600;
    transition: color 0.3s ease;
    margin: 0;
}

.product-item-body p {
    color: #bbb;
    font-size: 0.9rem;
    line-height: 1.5;
    flex: 1;
    margin: 0;
}

.product-item-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-item-price {
    color: #c98252;
    font-weight: 700;
    font-size: 1.1rem;
}

.product-btn-inquire {
    background: rgba(201, 130, 82, 0.1);
    border: 1px solid rgba(201, 130, 82, 0.3);
    color: #c98252;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.85rem;
}

.product-btn-inquire:hover {
    background: rgba(201, 130, 82, 0.2);
    border-color: #c98252;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .product-items-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .product-cat-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .product-items-grid {
        grid-template-columns: 1fr;
    }
    
    .product-item-img {
        height: 180px;
    }
    
    .product-category-wrapper {
        padding: 20px;
        margin: 20px 10px;
    }
    
    .product-cat-info h2 {
        font-size: 1.5rem;
    }
}

.products-bys {
    text-align: center;
    min-height: 400px;
    height: auto;
    margin-top: 5rem;
    padding: 4rem 2rem;
    background-image: url('../imgs/bys-products.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    max-width: 100vw;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}


@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}
.products-bys .memories{
        margin-bottom: 2rem;

}
.products-bys h3 {
    font-size: 2rem;
    color: #f8f8ff;
    margin-bottom: 2rem;
    line-height: 1.5;
    max-width: 800px;
}

.products-bys h3 .memories {
    color: #c98252;
    font-weight: 700;
    display: inline-block;
}
.products-bys .cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.products-bys .cta-button:hover {
    color: #c98252;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 130, 82, 0.4);
}

/* Responsive */
@media screen and (max-width: 768px) {
    .products-bys {
        margin-top: 3rem;
        padding: 3rem 1.5rem;
        min-height: 350px;
        background-attachment: scroll;
    }

    .products-bys h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .products-bys .cta-button {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .products-bys {
        margin-top: 2rem;
        padding: 2rem 1rem;
        border-radius: 10px;
    }

    .products-bys h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .products-bys  {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}
