a {
    text-decoration: none;
    outline: none;
    color: white;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: white;
}

/* Sidebar Styles */
.sidebar {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 340px; /* Initial collapsed width */
    position: fixed;
    top: 0;
    left: 0;
    background-color: #000;
    padding-top: 30px;
    transition: width 0.6s ease-out;
    border-right: 0.1px solid rgba(123, 123, 123, 0.736);
    height: 100vh; 
}


/* Sidebar Header */
.sidebar__header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 0px;
    transition: transform 0.3s ease-in-out;
    position: relative;
    margin-left: -40px;

}

.sidebar__logo {
    width: 55px;
    height: auto;
    margin-right: -5px;
    justify-content: flex-start;
    position: relative;  /* Allow positioning with translateX */
    left: -15px;
}

/* Updated logo-text styling */
.logo-text {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(209, 129, 16);
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    text-decoration: none;
}
/* Active Item */
.sidebar__navItem:active {
    color: rgb(123, 123, 123);
}

.sidebar__navItem:active .sidebar__navIcon,
.sidebar__navItem:active .sidebar__navText,
.sidebar__navItem.aboutus-item:active .sidebar__navIcon{
    color: rgb(123, 123, 123);
}
.sidebar__header {
    padding-left: 10px; /* Add padding to prevent logo from touching the sidebar border when collapsed */
}

/* Initially hide the text */
.sidebar__navText, .logo-text span {
    display: inline-block; /* Ensure text is always shown */
    font-weight: 600;

}


/* Navigation Items */
.sidebar__nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-left: 20px;
}

.sidebar__navItem{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px;
    text-decoration: none;
    color: white;
    font-size: 18px;
    width: 92%;
    transition: background-color 0.3s ease-in-out;
    box-sizing: border-box;
    margin-top: 17px;
}



.sidebar__navItem:hover {
    background-color: rgb(26, 26, 26);
}

.sidebar__navIcon {
    transition: margin-right 0.3s;
    margin-right: 12px;
}

/* Home Item with custom color */
.sidebar__navItem.aboutus-item {
    color: rgb(209, 129, 16); /* Change text and icon color to company name color */
    font-weight: 700;
}

.sidebar__navItem.aboutus-item:hover {
    background-color: rgb(26, 26, 26); /* Hover background color */
}

.sidebar__navItem.aboutus-item .sidebar__navIcon {
    color: rgb(209, 129, 16); /* Icon color matching company name */
}

.sidebar__navText, .logo-text span {
    display: inline-block; /* Ensure text is always shown */
}
.content {
    margin-left: 350px; /* Ensure content is positioned correctly */
    background-color: black;
}

/* Section Titles */
h2 {
    color: rgb(209, 129, 16);
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Paragraphs */
p {
    font-size: 18px;
    line-height: 1.6;
}

/* Language Modal Styles */
.language-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    display: none;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    height: 200px; /* Increased height */
    width: 320px;  /* Adjust width */
}

/* Make modal visible */
.language-modal.active {
    display: flex;
}


/* Style for each language option */
.language-modal a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    margin: 10px 0;
    transition: color 0.3s ease-in-out;
    padding: 10px 0;
    display: block;
    text-align: center;
}

/* Hover effect on language options */
.language-modal a:hover {
    color: rgb(123, 123, 123);
}

.language-modal a + a {
    border-top: 2px solid rgb(85, 84, 84);
    width: 75%;  /* Make the border span the full width of the modal */
    margin-top: 2px; /* Add space between the text and the border */
}


/* Language selector in Sidebar */
/* Updated Language Item */
.language-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: absolute;
    text-align: left;
    bottom: 30px;
    background-color: #000;
    justify-content: flex-start;
    padding: 15px;
    font-size: 18px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, padding-left 0.3s ease-in-out;
    margin-top: 17px;
    width: 92%;  /* Ensure it matches the width of other items */
    margin-top: 17px; 
    box-sizing: border-box;
    padding-left: 20px; /* Adjust padding-left to match the other items */
    padding-right: 15px;
}




/* Language item in collapsed state */
.sidebar .language-item {
    justify-content: left;
    width: 92%; /* Keep the same width as in expanded state */
    padding-left: 12px; 
}


/* Active state for language item */
.language-item.active {
    background-color: rgb(38, 38, 38);
}

