/* ====================================== Why Choose Us Section Styles ====================================== */

/* CSS Variables */
:root {
    --primary-color: #148255;
    --title-color: #1a1a1a;
    --content-color: #666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
}

.why-choose-section {
    position: relative;
    padding: 120px 0;
    background: white;
    overflow: hidden;
}

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

.why-choose-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(20, 130, 85, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(20, 130, 85, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.why-choose-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.why-choose-particles .particle-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.why-choose-particles .particle-2 {
    top: 65%;
    left: 85%;
    animation-delay: 2s;
}

.why-choose-particles .particle-3 {
    top: 85%;
    left: 25%;
    animation-delay: 4s;
}

.why-choose-particles .particle-4 {
    top: 25%;
    left: 75%;
    animation-delay: 1s;
}

.why-choose-particles .particle-5 {
    top: 75%;
    left: 45%;
    animation-delay: 3s;
}

.why-choose-particles .particle-6 {
    top: 45%;
    left: 5%;
    animation-delay: 5s;
}

.why-choose-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.why-choose-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), #1a8c5a);
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

.why-choose-shapes .shape-1 {
    width: 120px;
    height: 120px;
    top: 5%;
    left: 10%;
    animation-delay: 0s;
}

.why-choose-shapes .shape-2 {
    width: 80px;
    height: 80px;
    top: 75%;
    right: 15%;
    animation-delay: 2s;
}

.why-choose-shapes .shape-3 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 20%;
    animation-delay: 4s;
}

.why-choose-shapes .shape-4 {
    width: 60px;
    height: 60px;
    top: 50%;
    right: 5%;
    animation-delay: 6s;
}

.why-choose-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(20, 130, 85, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 130, 85, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
}

/* Section Header Styles */
.why-choose-header {
    position: relative;
    z-index: 2;
}

.why-choose-badge {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.why-choose-badge .badge-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #1a8c5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(20, 130, 85, 0.3);
}

.why-choose-badge .badge-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(20, 130, 85, 0.3), transparent 70%);
    border-radius: 50%;
    animation: glow 2s ease-in-out infinite alternate;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    color: var(--title-color);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    color: var(--content-color);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.why-choose-decoration .decoration-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Excellence Feature */
.excellence-feature {
    margin-bottom: 60px;
}

.excellence-card {
    background: white;
    border-radius: 25px;
    padding: 50px;
    color: var(--title-color);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(20, 130, 85, 0.1);
}

.excellence-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="10" height="10" patternUnits="userSpaceOnUse"><circle cx="5" cy="5" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.excellence-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #1a8c5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(20, 130, 85, 0.3);
}

.excellence-icon i {
    font-size: 32px;
    color: white;
    animation: bounce 2s ease-in-out infinite;
}

.excellence-icon .icon-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: rgba(20, 130, 85, 0.3);
    border-radius: 50%;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.excellence-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.excellence-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.excellence-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.excellence-stats .stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.excellence-stats .stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.excellence-stats .stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--content-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Cards */
.why-choose-card {
    height: 100%;
    transition: all 0.3s ease;
}

.why-choose-card .card-inner {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.why-choose-card:hover .card-inner {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.why-choose-card .card-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 130, 85, 0.05), rgba(26, 140, 90, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-choose-card:hover .card-bg-pattern {
    opacity: 1;
}

.why-choose-card .feature-icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
}

.why-choose-card .feature-icon .icon-ring {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}

.why-choose-card .feature-icon .icon-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #1a8c5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    box-shadow: 0 8px 25px rgba(20, 130, 85, 0.3);
}

.why-choose-card .feature-icon .icon-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: particleFloat 3s ease-in-out infinite;
}

.why-choose-card .feature-icon .icon-particles span:nth-child(1) {
    top: 8px;
    left: 50%;
    animation-delay: 0s;
}

.why-choose-card .feature-icon .icon-particles span:nth-child(2) {
    top: 50%;
    right: 8px;
    animation-delay: 1s;
}

