body {
    margin: 0;
    font-family: 'Instrument Sans', Arial, sans-serif;
    background: #181818;
    color: #fff;
    overflow-x: hidden;
}

.header {
    background: #181818;
    padding: 24px 0 20px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
    

.header-title {
    color: #fff;
    font-size: 22px;
    letter-spacing: 0.2em;
    font-weight: 400;
}

.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-bottom: 50px;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    color: #fff;
    max-width: 800px;
    margin-right: 40px;
    margin-left: 0;
    text-align: left;
    padding-right: 400px;
    padding-left: 110px;
    padding-bottom: 8px;
}

.hero-content h1 {
    padding-top: 60px;
    font-size: 40px;
    font-weight: 440;
    margin-bottom: 31px;
    letter-spacing: 0.16em; /* Subtle letter spacing for modern look */
}

.subtitle {
    font-size: 18px;
    font-style: light;
    color: #e0e0e0;
    margin-bottom: 36px;
    letter-spacing: 0.05em; /* Subtle letter spacing */
    line-height: 1.8; /* Improved line height */;
}

.contact-btn {
    display: inline-block;
    background: #e38b10;
    color: #fff;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 0 2px 2px #3a301e;
    transition: background 0.2s, box-shadow 0.2s;
    letter-spacing: 0.05em; /* Button letter spacing */
}

.contact-btn:hover {
    background: #e89c1c;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.tabs-container {
    max-width: 900px;
    margin: 48px auto 0 auto;
    background: #232323;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.18);
    padding: 32px 24px 24px 24px;
    margin-bottom: 50px;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
    justify-content: center;
}

.tab {
    background: #2d2d2d;
    color: #fff;
    border: none;
    outline: none;
    padding: 14px 28px;
    border-radius: 8px 8px 0 0;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    border-bottom: 3px solid transparent;
}

.tab.active, .tab:hover {
    background: #f59612;
    color: #181818;
    border-bottom: 3px solid #fff;
}

.tab-content {
    display: none;
    background: #232323;
    border-radius: 0 0 12px 12px;
    padding: 36px 24px 24px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    animation: fadeIn 0.4s;
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    color: #f9ae45;
    font-size: 26px;
    margin-bottom: 18px;
    font-weight: 500;
    letter-spacing: 0.07em;
}

.tab-content p {
    font-size: 17px;
    color: #fff;
    margin-bottom: 28px;
    line-height: 1.7;
    letter-spacing: 0.03em;
}

.view-more-btn {
    display: inline-block;
    background: #e38b10;
    color: #fff;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    box-shadow: 0 2px 2px #3a301e;
    transition: background 0.2s, box-shadow 0.2s;
    letter-spacing: 0.05em;
}

.view-more-btn:hover {
    background: #e89c1c;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

@media (max-width: 700px) {
    .tabs-container {
        padding: 18px 4px 12px 4px;
    }
    .tab-content {
        padding: 18px 4px 12px 4px;
    }
    .tabs {
        gap: 6px;
    }
    .tab {
        padding: 10px 10px;
        font-size: 14px;
    }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px);}
    to { opacity: 1; transform: translateY(0);}
}


.contact-section {
    background: #111;
    padding: 56px 0 56px 0;
    text-align: center;
}

.contact-section h2 {
    color: #ffae3b;
    font-size: 26px;
    letter-spacing: 2px;
    margin-bottom: 48px;
    font-weight: 500;
}

.contact-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-card {
    background: #232323;
    border-radius: 16px;
    width: 230px;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.12);
    padding: 32px 18px;
    color: #fff;
    font-size: 16px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.contact-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
    transform: translateY(-6px) scale(1.03);
}

.contact-card i {
    font-size: 32px;
    color: #fff;
    margin-bottom: 50px;
}

.contact-info {
    color: #fff;
    font-family: 'Instrument Sans', Arial, sans-serif;
    font-size: 20px;
    letter-spacing: 0.04em;
    word-break: break-all;
}