.language-item.active .sidebar__navIcon,
.language-item.active .sidebar__navText {
    color: rgb(123, 123, 123);
}
.sidebar:active .sidebar__navItem,
.sidebar__navItem.aboutus-item:active{
    background-color: black;
}
.language-item.active {
    background-color: black; /* Ensure it applies specifically to the Language item */
}

#language-dropdown {
    position: absolute;
    bottom: 75px;
    left: 20px;
    background-color: #000000;
    border-radius: 5px;
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    width: 150px;
    text-align: center;
    
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    display: none; /* Start as hidden */
}
/* Style when active */
#language-dropdown.active {
    opacity: 1;
    transform: translateY(0);
}
/* Style for each language option */
#language-dropdown a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
    position: relative; /* Required for the pseudo-element */
    margin-left: -50px;
}

#language-dropdown a:hover {
    color: rgb(123, 123, 123);
}

#language-dropdown a:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%; /* Adjust to control the width of the border */
    height: 1px;
    background-color: rgb(85, 84, 84);
}


/* Title styles */
h2 {
    color: rgb(209, 129, 16); /* Make titles gold */
    font-size: 2rem; /* Adjust title size */
}

#language-dropdown a[data-lang="en"] {
    color: rgb(209, 129, 16); /* Gold color */
}


/* Search Box Styles */
.search-box-container {
    display: none;
    transition: all 0.3s ease-out;
    width: 85%; /* Match the width of other sidebar items */
    padding: 5px 15px;
    background-color: #000000;
    border-radius: 5px;
    margin-top: 20px;
    margin-left: -10px;
}

.search-box-container input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #000000; 
    outline: none;   
    font-size: 16px;
    box-sizing: border-box;
    background-color: rgb(0, 0, 0);
    color: white;
    border: 0.7px solid rgb(123, 123, 123);

}

* Suggestions List */
.suggestions-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 60px; /* Position it directly below the search bar */
    width: 92%;
    background-color: #000000;
    color: white;
    z-index: 1;
}

.suggestions-list li {
    padding: 10px;
    cursor: pointer;
}

.suggestions-list li:hover {
    background-color: #000000;
}

/* Active Search Bar Styles */
.search-bar-active .search_icon {
    display: none; /* Hide the search icon and text */
}

.search-bar-active .search-box-container {
    display: block;
}




#suggestions li a:hover {
    color: rgb(123, 123, 123); /* Optional: Hover effect to make it gold (for example) */
}
/* Remove bullets and dot from the suggestions */
#suggestions {
    list-style-type: none;  /* Removes the bullets or dots */
    padding-left: 0;  /* Ensures no padding on the left */
    margin-left: -10px;
}

/* Move suggestion links a little to the left and set text color */
#suggestions li a {
    color: white; /* Change suggestion text to white */
    text-decoration: none; /* Optional: removes underline from links */
    padding-left: 10px; /* Moves text a little bit to the left */

}

/* Contact Section */
.contact-section {
    margin-top: 200px;
    padding-top: 20px; /* Space inside the contact section */
    background-color: #00000080; /* Dark background for contrast */
    border-top: 0.1px solid rgba(123, 123, 123, 0.390);
    display: flex; /* Use flexbox to align items */
    justify-content: space-between; /* Distribute space between logo and contact info */
    align-items: center; /* Vertically center the items */
}

/* Logo Section */
.logo-section {
    padding-left: 40px; /* Increase the left padding to move it further right */
    display: flex;
    flex-direction: column; /* Stack logo and company name vertically */
    align-items: center; /* Center the items horizontally */
    justify-content: center; /* Vertically align items */
    text-align: center; /* Center the text of the company name */
    margin-top: 130px;
}

.logo-section img {
    max-width: 100px; /* Adjust the logo size */
    height: auto; /* Ensure the image maintains its aspect ratio */
    display: block; /* Make the image a block-level element */
    margin-bottom: 3px; /* Add some space between logo and name */
    margin-left: 270px;

}

.logo-section h3 {
    color: rgb(209, 129, 16); /* Gold color for the company name */
    margin-top: -15px; /* Remove top margin */
    margin-left: 340px;
    font-weight: 400;
}