.why-choose-card .feature-icon .icon-particles span:nth-child(3) {
    bottom: 8px;
    left: 50%;
    animation-delay: 2s;
}

.why-choose-card .feature-title {
    color: var(--title-color);
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.why-choose-card .feature-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.why-choose-card .feature-text {
    color: var(--content-color);
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 20px;
}

.why-choose-card .feature-highlight {
    text-align: center;
    margin-top: 20px;
}

.why-choose-card .highlight-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.why-choose-card .highlight-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--content-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Expertise Card Specific */
.expertise-card .expertise-list {
    margin-top: 20px;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--content-color);
}

.expertise-item i {
    color: var(--primary-color);
    font-size: 12px;
    flex-shrink: 0;
}

/* Tech Card Specific */
.tech-card .tech-highlights {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
}

.tech-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.tech-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--title-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Clients Section */
.clients-section {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.clients-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 130, 85, 0.05), rgba(26, 140, 90, 0.05));
    opacity: 0.5;
}

.clients-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.clients-title {
    color: var(--title-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.clients-subtitle {
    color: var(--content-color);
    font-size: 16px;
    margin-bottom: 0;
}

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

.client-item {
    background: linear-gradient(135deg, var(--primary-color), #1a8c5a);
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(20, 130, 85, 0.2);
}

.client-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(20, 130, 85, 0.3);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.05); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50% { transform: translateY(-10px); opacity: 1; }
}

@keyframes glow {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(1.1); }
}

/* Why Choose Us Responsive */
@media (max-width: 991px) {
    .why-choose-section {
        padding: 80px 0;
    }
    
    .excellence-card {
        padding: 40px 30px;
    }
    
    .excellence-title {
        font-size: 28px;
    }
    
    .excellence-text {
        font-size: 16px;
    }
    
    .excellence-stats {
        gap: 30px;
    }
    
    .excellence-stats .stat-number {
        font-size: 32px;
    }
    
    .why-choose-card .card-inner {
        padding: 30px 20px;
    }
    
    .clients-section {
        padding: 40px 30px;
    }
    
    .clients-title {
        font-size: 24px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .excellence-card {
        padding: 30px 20px;
    }
    
    .excellence-title {
        font-size: 24px;
    }
    
    .excellence-text {
        font-size: 14px;
    }
    
    .excellence-stats {
        gap: 20px;
    }
    
    .excellence-stats .stat-item {
        min-width: 100px;
    }
    
    .excellence-stats .stat-number {
        font-size: 28px;
    }
    
    .why-choose-card .card-inner {
        padding: 25px 15px;
    }
    
    .why-choose-card .feature-title {
        font-size: 16px;
    }
    
    .why-choose-card .feature-text {
        font-size: 13px;
    }
    
    .clients-section {
        padding: 30px 20px;
    }
    
    .clients-title {
        font-size: 20px;
    }
    
    .clients-subtitle {
        font-size: 14px;
    }
    
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .client-item {
        padding: 12px 15px;
        font-size: 12px;
    }
}

/* ====================================== Client Logo Slider Section ====================================== */

.client-slider-section {
    position: relative;
    padding: 100px 0;
    background: white;
    overflow: hidden;
}

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

.client-slider-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(20, 130, 85, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(20, 130, 85, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.client-slider-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.client-slider-particles .particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.client-slider-particles .particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.client-slider-particles .particle-2 {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.client-slider-particles .particle-3 {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.client-slider-particles .particle-4 {
    top: 30%;
    left: 70%;
    animation-delay: 1s;
}

.client-slider-particles .particle-5 {
    top: 70%;
    left: 30%;
    animation-delay: 3s;
}

.client-slider-particles .particle-6 {
    top: 40%;
    left: 90%;
    animation-delay: 5s;
}

.client-slider-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.client-slider-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), #1a8c5a);
    opacity: 0.05;
    animation: pulse 6s ease-in-out infinite;
}

.client-slider-shapes .shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.client-slider-shapes .shape-2 {
    width: 60px;
    height: 60px;
    top: 80%;
    right: 10%;
    animation-delay: 2s;
}

.client-slider-shapes .shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.client-slider-shapes .shape-4 {
    width: 40px;
    height: 40px;
    top: 50%;
    right: 5%;
    animation-delay: 6s;
}

/* Client Slider Header */
.client-slider-header {
    position: relative;
    z-index: 2;
}

.client-slider-badge {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
}

.client-slider-badge .badge-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #1a8c5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(20, 130, 85, 0.3);
}

.client-slider-badge .badge-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(20, 130, 85, 0.3), transparent 70%);
    border-radius: 50%;
    animation: glow 2s ease-in-out infinite alternate;
}

