* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-blue: #032A4E;
    --prestige-gold: #D9973A;
    --light-gold: #EBC06A;
    --ocean-blue: #18A7A1;
    --charcoal: #2A2A2A;
    --light-gray: #C4C4C4;
    --pure-white: #FFFFFF;
    --off-white: #F7F7F7;
    
    /* Legacy mappings for gradual transition */
    --primary-dark: #032A4E;
    --secondary-dark: #1E293B;
    --gold: #D9973A;
    --gold-light: #EBC06A;
    --gold-dark: #18A7A1;
    --text-light: #FFFFFF;
    --text-gray: #C4C4C4;
    --text-dark: #2A2A2A;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--navy-blue);
    color: var(--pure-white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 24px;
}

.sub-heading, .section-subtitle {
    font-family: 'Montserrat', sans-serif;
}

html {
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.header {
    background: transparent !important;
    padding: 5px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: var(--navy-blue) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--prestige-gold);
}

.header.scrolled .main-nav a {
    color: #ffffff;
}

.header.scrolled .main-nav a:hover,
.header.scrolled .main-nav a.active {
    color: var(--prestige-gold);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 130px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}


.brand-name {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    line-height: 1;
}

.brand-subtitle {
    font-size: 10px;
    font-weight: 400;
    color: var(--text-gray);
    letter-spacing: 1.5px;
    line-height: 1;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover,
.main-nav a.active {
    color: #0f172a;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--gold);
    transition: all 0.3s ease;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 42, 78, 0.7) 0%, rgba(3, 42, 78, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.hero-title .brand-highlight {
    color: var(--prestige-gold);
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: var(--pure-white);
    font-weight: 400;
}

.welcome-section {
    padding: 80px 0;
    background-color: var(--secondary-dark);
}

.welcome-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
}

.welcome-image {
    width: 100%;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    height: 100%;
}

.welcome-image img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    border: none;
    border-radius: 15px;
    display: block;
}

@keyframes gentleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes goldGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.6), 0 0 30px rgba(212, 175, 55, 0.4);
    }
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.welcome-content h2 {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 30px;
    position: relative;
    font-weight: 700;
    letter-spacing: 0.5px;
    /* animation: gentleFadeIn 1s ease-out, goldGlow 3s ease-in-out infinite; */
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    transition: all 0.5s ease;
}


.welcome-content p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.9;
    text-align: justify;
    animation: gentleFadeIn 1s ease-out 0.3s backwards;
    transition: color 0.3s ease;
}


.mission-vision-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.tab-btn {
    flex: 1;
    padding: 10px 20px;
    background-color: var(--secondary-dark);
    color: var(--text-gray);
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.tab-btn.active {
    background-color: var(--gold);
    color: var(--primary-dark);
}

.tab-content {
    background-color: var(--secondary-dark);
    padding: 20px;
    border-radius: 8px;
    min-height: 100px;
    border: 1px solid var(--prestige-gold);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

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

.tab-pane p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

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

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    width: 100%;
    max-width: 100%;
}

.contact-info-item {
    background-color: var(--secondary-dark);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--prestige-gold);
    transition: all 0.3s ease;
}


.contact-info-item .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-info-item h4 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-info-item p {
    color: var(--text-gray);
    font-size: 14px;
}

.contact-info-item a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--gold);
    text-decoration: none;
}

.highlights-section {
    padding: 80px 0;
    background-color: var(--primary-dark);
}

.section-title {
    font-size: 36px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 50px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 100%;
}

.highlight-card {
    background-color: var(--secondary-dark);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--prestige-gold);
    transition: all 0.3s ease;
}


.highlight-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.highlight-card h3 {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 15px;
}

.highlight-card p {
    color: var(--text-gray);
    font-size: 14px;
}

