/* --- About Us Banner Custom Styles --- */
.about-banner {
    background: linear-gradient(90deg, #3b82f6 0%, #6366f1 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 4px 24px rgba(99,102,241,0.08);
}
.about-banner h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}
.about-banner p {
    font-size: 1.3rem;
    font-weight: 400;
}
/* --- About Us Page Custom Styles --- */
.about-us {
    background: #f8fafc;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.about-us h1, .about-us h2, .about-us h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.about-us .about-stats, .about-us .row.text-center.mb-5 {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}
.about-us .about-stats div, .about-us .row.text-center.mb-5 > div {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 2rem 1rem;
    min-width: 150px;
    font-size: 1.1rem;
    color: #333;
}
.about-us ul {
    list-style: none;
    padding-left: 0;
}
.about-us ul li {
    background: #fff;
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    font-size: 1rem;
}
.about-us .leadership-team, .about-us .row.text-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}
.about-us .leadership-team > div {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 2rem 1rem;
    min-width: 220px;
    max-width: 260px;
    text-align: center;
}
.about-us .leadership-team img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.about-us .btn {
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    margin: 0.5rem;
}
.about-us .btn-primary {
    background: linear-gradient(90deg, #3b82f6 0%, #6366f1 100%);
    border: none;
    color: #fff;
    box-shadow: 0 2px 12px rgba(59,130,246,0.15);
}
.about-us .btn-outline-primary {
    border: 2px solid #3b82f6;
    color: #3b82f6;
    background: #fff;
    transition: background 0.2s, color 0.2s;
}
.about-us .btn-outline-primary:hover {
    background: #3b82f6;
    color: #fff;
}
/*
Theme Name: MR PRINTER - Modern E-commerce Theme
Description: A modern, clean design for a printer and POS e-commerce store.
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- Root Variables --- */
:root {
    --primary-dark: #1a1a2e;
    --primary-red: #e94560;
    --primary-green: #00b894;
    --primary-blue: #3f72af;
    --text-light: #f5f5f5;
    --text-dark: #333333;
    --bg-light: #ffffff;
    --bg-grey: #f8f9fa;
    --border-color: #4e5d78;
    --font-family: 'Poppins', sans-serif;
    --border-radius: 12px;
    --box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-red) 0%, #d43f8d 100%);
}

/* --- Base Styles --- */
body {
    font-family: var(--font-family);
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--primary-dark);
}

a {
    color: var(--primary-red);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #c33751;
}

/* --- Section Styling --- */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

/* --- Header & Navigation --- */
.navbar {
    background-color: var(--primary-dark);
    padding: 1rem 0;
}

.navbar .navbar-brand {
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar .nav-link {
    color: var(--text-light);
    font-weight: 500;
    margin: 0 5px;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover, .navbar .nav-link.active {
    color: var(--primary-red);
}

.navbar .form-control {
    background-color: #2a2a4a;
    border: 1px solid var(--border-color);
    color: var(--text-light);
}

.navbar .form-control::placeholder {
    color: #a9a9a9;
}

/* --- Buttons --- */
.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

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

.btn-primary:hover {
    background-color: #c33751;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-dark);
}

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

.btn-green:hover {
    background-color: #00a082;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.4);
}


/* --- Hero Section --- */
.hero-section {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 100px 0;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.hero-section .lead {
    font-size: 1.2rem;
    max-width: 500px;
    margin: 20px 0 30px 0;
}

/* --- Card Styles --- */
.feature-card, .product-card, .testimonial-card, .solution-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    height: 100%;
}

.feature-card:hover, .product-card:hover, .solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-card .icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

/* --- Product Card --- */
.product-card .card-img-top {
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    padding: 20px;
    background-color: #fff;
}

.product-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* --- Gradient Section --- */
.gradient-section {
    background: var(--gradient-secondary);
    color: var(--text-light);
    border-radius: 20px;
    padding: 60px;
}

.gradient-section h2, .gradient-section p {
    color: var(--text-light);
}

/* --- Custom Sections --- */
.bg-light-green {
    background-color: #e6f7f3;
}

.bg-dark-purple {
    background: linear-gradient(135deg, #432262 0%, #5e337d 100%);
    color: var(--text-light);
}

.bg-dark-purple .section-title,
.bg-dark-purple .section-subtitle {
    color: var(--text-light);
}

.business-type-card {
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    overflow: hidden;
    color: white;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    text-decoration: none;
}

.business-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
}

.business-type-card h5 {
    position: relative;
    z-index: 1;
    color: white;
    font-size: 1.4rem;
}

.solution-card .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.testimonial-card {
    background-color: var(--bg-light);
}

.scanner-pos-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: var(--border-radius);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.scanner-pos-card ul {
    list-style: none;
    padding-left: 0;
    color: var(--text-light);
}

.scanner-pos-card ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.scanner-pos-card ul li::before {
    content: '\f00c'; /* Font Awesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-green);
}

/* --- Footer --- */
footer {
    background-color: var(--primary-dark);
    color: #a9a9a9;
    padding: 60px 0 20px 0;
}

footer h5 {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 20px;
}

footer a {
    color: #a9a9a9;
    display: block;
    margin-bottom: 10px;
}

footer a:hover {
    color: var(--primary-red);
}

footer .social-icons a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: 40px;
}