:root {
        --primary: #2D3748;
        --secondary: #4A5568;
        --accent: #DAA560;
        --accent-dark:  #DAA560;
        --light: #F7FAFC;
        --finance: #4299E1;
        --healthcare: #48BB78;
        --manufacturing: #ED8936;
        --retail: #9F7AEA;
        --government: #F56565;
        --education: #ECC94B;
        --text-dark: #1A202C;
        --text-medium: #4A5568;
        --text-light: #718096;
        --text-accent: #FF6600;
    }
    .button-container .qodef-call-to-action.qodef-layout--standard .qodef-m-button {
        width: 100%;
    }
    
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    h2, h3, h4 {
        font-weight: 800;
        letter-spacing: -0.02em;
        color: var(--text-dark);
        position: relative;
        z-index: 1;
    }
    

    
    .section-title {
        text-align: center;
        margin-bottom: 40px;
        position: relative;
    }
    
    .section-title h2 {
        font-size: 3rem;
        position: relative;
        display: inline-block;
        text-shadow: 0 2px 4px rgba(0,0,0,0.05);
        padding-bottom: 10px;
    }
    
    .section-title h2:after {
        content: '';
        position: absolute;
        width: 70px;
        height: 4px;
        background-color: var(--accent);
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 2px;
    }
    
    .button-container {
        text-align: center;
        margin: 30px 0;
        display: flex;
        justify-content: center;
    }
    
    .about-section {
        padding: 80px 0;
        position: relative;
    }
    
    .about-section:nth-child(odd) {
        background-color: white;
    }
    
    .about-section:nth-child(even) {
        background: linear-gradient(135deg, #f6f9fc 0%, #ecf1f7 100%);
    }
    
    .about-content {
        display: flex;
        align-items: center;
        gap: 50px;
    }
    
    .about-text {
        flex: 1;
    }
    
    .about-section h2 {
        font-size: 2.6rem;
        margin-bottom: 30px;
        position: relative;
        display: inline-block;
        text-shadow: 2px 2px 0px rgba(227,68,52,0.1);
        transform: skew(-2deg);
        height: 100%;
    }
    
    
    .about-section h2:after {
        content: '';
        position: absolute;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
        bottom: -10px;
        left: 0;
        border-radius: 4px;
    }
    
    .about-section p {
        font-size: 1.15rem;
        margin-bottom: 22px;
        color: var(--text-medium);
        line-height: 1.85;
        position: relative;
        padding-left: 0;
        transition: all 0.3s ease;
    }
    
    .about-section p:hover {
        transform: translateX(5px);
    }
    
    .text-highlight {
        color: var(--accent);
        font-weight: 700;
        position: relative;
        padding: 0 2px;
    }
    
    .text-highlight:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgba(227,68,52,0.1);
        bottom: 0;
        left: 0;
        z-index: -1;
        transition: height 0.2s ease;
        border-radius: 5px;
        padding: 0px 0px 1px 1px ;
    }
    
    .btn-btn {
        display: inline-block;
        background-color: var(--button-color);
        color: white;
        font-weight: 600;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 15px 30px;
        cursor: pointer;
    }
    .btn-btn:hover{
        color:white;
    }

    
    
    .text-large {
        font-weight: 600;
        color: var(--text-dark) !important;
        margin-bottom: 24px !important;
        line-height: 1.65 !important;
        padding-left: 15px !important;
        border-left: 3px solid var(--accent);
    }
    
    .about-image {
        flex: 1;
        position: relative;
        height: 400px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .placeholder-image {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--accent) 0%, #973022 100%);
        opacity: 0.7;
        position: absolute;
        top: 0;
        left: 0;
    }
    
    .shape-decoration {
        position: absolute;
        width: 70%;
        height: 70%;
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        background-color: rgba(227, 68, 52, 0.15);
        top: 15%;
        left: 15%;
        z-index: 1;
        animation: morphShape 15s linear infinite alternate;
    }
    
    @keyframes morphShape {
        0% {
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        }
        25% {
            border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
        }
        50% {
            border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        }
        75% {
            border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
        }
        100% {
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        }
    }
    
    .values-section {
        padding: 80px 0;
        background-color: white;
    }
    
    .drive-values-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0;
    }
    
    .drive-values-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .drive-value-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        display: flex;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 100%;
    }
    
    .drive-value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    }
    
    .drive-value-accent {
        width: 6px;
        background-color: var(--accent);
    }
    
    .drive-value-content {
        padding: 32px 28px;
        flex: 1;
    }
    
    .drive-value-content h3 {
        color: var(--accent);
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 16px;
        position: relative;
        letter-spacing: -0.02em;
    }
    
    .drive-value-content p {
        color: var(--text-medium);
        font-size: 17px;
        line-height: 1.7;
    }
    
    .team-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #f6f9fc 0%, #ecf1f7 100%);
        position: relative;
        overflow: hidden;
    }
    
    .team-content {
        position: relative;
        z-index: 1;
    }
    
    .team-section:before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background-color: rgba(227, 68, 52, 0.05);
        border-radius: 50%;
        top: -150px;
        right: -150px;
    }
    
    .team-section:after {
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        background-color: rgba(227, 68, 52, 0.05);
        border-radius: 50%;
        bottom: -100px;
        left: -100px;
    }
    

    .cta-section {
        padding: 100px 0;
        text-align: center;
        background: linear-gradient(135deg, #2D3748 0%, #1A202C 100%);
        color: white !important;
        position: relative;
        overflow: hidden;
    }
    
    .cta-section:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0 10L100 0L90 100L0 90Z" fill="rgba(227, 68, 52, 0.05)"/></svg>');
        background-size: 500px;
        opacity: 0.3;
    }
    
    .cta-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .cta-section h2 {
        font-size: 2.7rem;
        margin-bottom: 24px;
        color: white !important;
        text-shadow: 0 2px 10px rgba(0,0,0,0.2);
        font-weight: 800;
        letter-spacing: -0.03em;
    }
    
    .cta-section p {
        font-size: 1.3rem;
        margin-bottom: 40px;
        color: rgba(255, 255, 255, 0.95);
        line-height: 1.7;
    }
    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .drive-value-card, .about-content {
        opacity: 0;
    }
    
    .drive-value-card:nth-child(1) { animation-delay: 0.1s; }
    .drive-value-card:nth-child(2) { animation-delay: 0.3s; }
    .drive-value-card:nth-child(3) { animation-delay: 0.5s; }
    .drive-value-card:nth-child(4) { animation-delay: 0.7s; }
    
    @media screen and (max-width: 900px) {
        .about-content {
            flex-direction: column;
        }
        
        .about-image {
            width: 100%;
            margin-top: 30px;
            height: 300px;
        }
        
        .drive-values-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
    }
    
    @media screen and (max-width: 500px) {
        .about-section h2 {
            font-size: 1.8rem;
        }
        
        .section-title h2 {
            font-size: 2rem;
        }
        
        .about-image {
            width: 100%;
            margin-top: 30px;
            padding: 100px 0px;
        }
        
        .drive-value-content {
            padding: 22px 18px;
        }
        
        .drive-value-content h3 {
            font-size: 20px;
        }
    }