.about-section {
    padding: 80px 0;
    background-color: var(--secondary-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 30px;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 15px;
}

.about-text ul {
    list-style: none;
    margin: 20px 0;
}

.about-text ul li {
    color: var(--text-gray);
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.about-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}


.values-section {
    padding: 80px 0;
    background-color: var(--secondary-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 100%;
}

.value-card {
    background-color: var(--secondary-dark);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--prestige-gold);
    transition: all 0.3s ease;
}


.value-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.value-card h3 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-gray);
    font-size: 14px;
}

.page-header {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    padding: 140px 0 60px;
    text-align: center;
    border-bottom: none;
    margin-top: 0;
}

.page-header h1 {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-gray);
}

.about-detail-section {
    padding: 80px 0;
    background-color: var(--primary-dark);
}

.about-detail-section .about-content {
    display: block;
    max-width: 900px;
    margin: 0 auto;
}

.about-detail-section h2 {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 30px;
}

.about-detail-section p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 15px;
}

.about-highlight {
    background-color: var(--secondary-dark);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
    margin: 30px 0;
}

.about-highlight h3 {
    color: var(--gold);
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-list {
    list-style: none;
    margin: 20px 0;
}

.feature-list li {
    color: var(--text-gray);
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.mv-box {
    background-color: var(--secondary-dark);
    padding: 40px;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.mv-box h3 {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 20px;
}

.mv-box p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
}

.values-detail {
    margin-top: 60px;
}

.values-detail h2 {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 40px;
    text-align: center;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-item {
    background-color: var(--secondary-dark);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}


.value-item h4 {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 15px;
}

.value-item p {
    color: var(--text-gray);
    font-size: 14px;
}

.home-industries-section {
    padding: 80px 0;
    background-color: var(--primary-dark);
}

.home-products-section {
    padding: 80px 0;
    background-color: var(--secondary-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 16px;
    max-width: 800px;
    margin: -30px auto 50px;
    line-height: 1.6;
}

.home-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    width: 100%;
    max-width: 100%;
}

.home-item-card {
    background-color: var(--secondary-dark);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--prestige-gold);
    transition: all 0.3s ease;
}

.home-products-section .home-item-card {
    background-color: var(--primary-dark);
}


.home-item-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.home-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}


.home-item-content {
    padding: 25px;
}

.home-item-content h3 {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 10px;
}

.home-item-content p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

.section-cta {
    text-align: center;
    margin-top: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--prestige-gold) 0%, var(--light-gold) 100%);
    color: var(--navy-blue);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(217, 151, 58, 0.4);
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--prestige-gold) 100%);
}

.no-data-text {
    text-align: center;
    color: var(--text-gray);
    font-size: 16px;
    padding: 40px 20px;
}

.contact-section {
    padding: 80px 85px;  
    background-color: var(--primary-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-box h2 {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 20px;
}

.contact-info-box > p {
    color: var(--text-gray);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
    background-color: var(--secondary-dark);
    padding: 25px;
    border-radius: 10px;
}

.contact-icon {
    font-size: 30px;
    flex-shrink: 0;
}

.contact-text h4 {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-text p,
.contact-text a {
    color: var(--text-gray);
    font-size: 14px;
    text-decoration: none;
}

.contact-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.contact-link:hover {
    color: var(--gold);
    /* text-decoration: underline; */
}

.contact-text a:hover {
    color: var(--gold);
}

.contact-form-box {
    background-color: var(--secondary-dark);
    padding: 40px;
    border-radius: 10px;
}

.contact-form-box h3 {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 30px;
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

.alert-success {
    background-color: rgba(24, 167, 161, 0.15);
    border: 2px solid var(--ocean-blue);
    color: #4ade80;
}

.alert-error {
    background-color: rgba(239, 68, 68, 0.15);
    border: 2px solid #ef4444;
    color: #fca5a5;
}

.alert ul {
    margin: 0;
    padding-left: 20px;
}

.alert li {
    margin: 5px 0;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-dark);
    border: 2px solid transparent;
    border-radius: 5px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-light);
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--prestige-gold) 0%, var(--light-gold) 100%);
    color: var(--navy-blue);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(217, 151, 58, 0.4);
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--prestige-gold) 100%);
}

