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

.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: 110px;
    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);
}

.about {
    background: #181818;
    padding: 36px 0 60px 0;
    text-align: center;
}

.about h2 {
    color: #f59612;
    font-size: 30px;
    letter-spacing: 2px;
    margin-bottom: 32px;
    font-weight: 500;
}

.about-card {
    background: #3d3d3d8c;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Remove max-width and margin: 0 auto; */
    width: calc(100vw - 4cm); /* 3cm on each side */
    margin-left: 2cm;
    margin-right: 2cm;
    padding: 32px 32px;
    box-sizing: border-box;
    gap: 32px;
}

.about-text {
    text-align: left;
    font-size: 18px;
    font-style: light;
    color: #fff;
    line-height: 1.9;
    letter-spacing: 0.05em;
    flex: 2;
}

.about-highlight {
    color: #f9ae45;
    font-weight: 500;
    font-size: 23px;
    letter-spacing: 0.05em;
}

.about-img img {
    width: 400px;
    height: 350px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #fff;
    background: #fff;
}

@media (max-width: 900px) {
    .about-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    .about-img img {
        width: 100%;
        height: auto;
    }
}

.services {
    background: #351F04;
    padding: 56px 0 56px 0;
    text-align: center;
}

.services h2 {

    color: #f59612;
    font-size: 30px;
    letter-spacing: 2px;
    margin-bottom: 50px;
    margin-top: 10px;
    font-weight: 500;
}

.services-row {
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 300px;
    height: 400px;
    border-radius: 13px;
    overflow: hidden;
    background: #222;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    text-decoration: none;
    position: relative;
    border: 2px solid #ffffff;
    transition: transform 0.18s, box-shadow 0.18s;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 45px rgba(0,0,0,0.22);
    border-color: #ebb16b;
}

.service-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}

.service-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 90px;
    max-height: 110px;
    padding: 24px 18px 18px 18px;
    background: linear-gradient(
        0deg,
        rgba(0,0,0,0.92) 60%,
        rgba(0,0,0,0.7) 75%,
        rgba(0,0,0,0.4) 88%,
        rgba(0,0,0,0.0) 100%
    );
    color: #fff;
    font-family: 'Instrument Sans', Arial, sans-serif;
    font-size: 22px;
    font-weight: 470;
    line-height: 1.4;
    letter-spacing: 0.14em;
    z-index: 2;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    text-align: left;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), background 0.5s cubic-bezier(0.4,0,0.2,1);
}

.service-card:hover .service-label {
    max-height: 220px;
    background: linear-gradient(
        0deg,
        rgba(0,0,0,0.92) 60%,
        rgba(0,0,0,0.7) 75%,
        rgba(0,0,0,0.4) 88%,
        rgba(0,0,0,0.0) 100%
    );
}

.service-desc {
    display: block;
    opacity: 0;
    max-height: 0;
    transition: opacity 0.5s cubic-bezier(0.4,0,0.2,1), max-height 0.5s cubic-bezier(0.4,0,0.2,1), padding 0.5s cubic-bezier(0.4,0,0.2,1);
    font-size: 14px;
    font-weight: 380;
    letter-spacing: 0.04em;
    margin-top: 8px;
    line-height: 1.5;
    padding-right: 30px; /* Add right padding */
    overflow: hidden;
}

.service-card:hover .service-desc {
    opacity: 1;
    max-height: 200px;
    padding-right: 30px;
}
   
@media (max-width: 900px) {
    .services-row {
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }
    .service-card {
        width: 90vw;
        max-width: 340px;
        height: 220px;
    }
}

.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;
    }
}

/*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;
}
.menu-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
    margin-right: 18px;
    font-size: 1.7em;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.header-features {
    display: flex;
    gap: 32px;
}
.header-feature-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #f9ae45;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    transition: color 0.2s;
}
.header-feature-link i {
    font-size: 1.4em;
    margin-bottom: 2px;
}
.header-feature-link:hover {
    color: #fff;
}
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    background-color: #181818;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 80px;
    box-shadow: 2px 0 16px rgba(0,0,0,0.18);
}
.sidebar a {
    padding: 18px 32px;
    text-decoration: none;
    font-size: 1.2em;
    color: #f9ae45;
    display: block;
    transition: 0.2s;
    font-weight: 500;
    letter-spacing: 0.08em;
}
.sidebar a:hover, .sidebar a:focus {
    color: #fff;
    background: #232323;
}
.sidebar .closebtn {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 2em;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}
.sidebar-overlay {
    display: none;
    position: fixed;
    z-index: 1999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.35);
    transition: 0.3s;
}
@media (max-width: 700px) {
    .sidebar {
        padding-top: 60px;
    }
    .sidebar a {
        font-size: 1em;
        padding: 14px 18px;
    }
}
.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;
}
@media (max-width: 600px) {
    body, html {
        font-size: 16px;
        padding: 0;
        margin: 0;
    }
    .chat-container, .main-content, .header, .footer {
        width: 100%;
        padding: 8px;
        box-sizing: border-box;
    }
    .chat-message, .input-area {
        font-size: 1em;
        width: 100%;
    }
    /* Adjust buttons and inputs */
    button, input, textarea {
        font-size: 1em;
        width: 100%;
        box-sizing: border-box;
    }
    /* Stack elements vertically if needed */
    .some-flex-row {
        flex-direction: column;
        align-items: stretch;
    }
}
@media (max-width: 600px) {
    html {
        font-size: 16px;
    }
    h1, h2, h3, h4, h5, h6 {
        font-size: 1.2em;
    }
    p, li, a, span, div {
        font-size: 1em;
    }
}