.client-slider-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.client-slider-decoration .decoration-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Simplified Client Slider Styles */
.client-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    background: linear-gradient(135deg, rgba(20, 130, 85, 0.05) 0%, rgba(20, 130, 85, 0.1) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.client-slider-track {
    display: flex;
    animation: slideInfinite 30s linear infinite;
    gap: 2rem;
    padding: 1rem 0;
}

.client-slide {
    flex: 0 0 auto;
    width: 400px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(20, 130, 85, 0.2);
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* filter: grayscale(0%); */
    transition: all 0.3s ease;
}

.client-logo:hover img {
    /* filter: grayscale(0%); */
    transform: scale(1.1);
}

/* Pause animation on hover */
.client-slider-wrapper:hover .client-slider-track {
    animation-play-state: paused;
}

/* Keyframe animation */
@keyframes slideInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .client-slide {
        width: 350px;
        height: 200px;
    }
    
    .client-slider-track {
        gap: 1.5rem;
    }
    
    .client-logo {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .client-slide {
        width: 300px;
        height: 180px;
    }
    
    .client-logo {
        padding: 1rem;
    }
}

/* Add floating particles effect */
.client-slider-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23148255" opacity="0.1"/><circle cx="80" cy="40" r="1.5" fill="%23148255" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23148255" opacity="0.1"/></svg>');
    animation: floatParticles 20s linear infinite;
    pointer-events: none;
}

@keyframes floatParticles {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(-100px) translateX(50px); }
} 