.products-section,
.industries-section {
    padding: 60px 0;
}

.industry-products-section {
    padding: 80px 0;
    background-color: var(--secondary-dark);
}

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

.section-header h2 {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
}

.products-grid,
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 100%;
}

.main-industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 60px;
}

.product-card,
.industry-card {
    background-color: var(--secondary-dark);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--prestige-gold);
    transition: all 0.3s ease;
}

.main-industry-card {
    background-color: var(--secondary-dark);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--prestige-gold);
    transition: all 0.4s ease;
    height: 100%;
}

.main-industry-card:hover {
    transform: translateY(-8px);
    border-color: var(--prestige-gold);
    box-shadow: 0 15px 40px rgba(217, 151, 58, 0.3);
}

.main-industry-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.main-industry-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.main-industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.main-industry-card:hover .main-industry-image img {
    transform: scale(1.1);
}

.industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    padding: 40px;
    transition: background 0.4s ease;
}

.main-industry-card:hover .industry-overlay {
    background: linear-gradient(to bottom, rgba(217, 151, 58, 0.2) 0%, rgba(3, 42, 78, 0.95) 100%);
}

.industry-overlay-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.industry-overlay-content p {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.explore-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--prestige-gold) 0%, var(--light-gold) 100%);
    color: var(--navy-blue);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.main-industry-card:hover .explore-btn {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(217, 151, 58, 0.4);
}


.product-image,
.industry-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-image img,
.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-dark);
    color: var(--text-gray);
}

.placeholder-image span {
    font-size: 40px;
    margin-bottom: 8px;
}

.placeholder-image p {
    font-size: 12px;
    color: var(--text-dark);
}


.product-content,
.industry-content {
    padding: 25px;
}

.product-content h3,
.industry-content h3 {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 15px;
}

.product-content p,
.industry-content p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.product-category {
    display: inline-block;
    background-color: var(--gold);
    color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-card-link,
.industry-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.read-more {
    display: inline-block;
    color: var(--gold);
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
}


.detail-section {
    padding: 80px 0;
    background-color: var(--primary-dark);
}

.detail-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.detail-image-section {
    position: relative;
}

.detail-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.detail-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--secondary-dark);
    border-radius: 15px;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.detail-placeholder span {
    font-size: 80px;
    margin-bottom: 15px;
}

.detail-placeholder p {
    color: var(--text-gray);
    font-size: 16px;
}

.detail-text-section h2 {
    color: var(--gold);
    font-size: 32px;
    margin-bottom: 30px;
    border-bottom: none;
    padding-bottom: 15px;
}

.detail-text-section h3 {
    color: var(--gold);
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.detail-info-item {
    margin-bottom: 20px;
    padding: 15px;
    background-color: var(--secondary-dark);
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.detail-info-item strong {
    color: var(--gold);
    font-size: 16px;
    margin-right: 10px;
}

.category-tag {
    display: inline-block;
    background-color: var(--gold);
    color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.detail-description {
    margin-top: 30px;
}

.detail-description p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

.detail-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-back,
.btn-contact {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-back {
    background-color: var(--secondary-dark);
    color: var(--text-light);
    border: none;
}

.btn-back:hover {
    background-color: var(--prestige-gold);
    color: var(--navy-blue);
    transform: translateY(-3px);
}

.btn-contact {
    background: linear-gradient(135deg, var(--prestige-gold) 0%, var(--light-gold) 100%);
    color: var(--navy-blue);
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(217, 151, 58, 0.4);
    background: linear-gradient(135deg, var(--light-gold) 0%, var(--prestige-gold) 100%);
}

.product-category-badge {
    display: inline-block;
    background-color: var(--gold);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
}

.no-data {
    text-align: center;
    padding: 60px 20px;
}

.no-data p {
    color: var(--text-gray);
    font-size: 18px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 0px 0 60px;
    background-color: var(--primary-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--secondary-dark);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--prestige-gold);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(217, 151, 58, 0.2);
    border-color: var(--light-gold);
}

.testimonial-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(217, 151, 58, 0.2);
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--prestige-gold);
}

.testimonial-image-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--prestige-gold) 0%, var(--light-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--navy-blue);
    font-family: 'Playfair Display', serif;
}

