:root {
    --primary-emerald-green: #0c5c3a;
    --accent-regal-gold: #d4af37;
    --clean-light-tint: #f4fcf8;
    --dark-charcoal-text: #2d3431;
    --border-grey-muted: #dcdfdc;
    --pure-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--dark-charcoal-text);
    background-color: var(--pure-white);
    line-height: 1.6;
}

.main-header {
    background-color: var(--primary-emerald-green);
    border-bottom: 4px solid var(--accent-regal-gold);
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.brand-logo-zone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo {
    height: 55px;
    width: 55px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--pure-white);
    padding: 2px;
}

.brand-text-title {
    color: var(--pure-white);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-menu-box ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 5px;
}

.nav-menu-box ul li a {
    color: var(--pure-white);
    text-decoration: none;
    padding: 10px 15px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-menu-box ul li a:hover,
.nav-menu-box ul li a.active {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--accent-regal-gold);
}

.dropdown-item {
    position: relative;
}

.dropdown-content-box {
    display: none;
    position: absolute;
    background-color: var(--pure-white);
    min-width: 180px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 4px;
    top: 100%;
    left: 0;
    border-top: 3px solid var(--accent-regal-gold);
    overflow: hidden;
}

.dropdown-content-box a {
    color: var(--dark-charcoal-text) !important;
    padding: 12px 16px !important;
    display: block;
    font-size: 0.9rem !important;
    border-bottom: 1px solid var(--border-grey-muted);
}

.dropdown-content-box a:last-child {
    border-bottom: none;
}

.dropdown-content-box a:hover {
    background-color: var(--clean-light-tint) !important;
    color: var(--primary-emerald-green) !important;
    padding-left: 20px !important;
}

.dropdown-item:hover .dropdown-content-box {
    display: block;
}

.slider-viewport {
    height: 70vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-slide.active-slide {
    opacity: 1;
    z-index: 2;
}

.slide-caption-center {
    text-align: center;
    color: var(--pure-white);
    padding: 20px;
    max-width: 850px;
}

.slide-caption-center h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    color: var(--accent-regal-gold);
}

.slide-caption-center p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

.content-section-padding {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.alternative-bg-tint {
    background-color: var(--clean-light-tint);
    max-width: 100% !important;
    padding: 80px max(20px, calc((100% - 1200px)/2));
}

.section-header-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-title h2 {
    font-size: 2.2rem;
    color: var(--primary-emerald-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.title-underline-decor {
    width: 80px;
    height: 4px;
    background-color: var(--accent-regal-gold);
    margin: 12px auto 0;
    border-radius: 2px;
}

.individual-product-card-block {
    display: none;
    background: #1e1e1e; /* Match user chart background style */
    border: 1px solid #2d2d2d;
    border-radius: 6px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    margin-bottom: 25px;
    animation: fadeInFrame 0.5s ease-in-out forwards;
}

.individual-product-card-block.active-view {
    display: block;
}

@keyframes fadeInFrame {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.individual-product-card-block h3 {
    color: var(--accent-regal-gold);
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.product-description-text {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #dfdfdf;
}

.responsive-table-wrapper {
    overflow-x: auto;
}

.industrial-spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background-color: #1e1e1e;
}

.industrial-spec-table th {
    background-color: var(--accent-regal-gold);
    color: #000;
    text-align: left;
    padding: 14px 18px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid #2d2d2d;
}

.industrial-spec-table td {
    padding: 14px 18px;
    border: 1px solid #2d2d2d;
    font-size: 0.95rem;
    color: #ffffff;
}

.industrial-spec-table tr:nth-child(even) {
    background-color: #252525;
}

.industrial-spec-table strong {
    color: var(--accent-regal-gold);
}

.team-layout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.team-corporate-card {
    background: var(--pure-white);
    border: 1px solid var(--border-grey-muted);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
}

.team-corporate-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-regal-gold);
}

.team-avatar-frame {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid var(--primary-emerald-green);
    background-color: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Keeps faces centered and prevents chopping vertical posture */
}

.team-corporate-card h4 {
    font-size: 1.3rem;
    color: var(--primary-emerald-green);
    margin-bottom: 5px;
}

.designation-label-tag {
    font-size: 0.9rem;
    color: var(--accent-regal-gold);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.team-contact-meta {
    font-size: 0.88rem;
    color: #666;
    border-top: 1px solid var(--border-grey-muted);
    padding-top: 15px;
}

.team-contact-meta p {
    margin-bottom: 6px;
}

.team-contact-meta i {
    color: var(--primary-emerald-green);
    margin-right: 6px;
}

.gallery-responsive-grid-6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

@media(min-width: 992px) {
    .gallery-responsive-grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-photo-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    height: 240px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    cursor: pointer;
    border: 1px solid var(--border-grey-muted);
}

.gallery-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hover-zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 92, 58, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hover-zoom-overlay i {
    color: var(--pure-white);
    font-size: 2rem;
}

.gallery-photo-item:hover img {
    transform: scale(1.08);
}

.gallery-photo-item:hover .hover-zoom-overlay {
    opacity: 1;
}

.certificates-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 15px;
}

.certificate-logo-card {
    background: var(--pure-white);
    border: 1px solid var(--border-grey-muted);
    border-radius: 6px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.certificate-logo-card:hover {
    border-color: var(--primary-emerald-green);
    box-shadow: 0 5px 15px rgba(12,92,58,0.1);
}

.certificate-logo-card img {
    height: 90px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 12px;
}

.certificate-logo-card h5 {
    font-size: 0.9rem;
    color: var(--dark-charcoal-text);
    font-weight: 600;
}

.contact-form-layout-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--pure-white);
    border: 1px solid var(--border-grey-muted);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.06);
}

.corporate-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-split-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.form-group-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-emerald-green);
}

.form-group-field input,
.form-group-field select,
.form-group-field textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-grey-muted);
    border-radius: 4px;
    font-size: 0.95rem;
    background-color: #fafafa;
    outline: none;
    transition: border 0.3s ease;
}

.form-group-field input:focus,
.form-group-field select:focus,
.form-group-field textarea:focus {
    border-color: var(--primary-emerald-green);
    background-color: var(--pure-white);
}

.form-submit-button-emerald {
    background-color: var(--primary-emerald-green);
    color: var(--pure-white);
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-bottom: 3px solid #063d25;
    transition: background 0.3s ease;
}

.form-submit-button-emerald:hover {
    background-color: #09472d;
}

.lightbox-modal-window {
    display: none;
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-image-viewport {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border: 3px solid var(--pure-white);
    border-radius: 4px;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
}

.close-lightbox-trigger {
    position: absolute;
    top: 25px;
    right: 40px;
    color: var(--pure-white);
    font-size: 3.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-lightbox-trigger:hover {
    color: var(--accent-regal-gold);
}

.security-verification-fullscreen {
    display: none;
    position: fixed;
    z-index: 10001;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 92, 58, 0.96);
    align-items: center;
    justify-content: center;
}

.spinner-container-center {
    text-align: center;
    color: var(--pure-white);
    padding: 30px;
}

.loading-double-bounce-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255,255,255,0.2);
    border-top: 5px solid var(--accent-regal-gold);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: rotateSpinner 1s linear infinite;
}

@keyframes rotateSpinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#dynamic-loading-log-text {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.corporate-footer-base {
    background-color: #1a1e1c;
    color: #999;
    text-align: center;
    padding: 25px 20px;
    font-size: 0.88rem;
    border-top: 1px solid #29302d;
}
