* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #1a237e;
    --primary-light: #534bae;
    --secondary: #00acc1;
    --accent: #ff4081;
    --light: #f5f7ff;
    --dark: #121212;
    --gray: #6c757d;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Styles */
.krabzi-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.logo-main-text {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
}

.logo-main-text span {
    color: var(--secondary);
}

.logo-tagline {
    font-size: 10px;
    color: var(--gray);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 2px;
    font-weight: 600;
}

.company-type {
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 1px;
    margin-top: 2px;
    font-weight: 600;
}

/* Large Logo for Hero Section */
.logo-large-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.logo-large-img {
    height: 120px;
    width: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.logo-large-text {
    font-size: 36px;
    font-weight: 900;
    color: white;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1;
    text-align: center;
}

.logo-large-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 700;
    text-align: center;
}

.logo-large-company {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    margin-top: 3px;
    font-weight: 600;
}

/* Footer Logo */
.footer-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.2));
}

.footer-logo-text {
    font-size: 28px;
    font-weight: 900;
    color: white;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
    text-align: center;
}

.footer-logo-tagline {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 3px;
    font-weight: 600;
    text-align: center;
}

/* Header & Navigation */
header {
    background-color: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-container {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 30px;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

nav a:hover {
    color: var(--primary);
}

nav a.active {
    color: var(--primary);
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
}

.btn-primary:hover {
    background-color: #e91e63;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-3px);
}

/* About Section */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}

.highlight-box {
    background-color: var(--light);
    border-left: 4px solid var(--secondary);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box p {
    margin-bottom: 0;
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--gray);
    font-size: 1rem;
}

.about-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Services Preview - UPDATED */
.services-preview {
    background-color: var(--light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-top-color: var(--secondary);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    color: #555;
    margin-bottom: 0;
}

/* Portfolio Preview */
.portfolio-preview {
    background-color: white;
}

.portfolio-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    padding: 12px 25px;
    background-color: var(--light);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active {
    background-color: var(--primary);
    color: white;
}

.tab-btn:hover:not(.active) {
    background-color: #e0e0e0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    background-color: white;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-img {
    height: 200px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-weight: 600;
}

.portfolio-content {
    padding: 20px;
}

.portfolio-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

/* Global Clients */
.global-clients {
    padding: 80px 0;
    background-color: white;
}

.client-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.client-logo {
    width: 120px;
    height: 60px;
    background-color: var(--light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.client-logo:hover {
    transform: translateY(-5px);
    background-color: var(--primary);
    color: white;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary);
}

.footer-col p {
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1.8;
}

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info-list i {
    margin-right: 15px;
    color: var(--secondary);
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

.quick-links {
    list-style: none;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.quick-links a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-visual {
        width: 100%;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .client-logos {
        gap: 20px;
    }
    
    .client-logo {
        width: 100px;
        height: 50px;
        font-size: 0.8rem;
    }
    
    .logo-large-img {
        height: 100px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    nav {
        width: 100%;
        margin-top: 20px;
        display: none;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav li {
        margin: 0 0 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 25px;
        right: 20px;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .client-logos {
        justify-content: center;
        gap: 15px;
    }
    
    .client-logo {
        width: 80px;
        height: 40px;
        font-size: 0.7rem;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .footer-logo-img {
        height: 60px;
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate {
    animation: fadeIn 0.8s ease forwards;
}


/* Add these styles to your existing style.css or create a separate about.css */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb i {
    margin: 0 10px;
    font-size: 0.8rem;
}

.breadcrumb span {
    color: white;
    font-weight: 600;
}

/* About Intro */
.about-intro {
    padding: 100px 0;
    background-color: white;
}

.about-intro-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-intro-text {
    flex: 1;
}

.about-intro-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.about-intro-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
}

.about-intro-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}

.highlight-box {
    background-color: var(--light);
    border-left: 4px solid var(--secondary);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.highlight-box p {
    margin-bottom: 0;
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
}

.about-intro-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 100px 0;
    background-color: var(--light);
}

.mv-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 50px;
}

.mv-card {
    background-color: white;
    border-radius: 15px;
    padding: 50px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.vision-card::before {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.mission-card::before {
    background: linear-gradient(90deg, var(--accent) 0%, #ff9800 100%);
}

.mv-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 30px;
}

.vision-card .mv-icon {
    color: var(--primary);
}

.mission-card .mv-icon {
    color: var(--accent);
}

.mv-card h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
}

.mv-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
}

.vision-card h3::after {
    background-color: var(--secondary);
}

.mission-card h3::after {
    background-color: var(--accent);
}

.mv-card p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary);
}

.section-title p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-card:nth-child(1) {
    border-top-color: var(--primary);
}

.value-card:nth-child(2) {
    border-top-color: var(--secondary);
}

.value-card:nth-child(3) {
    border-top-color: var(--accent);
}

.value-card:nth-child(4) {
    border-top-color: #4caf50;
}

.value-card:nth-child(5) {
    border-top-color: #ff9800;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 50%;
}

.value-card:nth-child(1) .value-icon {
    background-color: rgba(26, 35, 126, 0.1);
    color: var(--primary);
}

.value-card:nth-child(2) .value-icon {
    background-color: rgba(0, 172, 193, 0.1);
    color: var(--secondary);
}

.value-card:nth-child(3) .value-icon {
    background-color: rgba(255, 64, 129, 0.1);
    color: var(--accent);
}

.value-card:nth-child(4) .value-icon {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4caf50;
}

.value-card:nth-child(5) .value-icon {
    background-color: rgba(255, 152, 0, 0.1);
    color: #ff9800;
}

.value-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.value-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* Global Stats */
.global-stats {
    padding: 80px 0;
    background-color: var(--light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-card {
    background-color: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--gray);
    font-size: 1.1rem;
    font-weight: 600;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
}

.btn-primary:hover {
    background-color: #e91e63;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(233, 30, 99, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary);
    transform: translateY(-3px);
}

/* Responsive Design for About Page */
@media (max-width: 992px) {
    .about-intro-content {
        flex-direction: column;
    }
    
    .mv-container {
        grid-template-columns: 1fr;
    }
    
    .cta h2 {
        font-size: 2.2rem;
    }
    
    .logo-large-img {
        height: 120px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .mv-card {
        padding: 30px 25px;
    }
    
    .cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        margin-left: 0;
    }
}


/* Updated About Intro - Centered */
.about-intro-content.centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-intro-content.centered .section-title {
    margin-bottom: 40px;
}

.about-intro-content.centered h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.about-intro-content.centered h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--secondary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    margin-top: 25px;
    font-weight: 500;
}

.about-content-wrapper {
    text-align: left;
    background-color: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-content-wrapper p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.about-content-wrapper p strong {
    color: var(--primary);
    font-weight: 700;
}

.company-brand {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.company-name {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 10px;
}

.company-tagline {
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Update highlight box for centered layout */
.about-content-wrapper .highlight-box {
    background-color: var(--light);
    border: none;
    border-radius: 10px;
    margin: 40px 0;
    padding: 30px;
    text-align: center;
    border-left: none;
    position: relative;
}

.about-content-wrapper .highlight-box::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 4rem;
    color: var(--secondary);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.about-content-wrapper .highlight-box p {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .about-intro-content.centered {
        padding: 0 20px;
    }
    
    .about-content-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .about-intro-content.centered h2 {
        font-size: 2.2rem;
    }
    
    .about-content-wrapper {
        padding: 30px 20px;
    }
    
    .about-content-wrapper p {
        font-size: 1rem;
    }
    
    .about-content-wrapper .highlight-box p {
        font-size: 1.1rem;
    }
    
    .company-name {
        font-size: 1.5rem;
    }
}