/* Contact Info Section */
.contact-info {
    max-width: 600px;
    padding: 20px;
    background-color: #00000080; /* Slightly lighter dark background */
    border-radius: 8px;
    margin-right: 20px; /* Add some space between contact info and right side */
}

.contact-info h2 {
    color: rgb(209, 129, 16); /* Title in gold */
    text-align: left; /* Align the title to the left */
    margin-bottom: 60px; /* Add some space between title and contact list */
}

.contact-info ul {
    list-style-type: none;
    padding: 0;
}

.contact-info li {
    color: white; /* White text for the contact info */
    margin-bottom: 15px;
}

.contact-info li a {
    color: rgb(209, 129, 16); /* Facebook link in goldenrod */
    text-decoration: none;
}

.contact-info li a:hover {
    text-decoration: underline; /* Add underline on hover */
}



.text-gold {
    color: rgb(209, 129, 16); /* Gold color */
    font-weight: 700;
  }
  
  .text-center {
    text-align: center;
    font-size: 40px;
    margin-top: 100px;
    font-weight: 600;
  }


  
  .mt-4 {
    margin-top: 1rem;
  }
  
  .mt-2 {
    margin-top: 0.5rem;
  }
  
  /* Main Header */
  .main-header {
    padding: 2rem 0;
    background-color: black;
    background-size: cover;
    color: white;
    justify-content: center;
    text-align: center;
  }
  .content-title{
    color: rgb(209, 129, 16);
    }
  .main-header h1 {
    font-size: clamp(1.5rem, 5vw, 4.5rem);
    font-weight: bold;
    text-transform: uppercase;

  }
  
  .main-header p {
    font-size: 1.25rem;
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: bolder;
    color: rgb(203, 203, 203);

  }
  
  /* Products Section */
  .products {
    background-color: #000; /* Black background */
  }
  
  .products h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    width: 100%;

  }
  .product-item {
    width: 50%;
  }

  .product-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
    margin: 0 auto;
  }
  
  .product-item img:hover {
    transform: scale(1.05);
    opacity: 0.8;
  }
  
  .product-item p {
    margin-top: 0.75rem;
    font-size: 1.6rem;
    color: #ccc;
  }
  
  .gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .work-item{
    width: 100%;
  }
  .work-item img {
    width: 90%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
    margin: 0 auto;
    margin-top: 40px;
    opacity: 0.8;
    border-radius: 40px;
  }
  

  
  .work-item p {
    margin-top: 0.75rem;
    font-size: 3rem;
    color: #ccc;
  }

  
  /* Final Thoughts Section */
  .final-thoughts {
    background-color: #000;
    color: #ccc;
    margin-top: 100px;
  }
  
  .final-thoughts h2 {
    font-size: 3rem;
  }
  
  .final-thoughts p {
    font-size: 1.1rem;
    max-width: 80%;
    margin: 0 auto;
    line-height: 1.6;
    color: #ccc;
  }
  
  .py-10{
    margin-bottom: -150px;
    
  }
  section {
    padding: 2rem;
  }

.image-container {
    display: flex;
    justify-content: space-between; /* Distributes space evenly */
    width: 100%;
    flex-wrap: nowrap; /* Prevents images from wrapping */
    overflow: hidden; /* Ensures no overflow */
    margin-bottom: 170px;
}
.container-text{
    margin-top: 60px;
    margin-bottom: 250px;
    text-align: center;
    font-size: 25px;
    color: rgb(178, 178, 178);
    font-weight: 600;
}
.image-container .content-little-pic{
    margin-left: 10px;
    width: 22%;  /* Ensures the image takes full width of the grid cell */
    aspect-ratio: 1 / 1;  /* Makes the height equal to the width */
    object-fit: cover; 

}
.pictures-section{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 95%;
        padding: 20px;
    }

.left-image{
    width: 100%;
    height: auto;
    border-radius: 50px;
    display: block;

}
.left-part{
    width: 40%;
    margin-left: 80px;
}
.right-part {
    width: 40%;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two images per row */
    gap: 30px; /* Space between images */
    margin-left: 150px;
}
.right-pic {
    width: 100%;  /* Ensures the image takes full width of the grid cell */
    aspect-ratio: 1 / 1;  /* Makes the height equal to the width */
    object-fit: cover; 
    display: block;
    border-radius: 30px;
    margin-left: -100px;
}

