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

:root {
    /* Color Palette */
    --primary: #00B4B7;
    --primary-dark: #00969A;
    --secondary: #F5F7FA;
    --foreground: #1F2937;
    --muted-foreground: #6B7280;
    --background: #FEFEFE;
    --card: #F9FAFB;
    --border: #E5E7EB;
    --white: #FFFFFF;
    
    /* Typography */
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    /* Transitions */
    --transition: all 0.2s ease-in-out;
    --transition-slow: all 0.3s ease-in-out;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    opacity: 0.8;
}

/* Utility Classes */
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted-foreground); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-6 { margin-bottom: var(--spacing-xl); }
.mb-8 { margin-bottom: var(--spacing-2xl); }

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--spacing-xl);
    }
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--spacing-xl);
}

.grid-2 { grid-template-columns: repeat(1, 1fr); }
.grid-3 { grid-template-columns: repeat(1, 1fr); }
.grid-4 { grid-template-columns: repeat(1, 1fr); }

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    background: none;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline {
    color: var(--foreground);
    border-color: var(--border);
    background-color: var(--white);
}

.btn-outline:hover {
    background-color: var(--secondary);
}

.btn-lg {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1rem;
}

/* Cards */
.card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.card-content {
    padding: var(--spacing-xl);
}

.card-icon {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    color: var(--primary);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.card-text {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Icons */
.icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2;
}

.icon-lg {
    width: 2rem;
    height: 2rem;
}

.icon-xl {
    width: 3rem;
    height: 3rem;
}

/* Sections */
.section {
    padding: var(--spacing-3xl) 0;
}

.section-gray {
    background-color: var(--secondary);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-lg);
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

/* Responsive Typography */
@media (min-width: 768px) {
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    h1 { font-size: 4.5rem; }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .section-description {
        font-size: 1.5rem;
    }
}

/* Section Background */
.lums-section {
    padding: 2rem 1rem;
    background: linear-gradient(
            to bottom right,
            rgba(37, 99, 235, 0.05),
            rgba(16, 185, 129, 0.05)
    );
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Wrapper */
.lums-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

/* Section Title */
.lums-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary); /* primary */
    margin-bottom: 2rem;
    font-family: "Poppins", sans-serif;
}

/* Card */
.lums-card {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 2rem;
}

/* Grid Layout */
.lums-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .lums-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Image */
.lums-image img {
    width: 100%;
    border-radius: 0.75rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.lums-image2 img {
    width: 60%;
    border-radius: 0.75rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Content */
.lums-content {
    text-align: left;
}

.lums-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-family: "Poppins", sans-serif;
}

.lums-content p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: "Inter", sans-serif;
}

/* Stats Grid */
.lums-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat {
    background: #f3f4f6;
    border-radius: 0.5rem;
    padding: 1.5rem 1rem;
    text-align: center;
}

.stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--primary);
    margin-top: 0.25rem;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Industries in Home Page */
/*body {*/
/*    font-family: Arial, sans-serif;*/
/*    background: #f8fafc;*/
/*    margin: 0;*/
/*    padding: 40px 20px;*/
/*}*/

.section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 10px;
}

.section p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 40px;
}

.industries {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.industry-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    padding: 30px 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.industry-card .icon2 {
    font-size: 40px;
    margin-bottom: 15px;
    display: inline-block;
}

.industry-card h3 {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.industry-card p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
}



/* Why Choose Us Home Page */
/*body {*/
/*    font-family: Arial, sans-serif;*/
/*    background: #f9fbfd;*/
/*    margin: 0;*/
/*    padding: 40px 20px;*/
/*}*/

.section {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section h2 {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary);
    /* teal green */
    margin-bottom: 10px;
}

.section p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 50px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.feature-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px 25px;
    text-align: left;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.icon-wrapper {
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 15px;
}

/*.icon-wrapper2 {*/
/*    background: var(--primary);*/
/*    display: block;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    width: 48px;*/
/*    height: 48px;*/
/*    border-radius: 50%;*/
/*    margin-right: 15px;*/
/*}*/

.icon-wrapper svg {
    stroke: white;
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.feature-card p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}


/* Products Video Styling */
/*.video-container {*/
/*    position: relative;*/
/*    width: 90%;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    !*padding-top: 56.25%; !* 16:9 aspect ratio *!*!*/
/*    padding-top: 50%;*/
/*    margin: 1.5rem 0;*/
/*    border-radius: 12px;*/
/*    overflow: hidden;*/
/*    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);*/
/*}*/

/*.video-container iframe,*/
/*.video-container video {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    border: none;*/
/*    border-radius: 12px;*/
/*    object-fit: cover;*/
/*}*/

.btn-demo {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.6rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.2rem;
}

.btn-demo:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Modal styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    margin: auto;
    background: #fff;
    border-radius: 12px;
    width: 80%;
    max-width: 800px;
    padding: 1rem;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.modal-content video {
    width: 100%;
    border-radius: 12px;
}

.close {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 28px;
    color: #333;
    cursor: pointer;
    transition: color 0.2s;
}

.close:hover {
    color: #00bfa5;
}

