   body {
            font-family: 'DM Sans', sans-serif;
   }
    .container-large {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
    }
   

    /* Hero Section */
    .hero {
        padding: 150px 0 100px;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23D93C2A" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
        opacity: 0.3;
    }

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

    .hero-text h1 {
        font-size: 4rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 30px;
        color: #1a1a1a;
    }

    .hero-text .highlight {
        color: #D93C2A;
    }

    .hero-text p {
        font-size: 1.2rem;
        color: #433c3c;
        margin-bottom: 40px;
        line-height: 1.7;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-top: 50px;
    }

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

    .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: #D93C2A;
        display: block;
    }

    .stat-label {
        font-size: 0.9rem;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    .hero-image {
        position: relative;
    }

    .hero-image img {
        width: 100%;
        border-radius: 20px;
        /*box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);*/
    }

    /* Section Styles */
    .section {
        padding: 30px 0;
    }

    .section-light {
        background: #f8f9fa;
    }

    .section-title {
        font-size: 3rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 20px;
        color: #1a1a1a;
    }

    .section-subtitle {
        text-align: center;
        font-size: 1.2rem;
        color: #666;
        max-width: 700px;
        margin: 0 auto 80px;
        line-height: 1.6;
    }

    /* About Content Section */
    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        margin-bottom: 100px;
        
    }
    .team{
        background: url('https://contactboss.com/other-assets/images/team-bg.png');
    }

    .about-text h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 30px;
        color: #1a1a1a;
    }

    .about-text p {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 25px;
        line-height: 1.7;
    }

    .about-image {
        position: relative;
    }

    .about-image img {
        width: 100%;
        border-radius: 15px;
    }

    /* Features Grid */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 40px;
    }

    .feature-box {
        background: white;
        padding: 50px 10px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .feature-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #D93C2A, #ff6b6b);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .feature-box:hover::before {
        transform: scaleX(1);
    }

    .feature-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #D93C2A, #ff6b6b);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 30px;
        font-size: 2rem;
        color: white;
    }

    .feature-box h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #1a1a1a;
    }

    .feature-box p {
        color: #666;
        line-height: 1.6;
    }

    /* Values Section */
    .values-section {
        color: white;
        position: relative;
        overflow: hidden;
    }

    /*.values-section::before {*/
    /*    content: '';*/
    /*    position: absolute;*/
    /*    top: 0;*/
    /*    left: 0;*/
    /*    width: 100%;*/
    /*    height: 100%;*/
    /*    background: url('data:image/svg+xml,<svg viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/></svg>');*/
    /*}*/

    .values-section .section-title,
    .values-section .section-subtitle {
        color: white;
        position: relative;
        z-index: 2;
    }

    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
        position: relative;
        z-index: 2;
    }

    .value-item {
        text-align: center;
        padding: 40px 30px;
    }

    .value-icon {
        width: 100px;
        height: 100px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 30px;
        font-size: 2.5rem;
        backdrop-filter: blur(10px);
    }

    .value-item h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .value-item p {
        opacity: 0.9;
        line-height: 1.6;
    }

    /* Team Section */
    .team-showcase {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .team-content h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 30px;
        color: #1a1a1a;
    }

    .team-content p {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 25px;
        line-height: 1.7;
    }

    .team-image {
        position: relative;
    }

    .team-image img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    /* Testimonials */
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 50px;
        margin-top: 80px;
    }

    .testimonial {
        background: white;
        padding: 50px 40px;
        border-radius: 20px;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
        position: relative;
    }

    .testimonial::before {
        content: '"';
        position: absolute;
        top: -20px;
        left: 40px;
        font-size: 100px;
        color: #D93C2A;
        opacity: 0.2;
        font-family: serif;
    }

    .testimonial-text {
        font-size: 1.1rem;
        line-height: 1.7;
        color: #666;
        margin-bottom: 30px;
        font-style: italic;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .author-avatar {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #D93C2A, #ff6b6b);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 700;
        font-size: 1.2rem;
        padding: 20px;
    }

    .author-info h4 {
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 5px;
    }

    .author-info p {
        color: #999;
        font-size: 0.9rem;
    }

    /* CTA Section */
    .cta-section {
        background: #5a5a5a;
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg viewBox="0 0 50 50" xmlns="http://www.w3.org/2000/svg"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/></svg>');
    }

    .cta-content {
        position: relative;
        z-index: 2;
    }

    .cta-section .section-title {
        color: white;
    }

    .cta-section .section-subtitle {
        color: rgba(255, 255, 255, 0.8);
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 50px;
        flex-wrap: wrap;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 18px 35px;
        border: none;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .btn-primary {
        background: #D93C2A;
        color: white;
    }

    .btn-primary:hover {
        background: #b91c1c;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(217, 60, 42, 0.4);
    }

    .btn-secondary {
        background: transparent;
        color: white;
        border: 2px solid white;
    }

    .btn-secondary:hover {
        background: white;
        color: #1a1a1a;
    }

    /* Contact Section */
    .contact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
        margin-top: 80px;
    }

    .contact-card {
        background: white;
        padding: 50px 40px;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    .contact-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #D93C2A, #ff6b6b);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 30px;
        font-size: 2rem;
        color: white;
    }

    .contact-card h3 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #1a1a1a;
    }

    .contact-card a {
        color: #D93C2A;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
    }

    .contact-note {
        color: #999;
        font-size: 0.9rem;
        margin-top: 10px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .nav-menu {
            display: none;
        }

        .hero-content,
        .about-content,
        .team-showcase {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
        }

        .hero-text h1 {
            font-size: 2.5rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .hero-stats {
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .features-grid,
        .values-grid,
        .testimonials-grid {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .cta-buttons {
            flex-direction: column;
            align-items: center;
        }
        
        .mission-content {
        grid-template-columns: 1fr !important;
        text-align:center;
        }
    
        .mission-content > *:first-child {
            order: 1; /* ensure first section stays on top */
        }
    
        .mission-content > *:last-child {
            order: 2;
        }
        .mission-subtitle {
            text-align: center !important;
        }
        .benefit-content{ 
            text-align:left;
        }
        .about-content{ margin-bottom:20px;}
    }

    /* Animation Classes */
    .fade-up {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.8s ease;
    }

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .fade-in {
        opacity: 0;
        transition: opacity 0.8s ease;
    }

    .fade-in.visible {
        opacity: 1;
    }

    .benefits-list {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
        background: #D93C2A;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.4rem;
        margin-right: 1.5rem;
        flex-shrink: 0;
    }

    .benefit-content h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: #222;
        margin-bottom: 0.5rem;
    }

    .benefit-content p {
        font-size: 0.95rem;
        color: #555;
        line-height: 1.5;
    }

    .benefit-item {
        display: flex;
        align-items: center;
        background: #f9fafb;
        border-radius: 10px;
        padding: 10px 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        border-left: 4px solid #D93C2A;
        transform: translateX(-20px);
        animation: slideIn 0.5s ease forwards;
    }
    
    .mission-subtitle{ text-align:left;}
    .mission-content {
        display: grid; 
        grid-template-columns: 1fr 2fr;
        gap: 80px;
        align-items: center;
    }
    
    .logo-testimonial img{
        max-height: 60px;
        box-shadow: 1px 1px 5px 0px #f0f0f0;
        border-radius: 5px;
        margin-bottom: 10px;
    }