.testimonial-info {
    text-align: center;
}

.testimonial-info h4 {
    color: var(--prestige-gold);
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 5px;
}

.testimonial-position {
    color: var(--light-gray);
    font-size: 14px;
    margin-bottom: 3px;
}

.testimonial-company {
    color: var(--text-gray);
    font-size: 13px;
    font-style: italic;
}

.testimonial-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.testimonial-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    font-style: italic;
    text-align: center;
}

.footer {
    background-color: var(--secondary-dark);
    padding: 45px 0 20px;
    border-top: 1px solid var(--prestige-gold);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
    justify-items: start;
}

.footer-section h3 {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.footer-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-content {
    flex: 1;
}

.footer-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--gold);
    text-decoration: none;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.footer-section ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 14px;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
color: var(--gold);
text-decoration: none;
}

.footer-social-inline {
margin-top: 20px;
padding-top: 15px;
border-top: 1px solid rgba(217, 151, 58, 0.15);
}

.social-icons {
display: flex;
gap: 12px;
flex-wrap: wrap;
}

.social-icon {
width: 36px;
height: 36px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
transition: all 0.3s ease;
text-decoration: none;
}

.social-icon.facebook {
background-color: #1877F2;
color: #FFFFFF;
}

.social-icon.facebook:hover {
background-color: #145dbf;
transform: translateY(-3px);
box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.social-icon.twitter {
background-color: #1DA1F2;
color: #FFFFFF;
}

.social-icon.twitter:hover {
background-color: #1a8cd8;
transform: translateY(-3px);
box-shadow: 0 4px 12px rgba(29, 161, 242, 0.4);
}

.social-icon.linkedin {
background-color: #0A66C2;
color: #FFFFFF;
}

.social-icon.linkedin:hover {
background-color: #084d92;
transform: translateY(-3px);
box-shadow: 0 4px 12px rgba(10, 102, 194, 0.4);
}

.social-icon.instagram {
background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
color: #FFFFFF;
}

.social-icon.instagram:hover {
background: linear-gradient(45deg, #d4711f, #c41f6a, #6b2a8f, #4149b8);
transform: translateY(-3px);
box-shadow: 0 4px 12px rgba(221, 42, 123, 0.4);
}

.social-icon svg {
width: 18px;
height: 18px;
}

.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(217, 151, 58, 0.2);
color: var(--text-gray);
font-size: 14px;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .brand-title {
        font-size: 18px;
    }
    
    .brand-subtitle {
        font-size: 8px;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--secondary-dark);
        padding: 20px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .home-items-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-grid,
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .detail-image-section {
        position: relative;
        top: 0;
    }
    
    .detail-text-section h2 {
        font-size: 26px;
    }
    
    .detail-actions {
        flex-direction: column;
    }
    
    .btn-back,
    .btn-contact {
        width: 100%;
        text-align: center;
    }
    
    .welcome-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .welcome-content h2 {
        font-size: 28px;
    }
    
    .tab-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .tab-btn {
        font-size: 16px;
        padding: 12px 20px;
    }
    
    .tab-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .highlights-grid,
    .values-grid,
    .values-list,
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .products-grid,
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .main-industries-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .main-industry-image {
        height: 400px;
    }
    
    .industry-overlay-content h2 {
        font-size: 28px;
    }
    
    .industry-overlay-content p {
        font-size: 14px;
    }
    
    .hero-section {
        height: 400px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .contact-info-item,
    .highlight-card,
    .value-card {
        padding: 20px;
    }
}
