/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a1628;
    --primary-light: #1a2d45;
    --secondary-color: #d4af37;
    --secondary-light: #f4d06f;
    --accent-color: #c9a227;
    --text-dark: #1a1a1a;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --bg-light: #fafafa;
    --bg-dark: #0a1628;
    --white: #ffffff;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f4d06f 50%, #d4af37 100%);
    --border-radius: 4px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 16px;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--secondary-color);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 50px;
    width: auto;
    filter: brightness(1.1);
}

.logo-text {
    font-family: 'Georgia', serif;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

nav a:hover,
nav a.active {
    color: var(--secondary-color);
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 7rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23d4af37" opacity="0.1"/></svg>');
    background-size: 30px 30px;
    opacity: 0.5;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.35rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-gold);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23d4af37" opacity="0.1"/></svg>');
    background-size: 30px 30px;
    opacity: 0.5;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.85;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* Products Section */
.products {
    padding: 5rem 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.75rem;
    color: var(--primary-color);
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 1.5rem auto 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid #e5e5e5;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-content {
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
}

.product-category {
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.product-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

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

.about-text h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-weight: 300;
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.feature-icon {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid #e5e5e5;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gold-gradient);
    transition: height 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    height: 100%;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.service-card > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-weight: 300;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.service-features li {
    color: var(--text-dark);
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 0.95rem;
    font-weight: 400;
}

.service-features li:before {
    content: "◆";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-size: 0.7rem;
}

/* Why Choose Us */
.why-choose-us {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.why-choose-us .section-title {
    color: var(--white);
}

.why-choose-us .section-title::after {
    background: var(--gold-gradient);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
}

.benefit-item h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.benefit-item p {
    opacity: 0.85;
    font-weight: 300;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.cta-section p {
    font-size: 1.15rem;
    opacity: 0.85;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-section .cta-button {
    background: var(--gold-gradient);
    color: var(--primary-color);
}

.cta-section .cta-button:hover {
    background: linear-gradient(135deg, #f4d06f 0%, #d4af37 50%, #f4d06f 100%);
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.8;
}

.info-card {
    background-color: var(--white);
    padding: 1.75rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow);
    border-left: 3px solid var(--secondary-color);
}

.info-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.info-value {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form-container {
    /* Container styling */
}

.contact-form {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 3rem;
    border-radius: var(--border-radius);
    color: var(--white);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group select option {
    background: var(--primary-color);
    color: var(--white);
}

.submit-button {
    background: var(--gold-gradient);
    color: var(--primary-color);
    border: none;
    padding: 1.2rem 2rem;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

/* Additional Contact Options */
.additional-contact {
    padding: 5rem 0;
    background-color: var(--white);
}

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-option-card {
    background: linear-gradient(135deg, var(--white) 0%, #fafafa 100%);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #e5e5e5;
}

.contact-option-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.contact-option-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.contact-option-card h3 {
    color: var(--primary-color);
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.contact-option-card p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-weight: 300;
}

.contact-option-value {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1.5rem;
    border-top: 3px solid var(--secondary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--secondary-color);
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    line-height: 1.8;
    font-weight: 300;
    transition: color 0.3s ease;
}

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

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Selection */
::selection {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        gap: 1.5rem;
        font-size: 0.85rem;
    }

    .hero h1 {
        font-size: 2.25rem;
        letter-spacing: 2px;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-options-grid {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 20px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

/* Print Styling */
@media print {
    header,
    footer,
    .contact-form {
        display: none;
    }

    .hero,
    .page-header,
    .cta-section,
    .why-choose-us {
        background: white;
        color: black;
        padding: 2rem 0;
    }

    .products,
    .about,
    .contact,
    .services,
    .additional-contact,
    .faq-section {
        page-break-inside: avoid;
    }

    body {
        background: white;
    }

    .product-card,
    .service-card,
    .info-card,
    .contact-option-card,
    .faq-item {
        box-shadow: none;
        border: 1px solid #000;
        break-inside: avoid;
    }
}

/* Trust Indicators */
.trust-indicators {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.trust-indicators::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23d4af37" opacity="0.1"/></svg>');
    background-size: 30px 30px;
    opacity: 0.5;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.trust-item {
    padding: 1rem;
}

.trust-number {
    font-size: 3rem;
    font-weight: 300;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.trust-label {
    font-size: 1rem;
    letter-spacing: 1px;
    opacity: 0.85;
    font-weight: 300;
}

/* Value Proposition */
.value-proposition {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-item {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid #e5e5e5;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gold-gradient);
    transition: height 0.4s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-item:hover::before {
    height: 100%;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.value-item h3 {
    color: var(--primary-color);
    font-size: 1.35rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
}

/* Testimonial Section */
.testimonial-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23d4af37" opacity="0.1"/></svg>');
    background-size: 30px 30px;
    opacity: 0.5;
}

.testimonial-section .section-title {
    color: var(--white);
    position: relative;
    z-index: 1;
}

.testimonial-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-item {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

.testimonial-quote {
    font-size: 5rem;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 1.35rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    font-weight: 300;
    font-style: italic;
}

.testimonial-author {
    position: relative;
}

.testimonial-author::before {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 0 auto 1.5rem;
}

.testimonial-author-position {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
}

.testimonial-author-company {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 0.25rem;
    font-weight: 300;
}

/* Industry Expertise */
.industry-expertise {
    padding: 5rem 0;
    background-color: var(--white);
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.industry-item {
    padding: 2.5rem;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.industry-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.industry-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.industry-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
}

/* About Section Enhancements */
.about-text h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.about-text h3:first-child {
    margin-top: 0;
}