header {
    background-color: #333;
    color: white;
    padding: 10px 01px;
    height: vh;
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
}
  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  } 
  
 
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #2979ff, #00c3ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.desktop-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.desktop-nav a:hover {
    background: rgba(41, 121, 255, 0.1);
    color: #2979ff;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
    position: relative;
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, #2979ff, #00c3ff);
    border-radius: 3px;
    transition: all 0.3s ease;
    position: absolute;
    left: 0;
}

.menu-btn span:nth-child(1) { top: 6px; }
.menu-btn span:nth-child(2) { top: 14px; }
.menu-btn span:nth-child(3) { bottom: 6px; }

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    
    background: white;
    box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.backdrop.active {
    opacity: 1;
    visibility: visible;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #2979ff;
    cursor: pointer;
}

.menu-content {
    padding: 1rem;
}

.menu-content a {
    display: block;
    padding: 1rem;
    color: #333;
    text-decoration: none;
    border-radius: 0.5rem;
    margin: 0.5rem 0;
    transition: all 0.3s ease;
}

.menu-content a:hover {
    background: rgba(41, 121, 255, 0.1);
    color: #2979ff;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .menu-btn {
        display: block;
    }
    
    .navbar {
        padding: 1rem;
    }
}

  
.bg {
    width: 99%;
    height: 99vh;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url("http:\\trade.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-size: 99em 46em;
}
.slider {
    width: 100%;
   
    height: 100vh;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-size: cover;
    

}

.slides {
    display: flex;
    width: 100%;
   
    height: 100vh;
    animation: slide 30s infinite;
}

.slide {
    width: 100%;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
   
    height: 100vh;
    display: block;
}

@keyframes slide {
    0% {
        transform: translateX(0%);
    }
    25% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(-200%);
    }
    75% {
        transform: translateX(-300%);
    }
    100% {
        transform: translateX(0%);
    }
}

.pnp {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url("ulogo.png");
    background-size: contain; 
    background-repeat: no-repeat;
    width: 40em; /* Customize width */
    height: 40em; /* Customize height */
    z-index: 10; /* Keeps the logo on top of the slides */
}
.pnp-slogan {
    position: absolute;
    top: 425px; 
    left: 50%;
    transform: translateX(-50%);
    font-size: 22px;
    font-weight: bold;
    color: rgb(26, 4, 91);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
/* Position Contact Us in front of the logo */
.contact-us {
    position: absolute;
    top: 77%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust alignment */
    z-index: 1000; /* Ensure it's above the logo */
}

.contact-button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: transparent;
    color: #058cf3;
    border: 2px solid #0a0ef0;
    border-radius: 5px;
    cursor: pointer;
    
    transition: background-color 0.3s, color 0.3s;
}

.contact-button:hover {
    background-color: #0078D4;
    color: white;
}

/* Dropdown options style */
.contact-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    z-index: 1000;
}

.contact-options a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
}

.contact-options a img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.contact-options a:hover {
    background-color: #f1f1f1;
}

/* Show dropdown on hover */
.contact-us:hover .contact-options {
    display: block;
}

.new-contact-us {
    position: absolute;
    
    margin-top: 2.50%;
    margin-left: 131.5%;
    height: 15px;
    display: inline-block;
    position: relative;
}

.new-contact-button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: transparent;
    color: #f1f3f5;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

/* .new-contact-button:hover {
    background-color: #0078D4;
    color: white;
} */

.new-contact-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    z-index: 1000;
}

.new-contact-options a {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
}

.new-contact-options a img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.new-contact-options a:hover {
    background-color: #f1f1f1;
}

.new-contact-us:hover .new-contact-options {
    display: block;
}




.hero {
    background-color: #f4f4f4;
    text-align: center;
    padding: 50px 20px;
}

.hero h1 {
    margin: 0;
}

.section {
    padding: 20px;
    text-align: center;
}


body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    padding: 20px;
}

.dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.item-back{
    background-color: #fe8205;
}
.dashboard {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.item-card {
    width: calc(33.333% - 15px);
    margin-bottom: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s;
}

.item-card:hover {
    transform: scale(1.05);
}

.item-photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.item-details {
    padding: 15px;
}

.item-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.item-description {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

.h1siz{
    margin-left: 45%;
    font-weight: bold;
}

.chatbox-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.chat-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    width: 65px;
    height: 65px;
}


.whatsapp-button {

    background-color: #f3f5f4;
}

.email-button {
    background-color: #0078D4;
}

.chat-button img {
    width: 46px;
    height: 46px;
}

.chatbox-options {
    display: none;
    flex-direction: column;
    position: absolute;
    bottom: 70px;
    right: 0;
}

.chatbox-options.active {
    display: flex;
}

.h2fix{
    /* margin-left: 80%; */

    /* background-repeat: no-repeat; */
    background-image: url("office.webp");
    height: 100%;
    width: 100%;
}
.inq {
    margin-left: 80%;
    
}
.contact-section {
    margin-left: 60%;
    margin-bottom: 1%;
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, 0.7));
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    margin-left: 10%;
    position: relative;
    z-index: 1;
}

/* Keep your existing form styles, but modify the input widths */
.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
}

/* Add responsive design */
@media (max-width: 768px) {
    .contact-section {
        background-position: 65% center;
    }
    
    .contact-form {
        margin: 0 auto;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 20px;
    }
}
.contact-form h2 {
    margin-bottom: 15px;
    font-size: 24px;
    color: #333;
}
.contact-form label {
    display: block;
    margin-bottom: 5px;
    color: #666;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #5ab4bd;
    outline: none;
}
.contact-form button {
    width: 100%;
    padding: 12px;
    background-color: #5ab4bd;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.contact-form button:hover {
    background-color: #469ca3;
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 20px;
    margin-top: 20px;
}


@media screen and (max-width: 1200px) {

    .pnp {
        width: 30em;
        height: 30em;
    }

    .pnp-slogan {
        top: 350px;
        font-size: 18px;
    }

    .item-card {
        width: calc(50% - 15px);
    }

    .contact-form {
        margin-left: 60%;
        max-width: 350px;
    }
}

/* Media Queries for tablet portrait */
@media screen and (max-width: 768px) {
    header {
        padding: 10px 5px;
    }

    nav a {
        margin: 0 10px;
        font-size: 14px;
    }

    .pnp {
        width: 20em;
        height: 20em;
    }

    .pnp-slogan {
        top: 250px;
        font-size: 16px;
    }

    .bg {
        background-size: cover;
    }

    .contact-form {
        margin-left: 50%;
        max-width: 300px;
    }

    .h1siz {
        margin-left: 35%;
    }

    .h2fix {
        margin-left: 70%;
    }

    .item-photo {
        height: 200px;
    }
}

/* Media Queries for mobile devices */
@media screen and (max-width: 480px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    nav a {
        margin: 5px 0;
    }

    .pnp {
        width: 15em;
        height: 15em;
    }

    .pnp-slogan {
        top: 200px;
        font-size: 14px;
    }

    .item-card {
        width: 100%;
    }

    .contact-form {
        margin-left: 0;
        max-width: 100%;
    }

    .h1siz {
        margin-left: 25%;
    }

    .h2fix {
        margin-left: 60%;
    }

    .contact-button {
        font-size: 14px;
        padding: 8px 16px;
    }

    .new-contact-button {
        font-size: 14px;
        padding: 8px 16px;
    }

    .chatbox-container {
        bottom: 10px;
        right: 10px;
    }

    .chat-button {
        width: 50px;
        height: 50px;
    }

    .chat-button img {
        width: 35px;
        height: 35px;
    }

    .slides {
        height: 70vh;
    }

    .slide img {
        height: 70vh;
    }
}

/* Media Query for very small devices */
@media screen and (max-width: 320px) {
    .pnp {
        width: 12em;
        height: 12em;
    }

    .pnp-slogan {
        top: 180px;
        font-size: 12px;
    }

    .contact-options a,
    .new-contact-options a {
        padding: 8px 12px;
        font-size: 12px;
    }

    .item-photo {
        height: 160px;
    }
}

/* Media Query for landscape orientation on mobile */
@media screen and (max-height: 480px) and (orientation: landscape) {
    .slides {
        height: 100vh;
    }

    .slide img {
        height: 100vh;
    }

    .pnp {
        top: 50%;
        width: 15em;
        height: 15em;
    }

    .pnp-slogan {
        top: 160px;
    }
}