/* ===========================
   Global Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a56db;
    --secondary-color: #0f172a;
    --accent-color: #3b82f6;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

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

/* ===========================
   Navigation
   =========================== */
.navbar {
    background-color: var(--bg-white);
    padding: 15px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand a {
    display: inline-block;
    line-height: 0;
}

.nav-brand .logo {
    height: 80px;
    width: auto;
    display: block;
    transition: transform 0.3s;
}

.nav-brand .logo:hover {
    transform: scale(1.05);
}

.nav-brand h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: 0.3s;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--bg-white);
    padding: 120px 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================
   Buttons
   =========================== */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 86, 219, 0.3);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-secondary-white {
    display: inline-block;
    background-color: transparent;
    color: var(--bg-white);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--bg-white);
    transition: all 0.3s;
}

.btn-secondary-white:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.btn-primary-large {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    border: 2px solid var(--bg-white);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   Value Points Section
   =========================== */
.value-points {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-item {
    text-align: center;
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--primary-color);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
}

/* ===========================
   Deliver Section
   =========================== */
.deliver-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.deliver-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s;
}

.deliver-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card-image {
    width: 100%;
    height: 200px;
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--bg-light);
}

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

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

.deliver-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.deliver-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===========================
   Products Showcase Section
   =========================== */
.products-showcase {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-top: -40px;
    margin-bottom: 60px;
}

.products-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.product-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-info p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 15px;
}

.product-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.product-link:hover {
    color: #1e40af;
    transform: translateX(5px);
}

.product-caption {
    padding: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

/* Featured Product Card */
.featured-product-card {
    border: 3px solid var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.featured-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(26, 86, 219, 0.2);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(26, 86, 219, 0.3);
}

.featured-product-card .product-info h3 {
    font-size: 20px;
    color: var(--primary-color);
}

.showcase-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===========================
   Solutions Page Styles
   =========================== */
.solution-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.solution-section.alt-bg {
    background-color: var(--bg-light);
}

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

.solution-content.reverse {
    direction: rtl;
}

.solution-content.reverse > * {
    direction: ltr;
}

.solution-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.solution-image img {
    width: 100%;
    height: auto;
    display: block;
}

.solution-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.solution-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.solution-text h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 30px;
    color: var(--primary-color);
}

.deliverables-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.deliverables-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

.deliverables-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

.how-we-work {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.work-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===========================
   Products Page Styles
   =========================== */
.product-line-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.product-line-section.alt-bg {
    background-color: var(--bg-light);
}

.product-line-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-line-content.reverse {
    direction: rtl;
}

.product-line-content.reverse > * {
    direction: ltr;
}

.product-line-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.main-product-img {
    grid-column: 1 / 3;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.secondary-product-img {
    grid-column: 1 / 3;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.product-label {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.product-line-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.product-intro {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.product-line-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--primary-color);
}

.product-features {
    list-style: none;
    padding: 0;
}

.product-features li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.product-features li:before {
    content: "▪";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

.delivery-model {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.delivery-intro {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 50px;
}

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

.delivery-step {
    text-align: center;
    padding: 35px 25px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.delivery-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.delivery-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.delivery-step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.delivery-step p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===========================
   Industries Page Styles
   =========================== */
.primary-industry {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.industry-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.industry-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.industry-hero-text h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.industry-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.industry-hero-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.industry-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.use-cases {
    margin-bottom: 80px;
}

.use-cases h3 {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.use-case-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s;
}

.use-case-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.use-case-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.use-case-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.use-case-item p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

.capabilities-delivered h3 {
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.capability-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.capability-card {
    padding: 35px 30px;
    background-color: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.capability-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.capability-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.capability-card h4 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.capability-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

.additional-industries {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.industry-category {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.industry-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.industry-category h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.industry-category p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===========================
   About Page Styles
   =========================== */
.who-we-are {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.ecosystem {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--bg-white);
}

.ecosystem-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.ecosystem-header h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.ecosystem-header p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.ecosystem-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.ecosystem-card {
    padding: 35px 30px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.ecosystem-card:hover {
    background-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.ecosystem-card.primary-company {
    background-color: rgba(26, 86, 219, 0.2);
    border: 2px solid var(--primary-color);
}

.company-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.ecosystem-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--bg-white);
}

.ecosystem-card p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.ecosystem-card p strong {
    color: rgba(255, 255, 255, 0.95);
}

.strategic-investments {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.investment-card {
    padding: 40px 35px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.investment-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.investment-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.investment-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.investment-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 10px;
}

.investment-card p strong {
    color: var(--text-dark);
}

.how-we-collaborate {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

.collab-step {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s;
}

.collab-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.collab-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.collab-step h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.collab-step p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

.company-values {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.value-item {
    padding: 35px 30px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.value-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.value-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===========================
   Industry Focus Section
   =========================== */
.industry-focus {
    padding: 100px 0;
    background-color: var(--bg-light);
}

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

.industry-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.industry-text h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.industry-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.industry-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.industry-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    background: linear-gradient(135deg, #1a56db 0%, #3b82f6 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

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

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo img {
    height: 70px;
    width: auto;
    /* Logo displays in original colors - no filter needed */
}

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

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--bg-white);
    font-weight: 600;
}

.footer-section p {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.7;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--bg-white);
}

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

.footer-bottom p {
    color: #94a3b8;
    font-size: 14px;
}

/* ===========================
   Contact Page Styles
   =========================== */
.contact-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.contact-form-container h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-intro {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 35px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / 3;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.1);
}

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

.submit-btn {
    grid-column: 1 / 3;
    width: 100%;
    padding: 16px;
    font-size: 16px;
    cursor: pointer;
}

.submit-btn:hover {
    transform: translateY(0);
}

.form-note {
    grid-column: 1 / 3;
    font-size: 13px;
    color: var(--text-light);
    margin-top: -10px;
    text-align: center;
}

.contact-info-card {
    background-color: var(--bg-white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.contact-info-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.info-content p {
    font-size: 15px;
    color: var(--text-light);
}

.info-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.info-content a:hover {
    color: #1e40af;
    text-decoration: underline;
}

.what-to-expect,
.topics-card {
    background-color: var(--bg-white);
    padding: 30px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.what-to-expect h3,
.topics-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.what-to-expect ul,
.topics-card ul {
    list-style: none;
    padding: 0;
}

.what-to-expect ul li,
.topics-card ul li {
    padding: 10px 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.topics-card ul li {
    padding-left: 20px;
    position: relative;
}

.topics-card ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-brand .logo {
        height: 64px;
    }

    .footer-logo img {
        height: 56px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .industry-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .industry-text h2 {
        font-size: 32px;
    }

    .industry-text h3 {
        font-size: 24px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 18px;
    }

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

    .value-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .products-gallery {
        grid-template-columns: 1fr;
    }

    .product-item img {
        height: 250px;
    }

    .solution-content,
    .product-line-content,
    .industry-hero,
    .about-content {
        grid-template-columns: 1fr;
    }

    .solution-content.reverse,
    .product-line-content.reverse {
        direction: ltr;
    }

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

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

    .form-group.full-width,
    .submit-btn,
    .form-note {
        grid-column: 1;
    }
}

@media (max-width: 480px) {
    .nav-brand .logo {
        height: 56px;
    }

    .footer-logo img {
        height: 48px;
    }

    .hero {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }

    .deliver-section,
    .industry-focus {
        padding: 60px 0;
    }
}