@media (max-width: 900px) {
    .contact-row {
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }
    .contact-card {
        width: 90vw;
        max-width: 340px;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(24,24,24,0.95);
    justify-content: center;
    align-items: center;
    overflow: auto;
}
.modal-content {
    background: #232323;
    border-radius: 18px;
    padding: 48px 40px;
    max-width: 900px;
    width: 96vw;
    margin: 60px auto;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    text-align: center;
}



.modal-images {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-bottom: 10px;
}
.modal-img {
    width: 420px;
    height: 210px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid #f9ae45;
    transition: transform 0.2s;
    /* Rectangle shape: width is double the height */
}
.modal-img:hover {
    transform: scale(1.06);
    border-color: #fff;
}

.modal-content h3 {
    
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.07em;
    margin-top: 30px;
    margin-bottom: 18px;
    font-family: 'Instrument Sans', Arial, sans-serif;
    font-style: normal;
    font-stretch: normal;
    color: #ffae3b;
    text-align: left;
    
}
.modal-content ul {
    text-align: left;
    color: #fff;
    margin: 0 auto 0 auto;
    padding-left: 20px;
    font-size: 16px;
    letter-spacing: 0.07em;
    line-height: 1.6;
    font-family: 'Instrument Sans', Arial, sans-serif;
    font-style: normal;
}
.modal-content .close {
    position: absolute;
    top: 18px; right: 22px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0; top: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 4px 32px #000;
}
.lightbox-close {
    position: absolute;
    top: 40px; right: 60px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 2001;
}
@media (max-width: 700px) {
    .modal-content {
        padding: 12px 2vw;
        max-width: 98vw;
    }
    .modal-images {
        flex-direction: column;
        gap: 10px;
    }
    .modal-img {
        width: 90vw;
        height: 160px;
    }
    .lightbox-close {
        top: 10px; right: 20px;
        font-size: 32px;
    }
}
/* Custom Solutions - ensure images look good in cards */
.product-card img {
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    transition: transform 0.18s, box-shadow 0.18s;
}
.product-card img:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 45px rgba(0,0,0,0.22);
}


/*header*/
.beautiful-header {
    display: flex;
    align-items: center;
    justify-content: center; /* Center content horizontally */
    background: #181818;
    padding: 0 32px;
    height: 72px;
    position: fixed;      /* Changed from sticky to fixed */
    top: 0;
    left: 0;
    width: 100%;          /* Ensure full width */
    z-index: 1000;
    
}
.header-left {
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}
.header-title {
    margin: 0 auto;
    color: #fff;
    font-size: 1.7em;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-align: center;
    flex: none;
}

.header-feature-link:hover {
    color: #fff;
}
.quick-links,
.contact-letter {
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin: 36px auto 24px auto;
    max-width: 1000px;
    padding-left: 70px;
    padding-right: 70px;
    padding-bottom: 20px;
    font-family: 'Instrument Sans', Arial, sans-serif;
    text-align: center;
    margin-top: 40px;
    
}

.contact-letter-inner {
    text-align: left;
}

.contact-letter-inner h2 {
    color: #fcf9f4;
    margin-bottom: 12px;
    font-size: 1.3em;
    letter-spacing: 1px;
}

.quick-links-group {
    margin: 10px 0;
    font-size: 0.9em;
    
}

.quick-links-group strong {
    color: #f9f8f7;
    margin-right: 8px;
    letter-spacing: 0.06em;
}

.quick-links-group a,
.contact-details a {
    color: #f39b30;
    text-decoration: none;
    margin: 0 3px;
    transition: color 0.2s;
    font-weight: 500;
}

.quick-links-group a:hover,
.contact-details a:hover {
    color: #e65100;
    text-decoration: underline;
}

.contact-letter-inner p {
    color: #f8f6f6;
    margin: 8px 0;
    font-size: 1.07em;
}

.contact-details {
    margin: 18px 0 12px 0;
    font-size: 0.9em;
}

.contact-details div {
    margin-bottom: 6px;
}

.contact-details a {
    color: #fb8c00;
    text-decoration: none;
    margin: 0 3px;
    transition: color 0.2s;
    font-weight: 500;
}

.contact-details a:hover {
    color: #e65100;
    text-decoration: underline;
}

.contact-letter-inner p:last-child {
    margin-top: 18px;
}

.contact-letter-inner span {
    color: #ffae3b;
    font-weight: bold;
}

.home-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    margin-left: 8px;
    height: 45px;
    width: 45px;
    text-decoration: none;
}
.home-icon-link i {
    color: #fff;
    font-size: 1.3em;
    transition: color 0.2s;
}
.home-icon-link:hover i {
    color: #ffae3b;
}