.background-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-color: #ebe2d9;
}

.glass-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180%;
    background: linear-gradient(135deg, 
        rgba(229, 116, 16, 0.03) 0%, 
        rgba(55, 73, 59, 0.03) 50%, 
        rgba(229, 116, 16, 0.03) 100%);
    backdrop-filter: blur(100px);
}

.glass-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(229, 116, 16, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(55, 73, 59, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(229, 116, 16, 0.06) 0%, transparent 40%);
        /* radial-gradient(circle at 20% 30%, rgba(73, 16, 229, 0.403) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(103, 4, 233, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(222, 22, 0, 0.06) 0%, transparent 40%); */
}

/* Cursor Blob */
.cursor-blob {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(229, 115, 16, 0.801) 0%, 
        rgba(229, 115, 16, 0.732) 30%, 
        rgba(55, 73, 59, 0.1) 60%, 
        transparent 100%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    will-change: transform;
}

.container1 {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 4rem 1rem;
    position: relative;
    z-index: 2;
}

.content-wrapper1 {
    max-width: 1200px;
    margin: 0 auto;
}

/* header1 Styles */
.header1 {
    text-align: center;
    margin-bottom: 4rem;
}

#panel3 .header1 h1 {
    font-size: 3.5rem;
    color: #37493B;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    letter-spacing: -0.5px;
}


#panel3 .header1 h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #E57410, transparent);
    border-radius: 2px;
}

.header1 p {
    font-size: 1.125rem;
    /* color: rgba(55, 73, 59, 0.7); */
    color: black;
    max-width: 42rem;
    margin: 0 auto;
}

/* Service Cards */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(55, 73, 59, 0.1);
    transition: all 0.5s ease;
}

.service-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(229, 116, 16, 0.3);
}

.service-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
}

.cta-button a {
    color: inherit;
    text-decoration: none;
}
.cta-button a:hover {
/* optional hover styles */
    text-decoration: none;
    /* maybe change background or opacity */
}

/* Icon Section */
.icon-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-wrapper {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.service-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.icon-wrapper.green {
    background-color: #37493B;
}

.icon-wrapper.orange {
    background-color: #E57410;
}

.icon-wrapper svg {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
}

.stats {
    margin-top: 1rem;
    text-align: center;
}

.stats-label {
    font-size: 0.875rem;
    color: rgba(55, 73, 59, 0.6);
    margin-bottom: 0.25rem;
}

.stats-value {
    font-size: 1rem;
    font-weight: 600;
    color: #E57410;
}

/* Content Section */
.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #37493B;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.125rem;
    color: #E57410;
    font-style: italic;
    margin-bottom: 1.5rem;
    text-align: left;
}

.description {
    text-align: left;
    font-size: 1rem;
    color: rgba(55, 73, 59, 0.8);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background-color: rgba(235, 226, 217, 0.5);
    transition: background-color 0.3s ease;
}

.service-card:hover .highlight-item {
    background-color: #EBE2D9;
}

.highlight-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background-color: #E57410;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.highlight-text {
    font-size: 0.875rem;
    color: rgba(55, 73, 59, 0.8);
}

/* CTA Button */
.cta-button {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
}

.cta-button.green {
    background-color: #37493B;
}

.cta-button.orange {
    background-color: #E57410;
}

/* Bottom CTA Section */
.bottom-cta {
    margin-top: 4rem;
    text-align: center;
    background: linear-gradient(to right, #37493B, #E57410);
    border-radius: 1.5rem;
    padding: 3rem;
    color: white;
}

.bottom-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.bottom-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.bottom-cta button {
    background: white;
    color: #37493B;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.bottom-cta button:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 2rem 1rem;
    }

    #panel3 .header1 h1{
     font-size: 2rem;
    }

    .header1 p {
        font-size: 1rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .icon-section {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .stats {
        text-align: right;
        margin-top: 0;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .bottom-cta {
        padding: 2rem;
    }

    .bottom-cta h2 {
        font-size: 1.5rem;
    }

    .bottom-cta p {
        font-size: 1rem;
    }
}