.image-container-stones {
    display: flex;
    justify-content: space-between; /* Distributes space evenly */
    width: 100%;
    flex-wrap: nowrap; /* Prevents images from wrapping */
    overflow: hidden; /* Ensures no overflow */
    margin-top: -30px;
}

.image-container-stones .content-little-pic {
    width: 30%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    height: auto;
    height: auto;
    border-radius: 45px;
}
.content-little-pic {
    width: 220px; 
    height: 220px;
    margin-top: 60px;
    border-radius: 20px;
}

  .work-item .content-text{
    font-size: 1.3rem;
    margin-top: 50px;
    font-weight: 600;
    color: rgb(178, 178, 178);
  }
.phone{
    display: none;
}

  
.container-text-pic{
    width: 70%;
    text-align: center;
    margin-left: 15%;
    font-size: 25px;
    color: rgb(178, 178, 178);    
    font-weight: 600;
}

/* General Fade & Zoom Effect */
.scroll-effect {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Active class when element is in viewport */
.scroll-effect.active {
    opacity: 0.8;
    transform: scale(1);
}
.content img{
    opacity: 0.8;
}
@media only screen and (max-width: 1200px) {
    .phone{
        display: inline;
    }
    .comp{
        display: none;
    }
    body {
        background: black;
        color: white;
        margin: 0;
        font-family: Arial, sans-serif;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
    }
    
    a {
        text-decoration: none;
    }
    
    .logo-container_ph {
        display: flex;
        align-items: center;
    }
    
    .company-name_ph {
        color: rgb(209, 129, 16);
    }
    
    .header_ph {
        position: fixed;
        top: 0;
        width: 100%;
        display: flex;
        align-items: center;
        background: black;
        padding: 10px 4vw;
        border-bottom: 0.4px solid rgba(123, 123, 123, 0.547);
        z-index: 10;
        box-sizing: border-box;
        gap: 20px;
    }
    
    
    #language-dropdown_ph {
        position: fixed;
        top: 63px;
        right: 0vw;
        background-color: #000000;
        border-radius: 5px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        width: 120px;
        max-height: 300px;
        overflow-y: auto;
        text-align: center;
        display: none;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease-out, transform 0.3s ease-out;
        z-index: 1000;
        overflow: visible;
    }
    
    #language-dropdown_ph.active {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
    
    #language-dropdown_ph a:hover {
        color: rgb(85, 84, 84);
    }
    
    #language-dropdown_ph a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        color: white;
        text-decoration: none;
        padding: 5px 0;
        margin: 20px 0;
        transition: background 0.3s;
    
    }
    
    #language-dropdown_ph a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 30%; /* adjust as you like */
        height: 1px;
        background-color: rgb(85, 84, 84);
    }
    
    
    .language-dropdown_ph .en_ph {
        color: rgb(209, 129, 16) !important;
        cursor: pointer;
    }
    .search-bar_ph {
        border: none;
        border: 0.7px solid rgba(123, 123, 123, 0.648);
        transition: all 0.3s ease-out;
        outline: none;
    }
    
    /* Basic styling for the search bar */
    .search-container_ph {
        flex: 1; /* 📏 Let it grow to fill middle space */
        display: flex;
        position: relative;
    }
    
    .language-item_ph {
        display: flex;
        align-items: center;
        font-size: 20px;
        color: white;
        cursor: pointer;
        transition: background-color 0.3s ease-in-out;
        margin-left: -5px;
    }
    
    
    .search-bar_ph {
        padding: 8px;
        border-radius: 7px;
        background-color: black;
        color: white;
        box-sizing: border-box;
        width: 100%;
    }
    
    .suggestions-list_ph {
        position: absolute;
        top: 100%;
        left: 0;
        width: 99%; /* Adjusted width */
        background-color: black;
        color: white;
        padding: 0;
        margin: 0;
        list-style: none;
        border-radius: 5px;
        border: 0.7px solid rgba(123, 123, 123, 0.648);
        display: none;
        max-height: 150px;
        overflow-y: auto;
        z-index: 100;
    }
    
    .suggestions-list_ph li {
        padding: 5px;
        cursor: pointer;
    }
    
    .suggestions-list_ph li a:hover {
        color: rgb(123, 123, 123);
    }
    
    .suggestions-list_ph li a {
        display: block;
        text-decoration: none;
        padding: 5px;
        font-size: 14px;
    
    
        color: rgb(255, 255, 255);
    }
    
    .language-item_ph.active {
        color: rgb(123, 123, 123);
    }
    
    .search-bar_ph:focus + .suggestions-list_ph {
        display: block;
    }
    
    .search-bar_ph {
        font-size: 12px;
    }
    
    /* Ensure the logo and company name are in the same line and properly aligned */
    .logo-container_ph {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0; /* 🛡 Prevent it from shrinking */
    }
    
    .company-logo_ph {
        height: 42px;
        width: auto;
        display: inline-block;
        vertical-align: middle; /* ✅ Ensures logo aligns with text */
    }
    
    .company-name_ph {
        font-size: 18px;
        font-weight: 800;
        color: rgb(209, 129, 16);
        white-space: nowrap;
        vertical-align: middle; /* ✅ Aligns text with logo */
        display: inline-block;
    }
    
    
    
    
    .bottom-nav_ph {
        position: fixed;
        bottom: 0px;
        width: 100%;
        background-color: black;
        display: flex;
        justify-content: space-around;
        padding: 2px 5px;
        border-top: 0.4px solid rgba(123, 123, 123, 0.547);
    }
    .icon_ph {
        color: white;
        font-size: 22px;
        margin: 20px 10px;
    }
    
    
    
    
    /* Full width bottom section */
    .contact-section_ph {
        background-color: #00000080;
        border-top: 0.1px solid rgb(123, 123, 123);
        display: flex;
        justify-content: space-between;  /* Left and right content */
        align-items: flex-end;           /* Align content to bottom */
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 60px;
        padding: 10px 20px;
        margin-top: 20px;
    
    }
    
    /* Bottom left: Logo and Company Name */
    .logo-section_ph {
        display: flex;
        flex-direction: column;
        align-items: flex-start;     /* Align logo + name to left */
        justify-content: flex-end;   /* Align vertically to bottom */
        margin-bottom: 7px;
    }
    
    /* Logo styling */
    .logo-section_ph img {
        max-width: 60px;
        height: auto;
        margin-bottom: -10px;
    }
    
    /* Company name styling */
    .logo-section_ph h3 {
        color: rgb(209, 129, 16);
        font-weight: 500;
        font-size: 12px;
        margin: 0;
        white-space: nowrap;
    }
    
    /* Bottom right: Contact Info */
    .contact-info_ph {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;   /* Align text to bottom */
        align-items: flex-end;       /* Align content to right */
        max-width: 800px;
        width: 100%;
        background-color: #00000080;
        border-radius: 6px;
        padding-left: 20px;
        text-align: left;
    }
    
    /* Contact title */
    .contact-info_ph h2 {
        color: rgb(209, 129, 16);
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    /* Contact list styling */
    .contact-info_ph ul {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }
    
    /* Contact items */
    .contact-info_ph li {
        color: white;
        font-size: 14px;
        margin-bottom: 10px;
        font-size: 11px;
    
    }
    
    .contact-info_ph li a {
        color: rgb(209, 129, 16);
        text-decoration: none;
    }
    
    .contact-info_ph li a:hover {
        text-decoration: underline;
    }
    .nav-link_ph {
        text-decoration: none;
        
    }


    /* Optional: Focus effect (when clicked, for better accessibility) */
    .nav-button_ph:focus {
        outline: none;
    }

    .nav-button_ph {
        color: white; /* Default color */
        transition: color 0.3s ease-in-out;
    }
   
    .nav-button_ph{
        background-color: black;
        border: black;

    }
    
    .nav-link_ph .nav-button_ph {
        display: block;
    }
    .icon_ph:hover {
        color: rgb(123, 123, 123); /* Change icon color */
    }
    .aboutus_icon_ph{
        color: rgb(209, 129, 16);
    }


    .text-gold_ph {
        color: rgb(209, 129, 16); /* Gold color */
        font-weight: 800;
      }
      
      .text-center_ph {
        text-align: center;
        font-size: 1.2rem;
        font-weight: 700;
      }
      
      .pic-text-g,
      .pic-text-dz,
      .pic-text-c {
        margin: 0 auto;
      }
      
      .pic-text-dz {
        width: 100%;
        max-width: 700px;
      }
      
      .main-header_ph {
        background-color: black;
        background-size: cover;
        color: white;
        text-align: center;
        padding: 3rem 1.5rem;
        max-width: 100%;
        margin: 30px auto;
      }
      
      .content-title_ph {
        color: rgb(209, 129, 16);
      }
      
      .main-header_ph h1 {
        font-size: 1.5rem;
        font-weight: 800;
        text-transform: uppercase;
      }
      .done-works_ph{
        margin-top: -70px;
      }
      .main-header_ph p,
      .main-header_ph .main-text_ph {
        font-size: 1rem;
        line-height: 1.6;
        color: rgba(213, 213, 213, 0.9);
        font-weight: 800;
        max-width: 90%;
        margin: 0 auto;
        margin-bottom: -70px;
      }
      
      .products_ph,
      .final-thoughts_ph {
        background-color: #000;
        color: #ccc;
        padding: 4rem 1rem;
      }
      
      .products_ph h2,
      .final-thoughts_ph h2 {
        font-size: 1.7rem;
        text-align: center;
      }
      
      .product-item_ph {
        width: 10%;
        max-width: 500px;
        margin: 0 auto;
        text-align: center;
      }
      
      .product-item_ph img {
        width: 10%;
        height: auto;
        transition: transform 0.3s ease, opacity 0.3s ease;
      }
      
      .product-item_ph img:hover {
        transform: scale(1.05);
        opacity: 0.8;
      }
      
      .product-item_ph p {
        margin-top: 1rem;
        font-size: 1.25rem;
      }
      
      .gallery_ph {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: start;
      }
      
      .work-item_ph img {
        width: 90%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border-radius: 1.5rem;
        opacity: 0.8;
        transition: 0.3s ease;
      }


      
      .image-container_ph,
      .image-container-stones_ph,
      .pictures-section_ph {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        padding: 1rem 1rem;
      }
      
      .container-text_ph,
      .container-text-pic_ph {
        text-align: center;
        font-size: 0.8rem;
        font-weight: 600;
        color: rgb(190, 190, 190);
      }
      .py-10_ph{
        margin-top: 0px;
      }
      .whole-pictures_ph .container-text-pic_ph {
        margin-top: -10px;
      }
      
      
      .right-pic_ph,
      .left-image_ph,
      .content-little-pic_ph {
        width: 30%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border-radius: 0.5rem;
      }
      .image-container_ph .content-little-pic_ph{
        width: 21%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border-radius: 0.5rem;
      }
      /* Container layout */
/* Parent container that aligns left & right side by side */
.photo-section {
display: flex;
gap: 1rem;
align-items: flex-start;
flex-wrap: wrap;
}

/* Left side (big image) */
.left-part_ph {
flex: 2;
max-width: 50%;
}

.left-image_ph {
width: 100%;
aspect-ratio: 1 / 1;
object-fit: cover;
border-radius: 0.5rem;
}

/* Right side (4 small images in 2x2 grid) */
.right-part_ph {
flex: 1;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}

.right-pic_ph {
width: 100%;
aspect-ratio: 1 / 1;
object-fit: cover;
border-radius: 0.5rem;
}
@media only screen and (max-width: 380px) {
    .work-item_ph .content-text_ph {
        margin: 10px 10px;
    }
}

.final-thoughts_ph .final{
font-size: 0.8rem;
}
      .work-item_ph .content-text_ph {
        font-size: 0.75rem;
        font-weight: 700;
        color: rgb(190, 190, 190);
        margin: 20px 10px;
        text-align: center;
        margin-bottom: 50px;
      }
      

      
      .content_ph img {
        opacity: 0.7;
      }
      
      .phone_ph {
        display: none;
      }
      
      .section_ph {
        padding: 2rem 1rem;
      }
      .image-container_ph .content-little-pic_ph{
        max-width: 19%;
      }
      .image-container-stones_ph .content-little-pic_ph{
        max-width: 28%;
      }
      @media only screen and (max-width: 340px) {
        .main-header_ph h1 {                
            font-size: 1.3rem;
        }
        .work-item_ph .content-text_ph {
            font-size: 0.6rem;
            margin-top: 5px;
        }
      }
}