/* Page Header */
.page-header {
    background: linear-gradient(to right, #1a3c34, #4caf50);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header .header-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
}
.page-header .breadcrumb {
    background: transparent;
    font-size: 1.1rem;
}
.page-header .breadcrumb-item a {
    color: #fff;
    text-decoration: none;
}
.page-header .breadcrumb-item.active {
    color: #ffd700;
}
.page-header .header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background: url('../images/services-hero.jpg') no-repeat center/cover;
    filter: brightness(0.8);
}

/* Section Titles */
.section-subtitle {
    color: #4caf50;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-align: center;
}
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a3c34;
    margin-bottom: 2rem;
    text-align: center;
}

/* Services Section */
.services .service-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: zoomIn 1s ease-out;
}
.services .service-text {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Core Services Section */
.core-services {
    background: #fff;
}
.service-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.service-icon {
    font-size: 3rem;
    color: #4caf50;
    margin-bottom: 1rem;
}
.service-card-title {
    font-size: 1.3rem;
    color: #1a3c34;
    margin-bottom: 0.75rem;
}
.service-card-text {
    font-size: 1rem;
    color: #666;
}

/* Why Choose Us Section */
.why-choose-us {
    background: #f8f9fa;
}
.why-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}
.why-icon {
    font-size: 3rem;
    color: #4caf50;
    margin-bottom: 1rem;
}
.why-card-title {
    font-size: 1.3rem;
    color: #1a3c34;
    margin-bottom: 0.75rem;
}
.why-card-text {
    font-size: 1rem;
    color: #666;
}

/* Process Section */
.process {
    background: #fff;
}
.process-step {
    position: relative;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.process-step:hover {
    transform: translateY(-5px);
}
.process-number {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: #4caf50;
    color: #fff;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}
.process-title {
    font-size: 1.2rem;
    color: #1a3c34;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.process-text {
    font-size: 1rem;
    color: #666;
}

/* Call to Action Section */
.cta {
    background: linear-gradient(to right, #4caf50, #1a3c34);
    color: #fff;
}
.cta .btn:hover {
    background: #fff;
    color: #1a3c34;
}
.blink {
    animation: blink 1.5s infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}