/* Life and Work at DAP Section Styles */
.life-dap-img {
  width: 100%;
  max-width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10), 0 1.5px 4px rgba(0,0,0,0.08);
  transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.25s;
  border: 3px solid #f8f9fa;
  background: #fff;
  margin: 0 auto;
  display: block;
}
.life-dap-img:hover {
  transform: scale(1.07) rotate(-2deg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 3px 8px rgba(0,0,0,0.12);
  border-color: #e0e0e0;
}
.life-at-dap-section .row.g-3 {
  margin-top: 2rem;
}
.life-at-dap-section .section-title {
  font-weight: 700;
  letter-spacing: 0.5px;
}
.life-at-dap-section p {
  color: #555;
  font-size: 1.08rem;
} 

/* Life and Work at DAP Slider Styles */
.dap-life-slider-section {
  position: relative;
  background: #fff;
  overflow: hidden;
}
.dap-life-slider-wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 900px;
  padding: 0 20px;
}
.dap-life-slider-track {
  display: flex;
  align-items: center;
}
.dap-life-slide {
  padding: 10px;
  transition: transform 0.3s cubic-bezier(.4,2,.6,1), box-shadow 0.3s;
}
.dap-life-slide img {
  width: 100%;
  max-width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10), 0 1.5px 4px rgba(0,0,0,0.08);
  border: 3px solid #f8f9fa;
  background: #fff;
  margin: 0 auto;
  display: block;
}
.dap-life-slide img:hover {
  transform: scale(1.07) rotate(-2deg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 3px 8px rgba(0,0,0,0.12);
  border-color: #e0e0e0;
}
.dap-life-slider-section .section-title {
  font-weight: 700;
  letter-spacing: 0.5px;
}
.dap-life-slider-section p {
  color: #555;
  font-size: 1.08rem;
} 

/* Enhanced Leadership Cards for About Company Section */
.leadership-team-section {
  position: relative;
  z-index: 1;
}
.leader-card {
  background: linear-gradient(120deg, #fff 80%, #e6f2ec 100%);
  border-radius: 1.5rem;
  box-shadow: 0 6px 32px rgba(20,130,85,0.13), 0 2px 8px rgba(0,0,0,0.08);
  border: 2.5px solid #e6f2ec;
  position: relative;
  transition: transform 0.22s cubic-bezier(.4,2,.6,1), box-shadow 0.22s, border-color 0.22s;
  overflow: hidden;
}
.leader-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 12px 40px rgba(20,130,85,0.18), 0 4px 12px rgba(0,0,0,0.13);
  border-color: #148255;
}
.leader-card .leader-role {
  background: linear-gradient(90deg, #148255 30%, #1ec28b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 800;
  letter-spacing: 1.5px;
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
}
.leader-card .leader-name {
  font-weight: 700;
  color: #222;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.leader-card .leader-desc {
  font-size: 1.01rem;
  color: #444;
}
.leader-card .badge.bg-secondary {
  background: linear-gradient(90deg, #148255 60%, #e6b800 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 0.7rem;
  padding: 0.4em 1.1em;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 8px rgba(20,130,85,0.10);
}
.leader-card .leader-img img {
  border: 4px solid #fff;
  box-shadow: 0 2px 16px 0 #e6b80044, 0 1.5px 4px rgba(20,130,85,0.13);
  background: #f8f9fa;
}
.leader-card .leader-img {
  background: linear-gradient(120deg, #e6f2ec 60%, #fff 100%);
  border-radius: 50%;
  padding: 8px;
  display: inline-block;
  margin-bottom: 0.5rem;
}
/* Special highlight for Chairman */
.leader-card .leader-role:contains('Chairman'),
.leader-card.chairman {
  border-color: #e6b800 !important;
  box-shadow: 0 0 0 4px #e6b80033, 0 8px 32px rgba(20,130,85,0.13);
}
.leader-card.chairman .leader-role {
  color: #e6b800;
}
.leader-card.chairman .badge.bg-secondary {
  background: linear-gradient(90deg, #e6b800 60%, #148255 100%);
}
@media (max-width: 991px) {
  .leader-card { margin-bottom: 2rem; }
} 

/* Leadership Card Animations and Hover Effects */
@keyframes dapFadeUpZoom {
  0% { opacity: 0; transform: translateY(40px) scale(0.96); }
  60% { opacity: 1; transform: translateY(-8px) scale(1.04); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.leader-card {
  transition: transform 0.22s cubic-bezier(.4,2,.6,1), box-shadow 0.22s, border-color 0.22s;
  border: 2.5px solid #148255;
  animation: dapFadeUpZoom 0.9s cubic-bezier(.4,2,.6,1) both;
}
.leader-card[style*="animation-delay:0.1s"] { animation-delay: 0.1s; }
.leader-card[style*="animation-delay:0.4s"] { animation-delay: 0.4s; }
.leader-card[style*="animation-delay:0.7s"] { animation-delay: 0.7s; }
.leader-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 0 0 6px #14825533, 0 12px 40px #14825544, 0 2px 8px rgba(20,130,85,0.13);
  border-color: #148255;
  z-index: 3;
}
.leader-card.ceo-prominent {
  border: none !important;
  box-shadow: 0 0 0 12px #14825533, 0 18px 60px #14825555, 0 2px 8px rgba(20,130,85,0.13);
  background: linear-gradient(120deg, #f8f9fa 60%, #e6f2ec 100%);
  transform: translateY(-12px) scale(1.12);
  z-index: 3;
  min-height: 110%;
}
@media (max-width: 991px) {
  .leader-card.ceo-prominent {
    min-height: unset;
    transform: scale(1.06);
    box-shadow: 0 0 0 8px #14825522, 0 8px 32px #14825544, 0 2px 8px rgba(20,130,85,0.13);
  }
}
.leader-card .badge.bg-secondary {
  background: #148255 !important;
  color: #fff;
}
.leader-card .leader-role {
  color: #148255;
} 

.leadership-section-divider {
  width: 100%;
  margin-bottom: -2.5rem;
  z-index: 2;
  position: relative;
}
.leadership-bg-particles {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0 !important;
  pointer-events: none;
  overflow: hidden;
}
.leadership-bg-particles::before, .leadership-bg-particles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  background: linear-gradient(120deg, #148255 60%, #1ec28b 100%);
  animation: dapParticlesFloat 8s infinite alternate;
}
.leadership-bg-particles::before {
  width: 90px; height: 90px; left: 8%; top: 18%; animation-delay: 0s;
}
.leadership-bg-particles::after {
  width: 60px; height: 60px; right: 10%; bottom: 12%; animation-delay: 2s;
}
@keyframes dapParticlesFloat {
  0% { transform: translateY(0) scale(1); opacity: 0.18; }
  50% { transform: translateY(-30px) scale(1.12); opacity: 0.28; }
  100% { transform: translateY(0) scale(1); opacity: 0.18; }
}
.btn-animate {
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.18s, transform 0.18s;
}
.btn-animate::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 0; height: 0;
  background: rgba(20,130,85,0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s, height 0.4s, opacity 0.4s;
  opacity: 0.7;
  z-index: 1;
}
.btn-animate:active::after, .btn-animate:focus::after {
  width: 220%; height: 220%; opacity: 0;
  transition: width 0.4s, height 0.4s, opacity 0.4s;
}
.btn-animate:hover {
  box-shadow: 0 0 0 4px #14825533, 0 2px 8px #14825544;
  transform: translateY(-2px) scale(1.04);
}
.leader-card:hover {
  transform: translateY(-12px) scale(1.06) rotate(-1deg);
  box-shadow: 0 0 0 8px #14825522, 0 16px 48px #14825544, 0 2px 8px rgba(20,130,85,0.13);
  z-index: 4;
}
[data-aos] {
  will-change: transform, opacity;
  transition-timing-function: cubic-bezier(.4,2,.6,1) !important;
}
@media (max-width: 991px) {
  .leadership-section-divider { margin-bottom: -1.2rem; }
  .leader-card.ceo-prominent { min-height: unset; transform: scale(1.06); }
} 

.leadership-gradient-text {
  background: linear-gradient(90deg, #148255 30%, #1ec28b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  position: relative;
}
.leadership-underline {
  display: block;
  width: 80%;
  height: 5px;
  margin: 0.3rem auto 0 auto;
  background: linear-gradient(90deg, #148255 30%, #1ec28b 100%);
  border-radius: 3px;
  animation: leadershipUnderlineGrow 1.2s cubic-bezier(.4,2,.6,1) 0.3s both;
}
@keyframes leadershipUnderlineGrow {
  0% { width: 0; opacity: 0; }
  60% { width: 60%; opacity: 1; }
  100% { width: 80%; opacity: 1; }
}
.leadership-heading-icon {
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
} 

/* Zig-Zag Snake Process Flowchart Styles */
.our-process-section {
  background: linear-gradient(120deg,#f8f9fa 60%,#e6f2ec 100%);
  position: relative;
  overflow: visible;
}
.process-zigzag {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  z-index: 2;
}
.process-zigzag-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 0.5rem;
  position: relative;
}
.process-zigzag-row.left {
  flex-direction: row;
  justify-content: flex-start;
}
.process-zigzag-row.right {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.process-step-card {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px #14825511, 0 1.5px 4px #14825508;
  margin: 0 0.5rem;
  padding: 1.1rem 1.5rem 1.1rem 1.5rem;
  position: relative;
  z-index: 2;
  transition: box-shadow 0.22s, transform 0.22s;
  border-left: 6px solid #148255;
  animation: dapFadeUpZoom 0.9s cubic-bezier(.4,2,.6,1) both;
  min-width: 260px;
  max-width: 420px;
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.process-step-card:hover {
  box-shadow: 0 0 0 8px #14825522, 0 8px 32px #14825544;
  transform: translateY(-6px) scale(1.03);
}
.process-step-num {
  width: 44px; height: 44px;
  background: linear-gradient(120deg,#148255 60%,#1ec28b 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.35rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px #14825522;
  border: 3px solid #fff;
  z-index: 2;
  transition: box-shadow 0.2s;
  margin-right: 0.7rem;
  margin-left: 0.2rem;
}
.process-step-title {
  font-weight: 700;
  color: #148255;
  font-size: 1.18rem;
  margin-bottom: 0.2rem;
  letter-spacing: 0.5px;
}
.process-step-desc {
  color: #3a5d4c;
  font-size: 1.01rem;
  letter-spacing: 0.1px;
}
.process-zigzag-arrow {
  width: 80px;
  min-width: 80px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.process-zigzag-arrow svg {
  width: 80px;
  height: 40px;
  display: block;
}
@media (max-width: 991px) {
  .process-zigzag-row, .process-zigzag-row.left, .process-zigzag-row.right {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 0.2rem;
  }
  .process-step-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    margin: 0.2rem 0;
  }
  .process-zigzag-arrow {
    width: 60px;
    min-width: 60px;
    height: 30px;
    margin: 0.2rem 0;
  }
  .process-zigzag-arrow svg {
    width: 60px;
    height: 30px;
  }
} 

.process-horizontal {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}
.process-step-card-horizontal {
  background: #fff;
  border-radius: 1.2rem;
  box-shadow: 0 4px 24px #14825511, 0 1.5px 4px #14825508;
  padding: 1.1rem 1.5rem 1.1rem 1.5rem;
  position: relative;
  z-index: 2;
  transition: box-shadow 0.22s, transform 0.22s;
  border-left: 6px solid #148255;
  animation: dapFadeUpZoom 0.9s cubic-bezier(.4,2,.6,1) both;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.process-step-card-horizontal:hover {
  box-shadow: 0 0 0 8px #14825522, 0 8px 32px #14825544;
  transform: translateY(-6px) scale(1.03);
}
.process-horizontal-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  min-width: 60px;
  height: 30px;
  z-index: 1;
}
.process-horizontal-arrow svg {
  width: 60px;
  height: 30px;
  display: block;
}
@media (max-width: 991px) {
  .process-horizontal {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .process-step-card-horizontal {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    margin: 0.2rem 0;
  }
  .process-horizontal-arrow {
    width: 40px;
    min-width: 40px;
    height: 20px;
    margin: 0.2rem 0;
  }
  .process-horizontal-arrow svg {
    width: 40px;
    height: 20px;
  }
} 

.process-step-num {
  width: 64px;
  height: 64px;
  background: #fff;
  border: 3px solid #148255;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.2rem;
  margin-left: 0.2rem;
  box-shadow: 0 2px 8px #14825511;
  position: relative;
  z-index: 2;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.process-step-card-horizontal:hover .process-step-num {
  border-color: #1ec28b;
  box-shadow: 0 6px 24px #1ec28b22;
}
.process-step-num::before,
.process-step-num::after {
  display: none !important;
}
@media (max-width: 991px) {
  .process-step-num {
    width: 44px;
    height: 44px;
    margin-right: 0.7rem;
  }
}
@media (max-width: 767px) {
  .process-step-num {
    width: 32px;
    height: 32px;
    margin-right: 0.5rem;
  }
}

.process-step-num::after {
  content: '\2713'; /* checkmark */
  position: absolute;
  right: -12px;
  bottom: -12px;
  width: 28px;
  height: 28px;
  background: linear-gradient(120deg,#1ec28b 60%,#148255 100%);
  color: #fff;
  font-size: 1.1rem;
  border-radius: 50%;
  box-shadow: 0 2px 8px #14825533;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3;
  border: 2.5px solid #fff;
  transition: all 0.22s;
}
.process-step-card-horizontal:hover .process-step-num::after {
  display: flex;
  animation: processCheckPop 0.5s cubic-bezier(.4,2,.6,1) both;
}
@keyframes processNumPop {
  0% { opacity: 0; transform: scale(0.7) translateY(30px); }
  60% { opacity: 1; transform: scale(1.12) translateY(-8px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes processCheckPop {
  0% { opacity: 0; transform: scale(0.5) translateY(10px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
} 

.why-choose-animated-section {
  position: relative;
  background: linear-gradient(120deg,#f8f9fa 60%,#e6f2ec 100%);
  overflow: hidden;
  z-index: 1;
}
.why-choose-img-card {
  background: transparent;
  border-radius: 1.5rem;
  box-shadow: none;
  overflow: visible;
  transition: transform 0.22s cubic-bezier(.4,2,.6,1), box-shadow 0.22s;
  position: relative;
  z-index: 2;
}
.img-animated-wrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 8px 32px #14825522, 0 2px 8px #14825511;
  transition: box-shadow 0.22s, transform 0.22s;
}
.img-animated-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 1.5rem;
  transition: transform 0.4s cubic-bezier(.4,2,.6,1), filter 0.4s;
  filter: brightness(0.98) contrast(1.08) saturate(1.1);
}
.img-animated-wrap:hover img {
  transform: scale(1.08) rotate(-2deg);
  filter: brightness(1.08) contrast(1.15) saturate(1.2);
}
.img-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg,rgba(20,130,85,0.92) 60%,rgba(30,194,139,0.88) 100%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
  transition: opacity 0.35s cubic-bezier(.4,2,.6,1);
  z-index: 3;
  pointer-events: none;
}
.img-animated-wrap:hover .img-overlay {
  opacity: 1;
  pointer-events: auto;
}
.overlay-content {
  color: #fff;
  text-align: center;
  animation: fadeInUp 0.7s cubic-bezier(.4,2,.6,1) both;
}
.overlay-content i {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  color: #fff;
  filter: drop-shadow(0 2px 8px #14825588);
  animation: pulse 1.2s infinite alternate;
}
.overlay-content h5 {
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: 0.5px;
}
.overlay-content p {
  font-size: 1.01rem;
  color: #e6f2ec;
  margin-bottom: 0;
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
.why-choose-bg-pattern {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns=\'http://www.w3.org/2000/svg\' viewBox=\'0 0 100 100\'><defs><pattern id=\'grid\' width=\'10\' height=\'10\' patternUnits=\'userSpaceOnUse\'><path d=\'M 10 0 L 0 0 0 10\' fill=\'none\' stroke=\'%23e9ecef\' stroke-width=\'0.5\'/></pattern></defs><rect width=\'100\' height=\'100\' fill=\'url(%23grid)\'/></svg>');
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
.why-choose-particles {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 1;
}
.why-choose-particles .particle {
  position: absolute;
  width: 8px; height: 8px;
  background: linear-gradient(120deg,#148255 60%,#1ec28b 100%);
  border-radius: 50%;
  opacity: 0.18;
  animation: float 8s ease-in-out infinite;
}
.why-choose-particles .particle-1 { top: 12%; left: 10%; animation-delay: 0s; }
.why-choose-particles .particle-2 { top: 70%; left: 80%; animation-delay: 2s; }
.why-choose-particles .particle-3 { top: 80%; left: 20%; animation-delay: 4s; }
.why-choose-particles .particle-4 { top: 30%; left: 70%; animation-delay: 1s; }
.why-choose-particles .particle-5 { top: 60%; left: 30%; animation-delay: 3s; }
.why-choose-particles .particle-6 { top: 40%; left: 90%; animation-delay: 5s; }
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}
.why-choose-shapes {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 1;
}
.why-choose-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, #148255, #1ec28b);
  opacity: 0.08;
  animation: pulse 6s ease-in-out infinite;
}
.why-choose-shapes .shape-1 { width: 120px; height: 120px; top: 5%; left: 10%; animation-delay: 0s; }
.why-choose-shapes .shape-2 { width: 80px; height: 80px; top: 75%; right: 15%; animation-delay: 2s; }
.why-choose-shapes .shape-3 { width: 100px; height: 100px; bottom: 15%; left: 20%; animation-delay: 4s; }
.why-choose-shapes .shape-4 { width: 60px; height: 60px; top: 50%; right: 5%; animation-delay: 6s; }
@keyframes pulse {
  0%, 100% { opacity: 0.08; transform: scale(1); }
  50% { opacity: 0.18; transform: scale(1.08); }
}
@media (max-width: 991px) {
  .img-animated-wrap img { height: 180px; }
  .why-choose-img-card { margin-bottom: 1.5rem; }
}
@media (max-width: 767px) {
  .img-animated-wrap img { height: 120px; }
  .why-choose-img-card { margin-bottom: 1rem; }
} 

.moments-section {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  background: transparent;
  overflow: hidden;
}
.moments-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 60%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.moments-section .section-title {
  position: relative;
  z-index: 2;
}
.moments-subtitle {
  display: inline-block;
  background: linear-gradient(45deg, #377f4b, #17a2b8);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
}
.moments-section .title {
  color: #333;
  margin-bottom: 20px;
}
.moments-section .title span {
  color: #377f4b;
}
.moments-section .text {
  color: #666;
  font-size: 18px;
}
.moments-slider-wrapper {
  position: relative;
  z-index: 2;
  margin-top: 50px;
}
.moments-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.moment-card {
  flex: 0 0 auto;
  width: 350px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}
.moment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.moment-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 15px;
  position: relative;
}
.moment-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}
.moment-card:hover .moment-img {
  transform: scale(1.1);
}
.moment-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(45deg, #377f4b, #17a2b8);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.moment-badge i {
  margin-right: 8px;
  font-size: 18px;
}
.moment-content {
  width: 100%;
}
.moment-title {
  color: #333;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.moment-card:hover .moment-title {
  color: #377f4b;
}
.moment-desc {
  color: #666;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 0;
  transition: all 0.3s ease;
}
.moment-card:hover .moment-desc {
  color: #333;
}
@media (max-width: 1200px) {
  .moments-slider { gap: 15px; }
  .moment-card { width: 320px; }
}
@media (max-width: 992px) {
  .moments-slider { gap: 10px; }
  .moment-card { width: 280px; }
}
@media (max-width: 768px) {
  .moments-section .title { font-size: 2.5rem; }
  .moments-slider { gap: 10px; }
  .moment-card { width: 250px; }
}
@media (max-width: 480px) {
  .moments-slider { gap: 8px; }
  .moment-card { width: 220px; }
} 
  .moment-card { width: 220px; }
} 

/* Client Grid Styles */
.client-grid-wrapper {
    padding: 2rem 0;
    background: linear-gradient(135deg, rgba(20, 130, 85, 0.05) 0%, rgba(20, 130, 85, 0.1) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.client-logo-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.client-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(20, 130, 85, 0.2);
}

.client-logo-card img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    /* filter: grayscale(0%); */
    transition: all 0.3s ease;
}

.client-logo-card:hover img {
    /* filter: grayscale(0%); */
    transform: scale(1.1);
} 

/* Client Slider Styles */
.client-slider-wrapper {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(20, 130, 85, 0.05) 0%, rgba(20, 130, 85, 0.1) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
}

.client-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.client-slider-track {
    display: flex;
    animation: slide 30s linear infinite;
    width: calc(200px * 36); /* 24 logos + 12 duplicates = 36 total */
}

.client-slide {
    flex: 0 0 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-right: 2rem;
    transition: all 0.3s ease;
}

.client-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(20, 130, 85, 0.2);
}

.client-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    /* filter: grayscale(0%); */
    transition: all 0.3s ease;
}

.client-slide:hover img {
    /* filter: grayscale(0%); */
    transform: scale(1.1);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 24)); /* Move by 24 logos */
    }
}

/* Pause animation on hover */
.client-slider-wrapper:hover .client-slider-track {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .client-slide {
        width: 350px;
        height: 200px;
    }
    
    .client-slider-track {
        gap: 1.5rem;
    }
    
    .client-logo {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .client-slide {
        width: 300px;
        height: 180px;
    }
    
    .client-logo {
        padding: 1rem;
    }
} 