/*
Theme Name: Altrixima Technologies Custom Theme
Theme URI: https://altrixima.com/
Description: A super-lightweight, premium, and classy theme for Altrixima Technologies.
Version: 1.0.0
Author: gemini & Almesh
Author URI: https://altrixima.com/
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: lightweight, classy, simple, custom-design
Text Domain: altrixima-theme
*/

/* --- Define Global Design System & Variables --- */
:root {
    /* Color Palette */
    --primary: #2563EB; /* Premium Blue from previous design */
    --primary-hover: #1D4ED8;
    --dark-navy: #0F172A; /* Classy Navy for headers/footers */
    
    /* Text Colors */
    --text-main: #1F2937;
    --text-muted: #6B7280;
    --text-on-dark: #F9FAFB;

    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;

    /* Typography & Layout */
    --font-sans: 'Inter', -apple-system, system-ui, sans-serif;
    --radius-md: 8px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --container-width: 1200px;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color 0.2s; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* --- Basic Typography --- */
h1, h2, h3, h4, h5 { color: #111827; margin-bottom: 0.5rem; }
h1 { font-size: 2.5rem; font-weight: 800; }
p { margin-bottom: 1.5rem; }

/* --- Layout Utility Class --- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}
/* --- Header & Navigation Bar --- */
.header-nav {
    height: 80px;
    background-color: var(--bg-white);
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo img {
    height: 160px; /* Adjust based on your Altrixima.png size */
    width: auto;
    display: block;
    margin-top: 15px;
}

.nav-links {
    display: flex;
    gap: 32px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-secondary {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    color: var(--text-main);
    border-radius: var(--radius-md);
}
.btn-secondary:hover { background-color: #F3F4F6; }

.btn-primary {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    background-color: var(--primary);
    color: #FFFFFF;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}
.btn-primary:hover { background-color: var(--primary-hover); }


/* --- Main Footer --- */
.main-footer {
    background-color: var(--dark-navy);
    color: var(--text-on-dark);
    padding: 60px 0 30px 0;
    margin-top: auto; /* Push to bottom */
}

.footer-content {
    text-align: center;
    font-size: 14px;
    color: #9CA3AF;
}


/* --- General Utility Classes --- */
.mt-small { margin-top: 10px; }
.mt-medium { margin-top: 20px; }
.mt-large { margin-top: 40px; }
.mb-large { margin-bottom: 40px; }

.page-content h1 { margin-bottom: 1.5rem; }
.page-content .content { font-size: 1rem; color: #374151; }

/* Responsive adjustments */
@media (max-width: 900px) {
    .nav-links { gap: 16px; font-size: 14px; }
}
/* --- Homepage Specific Styling --- */

/* Text Alignment Utility */
.text-center { text-align: center; }

/* Hero Section */
.hero h1 { font-size: 3rem; margin-bottom: 1rem; line-height: 1.2; font-weight: 800; color: #111827; }
.hero-subline { font-size: 1.1rem; color: var(--text-muted); max-width: 800px; margin: 0 auto; }

/* Solutions Grid & Boxes */
.section-title { font-size: 2rem; font-weight: 800; color: #111827; margin-bottom: 3rem; }
.grid-layout { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

.solution-box {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid #E5E7EB;
    box-shadow: var(--shadow-sm);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.solution-box:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.icon-circle {
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #FFFFFF;
}
.icon-circle.navy { background-color: var(--dark-navy); }
.icon-circle.blue { background-color: var(--primary); }

.solution-box h3 { font-size: 1.25rem; font-weight: 700; color: #111827; margin-bottom: 0px; }
.solution-box p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 5px; line-height: 1.4; }

.link-arrow { font-size: 0.9rem; color: var(--primary); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.link-arrow:hover { color: var(--primary-hover); }

/* Dark Premium Highlight Section */
.solution-highlight.dark-premium {
    background-color: var(--dark-navy);
    color: var(--text-on-dark);
    padding: 80px 0;
}
.highlight-wrapper { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }

.highlight-info .highlight-tag {
    font-size: 0.7rem; background-color: var(--primary); color: #FFFFFF;
    padding: 3px 10px; border-radius: 4px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; display: inline-block;
}
.highlight-info h2 { color: #FFFFFF; font-weight: 800; font-size: 2.25rem; }
.highlight-info h2 .white { color: #FFFFFF; }
.highlight-info p { color: #CBD5E1; font-size: 1rem; line-height: 1.5; }
.highlight-info .btn-primary { border: 1px solid var(--primary); }

.highlight-testimonial { position: relative; padding: 40px; }
.highlight-testimonial::before {
    content: ''; position: absolute; left: 0; top: 0; width: 3px; height: 100%; background-color: rgba(255, 255, 255, 0.1); border-radius: 2px;
}

.quote-icon { font-size: 40px; color: rgba(255, 255, 255, 0.1); margin-bottom: 10px; }
.testimonial-quote { font-size: 1.1rem; line-height: 1.6; color: var(--text-on-dark); font-weight: 500; font-style: italic; position: relative; z-index: 1; }

.testimonial-author { display: flex; align-items: center; gap: 15px; }
.author-image { width: 60px; height: 60px; border-radius: 50%; border: 3px solid rgba(255, 255, 255, 0.1); }
.author-details strong { font-size: 1rem; color: #FFFFFF; font-weight: 700; }
.author-details p { color: #9CA3AF; font-size: 0.85rem; margin-bottom: 0px; }

/* Final CTA Section & Brands */
.final-cta h2 { font-size: 2.25rem; font-weight: 800; color: #111827; }
.final-cta-subline { font-size: 1.1rem; color: var(--text-muted); }
.final-cta-brands {
    display: flex; justify-content: center; align-items: center; gap: 40px; margin: 30px 0;
}
.brand-logo { height: 40px; width: auto; opacity: 0.25; transition: opacity 0.2s; }
.brand-logo:hover { opacity: 1; }

/* Generic Utility Classes */
.mt-small { margin-top: 10px; }
.mt-medium { margin-top: 20px; }
.mt-large { margin-top: 40px; }
.mb-large { margin-bottom: 40px; }
.mb-medium { margin-bottom: 30px; }
.ml-small { margin-left: 8px; }

/* Home page content article styling */
.front-page-content h1 { margin-bottom: 1.5rem; }
.front-page-content .content { font-size: 1rem; color: #374151; }

/* Responsive adjustments */
@media (max-width: 900px) {
    .grid-layout { grid-template-columns: 1fr; gap: 20px; }
    .hero h1 { font-size: 2.5rem; }
    .highlight-wrapper { grid-template-columns: 1fr; gap: 30px; }
    .testimonial-author { flex-direction: column; text-align: center; }
    .final-cta-brands { flex-direction: column; gap: 20px; }
}
/*
Temporal Overriding Stylesheet - DO NOT REMOVE!
Will be merged into the master stylesheet professionally later.
*/

/* --- Define Global Design System & Variables --- */
:root {
    /* Color Palette - Classy Navy & Primary Blue */
    --primary: #2563EB; /* Modern Blue from your previous design */
    --primary-hover: #1D4ED8;
    --dark-navy: #0F172A; /* Rich Navy background for premium sections */
    
    /* Text Colors */
    --text-main: #1F2937;
    --text-muted: #6B7280;
    --text-on-dark: #F9FAFB;

    /* Background Colors */
    --bg-white: #FFFFFF;
    --bg-light: #F9FAFB;

    /* Spacing/Layout */
    --font-sans: 'Inter', -apple-system, sans-serif;
    --radius-md: 8px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color 0.2s; }

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

/* --- Utilities --- */
.text-center { text-align: center; }
.mt-small { margin-top: 10px; }
.mt-medium { margin-top: 20px; }
.mt-large { margin-top: 40px; }
.mb-large { margin-bottom: 40px; }
.mb-medium { margin-bottom: 30px; }
.ml-small { margin-left: 8px; }

/* --- Buttons (Crucial for class) --- */
.btn-primary {
    font-size: 14px; font-weight: 600;
    padding: 12px 24px;
    background-color: var(--primary);
    color: #FFFFFF;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
    display: inline-block;
}
.btn-primary:hover { background-color: var(--primary-hover); }

/* --- Homepage Component Styling --- */

/* Hero Section */
.hero h1 { font-size: 3rem; margin-bottom: 1rem; line-height: 1.2; font-weight: 800; color: #111827; }
.hero-subline { font-size: 1.1rem; color: var(--text-muted); max-width: 800px; margin: 0 auto; }

/* Solutions Grid & Boxes */
.section-title { font-size: 2rem; font-weight: 800; color: #111827; margin-bottom: 3rem; }
.section-subline { font-size: 1.1rem; color: var(--text-muted); max-width: 700px; margin: 0 auto; }

.grid-layout { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

.solution-box {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid #E5E7EB;
    box-shadow: var(--shadow-sm);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.solution-box:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.icon-circle {
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: #FFFFFF;
}
.icon-circle.navy { background-color: var(--dark-navy); }
.icon-circle.blue { background-color: var(--primary); }

.solution-box h3 { font-size: 1.25rem; font-weight: 700; color: #111827; margin-bottom: 0px; }
.solution-box p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 5px; line-height: 1.4; }

.link-arrow { font-size: 0.9rem; color: var(--primary); font-weight: 600; display: flex; align-items: center; gap: 6px; }
.link-arrow:hover { color: var(--primary-hover); }

/* Dark Premium Highlight Section */
.solution-highlight.dark-premium {
    background-color: var(--dark-navy);
    color: var(--text-on-dark);
    padding: 80px 0;
}
.highlight-wrapper { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }

.highlight-info .highlight-tag {
    font-size: 0.7rem; background-color: var(--primary); color: #FFFFFF;
    padding: 3px 10px; border-radius: 4px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; display: inline-block;
}
.highlight-info h2 { color: #FFFFFF; font-weight: 800; font-size: 2.25rem; }
.highlight-info h2 .white { color: #FFFFFF; }
.highlight-info p { color: #CBD5E1; font-size: 1rem; line-height: 1.5; }
.highlight-info .btn-primary { border: 1px solid var(--primary); }

/* Classy, icon-based support list (matching contact-us) */
.support-icon-list {
    list-style: none;
    font-size: 15px;
    line-height: 1.4;
    text-align: left;
    display: flex; flex-direction: column; gap: 15px;
}
.support-icon-list li { display: flex; align-items: center; gap: 15px; }
.support-icon-list li i { font-size: 18px; color: var(--primary); width: 25px; text-align: center; }

/* Styles for icons when used on dark background */
.support-icon-list.white-icons li i { color: rgba(255, 255, 255, 0.4); }

/* Services Section */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-box { text-align: center; background-color: var(--bg-white); padding: 20px; border-radius: var(--radius-md); border: 1px solid #E5E7EB; transition: transform 0.2s; }
.service-box:hover { transform: translateY(-2px); }
.service-icon { font-size: 32px; color: var(--primary); margin-bottom: 10px; }
.service-box h4 { font-size: 1rem; color: #111827; font-weight: 600; margin-bottom: 0px; }

/* Final CTA Section & Brands */
.final-cta h2 { font-size: 2.25rem; font-weight: 800; color: #111827; }
.final-cta-subline { font-size: 1.1rem; color: var(--text-muted); }
.final-cta-brands {
    display: flex; justify-content: center; align-items: center; gap: 40px; margin: 30px 0;
}
.brand-logo { height: 40px; width: auto; opacity: 0.25; transition: opacity 0.2s; }
.brand-logo:hover { opacity: 1; }

/* Generic Utility Classes */
.mt-small { margin-top: 10px; }
.mt-medium { margin-top: 20px; }
.mt-large { margin-top: 40px; }
.mb-large { margin-bottom: 40px; }
.mb-medium { margin-bottom: 30px; }
.ml-small { margin-left: 8px; }

/* Responsive adjustments */
@media (max-width: 900px) {
    .grid-layout { grid-template-columns: 1fr; gap: 20px; }
    .hero h1 { font-size: 2.5rem; }
    .highlight-wrapper { grid-template-columns: 1fr; gap: 30px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .final-cta-brands { flex-direction: column; gap: 20px; }
}