/* PROFESSIONAL HERO SECTION - ELEGANT & DECENT */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a4d2c 0%, #148255 25%, #1ec28b 50%, #204d40 75%, #3ee6b8 100%);
    overflow: hidden;
}

/* Simple Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/slider/csrr/1.jpeg') no-repeat center center;
    background-size: cover;
    z-index: 1;
    transition: background-image 1s ease-in-out;
}

/* Simple background transition */
.hero-background {
    transition: background-image 1s ease-in-out;
}

/* Simple responsive background */
@media (max-width: 768px) {
    .hero-background {
        background-size: cover;
        background-position: center;
    }
}

/* Background image will be set by JavaScript */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(10, 77, 44, 0.8) 0%, 
        rgba(20, 130, 85, 0.7) 25%, 
        rgba(30, 194, 139, 0.6) 50%, 
        rgba(45, 212, 163, 0.5) 75%, 
        rgba(62, 230, 184, 0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Subtle Particle System */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    border-radius: 50%;
    animation: particleFloat 25s linear infinite;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 30s;
}

.particle:nth-child(2) {
    width: 6px;
    height: 6px;
    top: 30%;
    right: 15%;
    animation-delay: 8s;
    animation-duration: 35s;
}

.particle:nth-child(3) {
    width: 3px;
    height: 3px;
    bottom: 25%;
    left: 20%;
    animation-delay: 15s;
    animation-duration: 28s;
}

.particle:nth-child(4) {
    width: 5px;
    height: 5px;
    bottom: 35%;
    right: 25%;
    animation-delay: 22s;
    animation-duration: 32s;
}

.particle:nth-child(5) {
    width: 7px;
    height: 7px;
    top: 50%;
    left: 5%;
    animation-delay: 12s;
    animation-duration: 38s;
}

.particle:nth-child(6) {
    width: 4px;
    height: 4px;
    top: 60%;
    right: 10%;
    animation-delay: 18s;
    animation-duration: 33s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
        transform: translateY(90vh) translateX(10px) scale(1);
    }
    90% {
        opacity: 0.6;
        transform: translateY(-10vh) translateX(-10px) scale(1);
    }
    100% {
        transform: translateY(-20vh) translateX(-20px) scale(0);
        opacity: 0;
    }
}

/* Subtle Geometric Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: shapeFloat 18s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 15%;
    left: 8%;
    border-radius: 50%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 80px;
    height: 40px;
    top: 25%;
    right: 12%;
    border-radius: 20px;
    animation-delay: 4s;
}

.shape:nth-child(3) {
    width: 45px;
    height: 45px;
    bottom: 20%;
    left: 15%;
    border-radius: 50%;
    animation-delay: 8s;
}

.shape:nth-child(4) {
    width: 70px;
    height: 70px;
    bottom: 30%;
    right: 18%;
    border-radius: 15px;
    animation-delay: 12s;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.2;
    }
    25% {
        transform: translateY(-25px) rotate(45deg) scale(1.05);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-50px) rotate(90deg) scale(1);
        opacity: 0.25;
    }
    75% {
        transform: translateY(-25px) rotate(135deg) scale(1.05);
        opacity: 0.3;
    }
}

/* Main Content */
.hero-content {
    position: relative;
    z-index: 5;
    color: white;
    text-align: center;
    animation: contentReveal 1.5s ease-out;
}

@keyframes contentReveal {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Welcome Badge - Professional */
.hero-welcome {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 40px;
    padding: 0.9rem 2rem;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: welcomeSlideIn 1s ease-out 0.5s both;
    position: relative;
    overflow: hidden;
}

.hero-welcome::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.hero-welcome:hover::before {
    left: 100%;
}

@keyframes welcomeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-welcome i {
    color: #1ec28b;
    font-size: 1rem;
    animation: starGlow 2.5s ease-in-out infinite;
    filter: drop-shadow(0 0 5px rgba(30, 194, 139, 0.5));
}

@keyframes starGlow {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 5px rgba(30, 194, 139, 0.5));
    }
    50% {
        transform: scale(1.1) rotate(180deg);
        filter: drop-shadow(0 0 10px rgba(30, 194, 139, 0.7));
    }
}

/* Main Title - AMAZING & SPECTACULAR */
.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    color: #ffffff;
    text-shadow: 
        0 4px 8px rgba(0,0,0,0.4),
        0 0 0 1px rgba(255,255,255,0.1),
        0 0 20px rgba(255, 255, 255, 0.5);
    letter-spacing: -0.02em;
    animation: titleSpectacular 2s ease-out 1s both;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 25%, #e9ecef 50%, #ffffff 75%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes titleSpectacular {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.08) 50%, 
        rgba(255, 255, 255, 0.15) 100%);
    border-radius: 20px;
    z-index: -1;
    animation: titleGlow 3s ease-in-out infinite;
}

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

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent, #ffffff, #f8f9fa, #ffffff, transparent);
    border-radius: 3px;
    animation: titleUnderlineSpectacular 2.5s ease-out 2s both;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

@keyframes titleUnderlineSpectacular {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 200px;
        opacity: 1;
    }
}

/* Subtitle - Clean */
.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 3rem;
    color: #e8f5e8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    animation: subtitleFadeIn 1.5s ease-out 1.5s both;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

@keyframes subtitleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Section - Professional Cards */
.hero-services {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.service-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-width: 280px;
    animation: serviceSlideIn 1s ease-out both;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.08);
}

.service-item:nth-child(1) { animation-delay: 2s; }
.service-item:nth-child(2) { animation-delay: 2.3s; }

@keyframes serviceSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:hover {
    transform: translateY(-12px) scale(1.03);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.12),
        0 0 20px rgba(255, 215, 0, 0.1);
}



.service-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.service-item:hover .service-text {
    color: #1ec28b;
    transform: translateY(-3px);
    text-shadow: 0 3px 6px rgba(30, 194, 139, 0.4);
}

/* Buttons - Professional */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: buttonsSlideIn 1s ease-out 3s both;
}

@keyframes buttonsSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-btn-primary {
    background: linear-gradient(135deg, #1ec28b 0%, #204d40 100%);
    color: #ffffff;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border: 3px solid #1ec28b;
    box-shadow: 
        0 8px 25px rgba(30, 194, 139, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.hero-btn-primary:hover::before {
    left: 100%;
}

.hero-btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(30, 194, 139, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.hero-btn-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s ease;
}

.hero-btn-secondary:hover::before {
    left: 100%;
}

.hero-btn-secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px) scale(1.05);
    color: white;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.15);
}

/* Scroll Indicator - Subtle */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
    animation: indicatorFadeIn 2s ease-out 3.5s both;
}

@keyframes indicatorFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.scroll-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.scroll-arrow {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    animation: arrowBounce 2.5s infinite;
}

@keyframes arrowBounce {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateY(0);
        opacity: 0.7;
    }
    40% { 
        transform: translateY(-12px);
        opacity: 1;
    }
    60% { 
        transform: translateY(-6px);
        opacity: 0.9;
    }
}

/* ====================================== Unified Why Choose Us Section ====================================== */

.unified-why-choose-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e6f2ec 100%);
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.unified-why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(30, 194, 139, 0.05) 0%,
        rgba(30, 194, 139, 0.02) 50%,
        rgba(30, 194, 139, 0.05) 100%);
    border-radius: 30px;
    z-index: 1;
}

.unified-why-choose-card .card-inner {
    position: relative;
    z-index: 2;
}

/* Header Section */
.unified-header {
    text-align: center;
    margin-bottom: 3rem;
}

.unified-header .header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1ec28b, #204d40);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    box-shadow: 0 10px 30px rgba(30, 194, 139, 0.3);
}

.unified-header .header-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.unified-header .header-icon .icon-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #1ec28b, #204d40);
    border-radius: 50%;
    opacity: 0.3;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.unified-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #1ec28b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.unified-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Statistics Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1ec28b, #204d40);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-item .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1ec28b, #204d40);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-item .stat-icon i {
    font-size: 1.2rem;
    color: #ffffff;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1ec28b, #204d40);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-item .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1ec28b, #204d40);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-item .feature-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.feature-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Expertise Areas */
.expertise-areas {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.expertise-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 2rem;
}

.expertise-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.expertise-category {
    padding: 1.5rem;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid rgba(30, 194, 139, 0.1);
    transition: all 0.3s ease;
}

.expertise-category:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 194, 139, 0.15);
}

.expertise-category h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.expertise-category h5 i {
    color: #1ec28b;
    font-size: 1.2rem;
}

.expertise-category p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Technology Highlights */
.tech-highlights-section {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.tech-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.tech-item {
    background: linear-gradient(135deg, #1ec28b, #204d40);
    color: #ffffff;
    padding: 1.5rem 1rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(30, 194, 139, 0.3);
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 194, 139, 0.4);
}

.tech-item i {
    font-size: 1.5rem;
}

.tech-item span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Decorative Elements */
.unified-why-choose-card .card-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(30, 194, 139, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowFloat 6s ease-in-out infinite;
}

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

.unified-why-choose-card .sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #1ec28b;
    border-radius: 50%;
    animation: sparkleFloat 4s ease-in-out infinite;
}

.unified-why-choose-card .sparkle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.unified-why-choose-card .sparkle-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.unified-why-choose-card .sparkle-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.unified-why-choose-card .sparkle-4 {
    top: 40%;
    right: 25%;
    animation-delay: 3s;
}

@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(-20px, -20px) scale(1.1); opacity: 0.8; }
}

@keyframes sparkleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-10px) scale(1.2); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-services {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .service-item {
        padding: 2rem 2.5rem;
        width: 100%;
        max-width: 320px;
        min-width: auto;
    }
    

    
    .service-text {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .hero-btn-primary, .hero-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .particle, .shape {
        display: none;
    }

    .unified-why-choose-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .unified-title {
        font-size: 2rem;
    }
    
    .unified-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .expertise-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .expertise-areas,
    .tech-highlights-section {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-welcome {
        font-size: 0.9rem;
        padding: 0.8rem 1.8rem;
    }
    

    
    .service-text {
        font-size: 1.1rem;
    }

    .unified-why-choose-card {
        padding: 1.5rem;
    }
    
    .unified-title {
        font-size: 1.8rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    /* Hide event boxes on mobile */
    .upcoming-events-container {
        display: none;
    }
}

/* Upcoming Events Floating Boxes */
.upcoming-events-container {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 9999 !important;
    pointer-events: none;
    background: rgba(255, 0, 0, 0.3) !important;
    padding: 10px;
    border: 2px solid #ff0000 !important;
}

.event-box {
    position: relative;
    width: 320px;
    height: 140px;
    background: rgba(255, 255, 255, 1) !important;
    border-radius: 15px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    border: 3px solid #ff0000 !important;
    margin-bottom: -25px;
    transform: rotate(-5deg);
    transition: all 0.3s ease;
    pointer-events: auto;
    overflow: hidden;
}

.event-box:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    z-index: 15;
}

.event-box-1 {
    transform: rotate(-8deg);
    z-index: 12;
}

.event-box-2 {
    transform: rotate(-3deg);
    z-index: 11;
    margin-left: 20px;
}

.event-box-3 {
    transform: rotate(2deg);
    z-index: 10;
    margin-left: 40px;
}

.event-box-1:hover {
    transform: rotate(0deg) scale(1.05);
}

.event-box-2:hover {
    transform: rotate(0deg) scale(1.05);
}

.event-box-3:hover {
    transform: rotate(0deg) scale(1.05);
}

.event-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Fallback background for missing images */
.event-image {
    background: linear-gradient(135deg, #148255 0%, #1ec28b 100%);
}

.event-box:hover .event-image img {
    transform: scale(1.1);
}

.event-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(20, 130, 85, 0.9) 0%, rgba(30, 194, 139, 0.8) 100%);
    color: white;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 15px;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px;
    width: 50px;
    height: 50px;
    backdrop-filter: blur(5px);
}

.event-date .day {
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
}

.event-date .month {
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
}

.event-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.event-location {
    font-size: 12px;
    margin: 0;
    opacity: 0.95;
    font-weight: 600;
}

/* Animation for floating effect */
.event-box-1 {
    animation: eventFloat1 6s ease-in-out infinite;
}

.event-box-2 {
    animation: eventFloat2 6s ease-in-out infinite;
}

.event-box-3 {
    animation: eventFloat3 6s ease-in-out infinite;
}

@keyframes eventFloat1 {
    0%, 100% { transform: translateY(0) rotate(-8deg); }
    50% { transform: translateY(-8px) rotate(-6deg); }
}

@keyframes eventFloat2 {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-12px) rotate(-1deg); }
}

@keyframes eventFloat3 {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-10px) rotate(4deg); }
}

/* Compact Multimedia Slider Section Styles */
.multimedia-slider-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e6f2ec 100%);
}

/* Header Styles */
.slider-header {
    margin-bottom: 2rem;
}

.slider-title {
    font-size: 2rem;
    font-weight: 700;
    color: #148255;
    margin-bottom: 1rem;
}

.text-gradient {
    background: linear-gradient(45deg, #148255, #1ec28b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slider-description {
    color: #3a5d4c;
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Compact Slider Container */
.compact-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.slider-wrapper {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 600%;
}

.slider-slide {
    flex: 0 0 16.666%;
    position: relative;
    padding: 0 10px;
}

.slide-image {
    position: relative;
    height: 350px;
    width: 200px;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.slide-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slide-image:hover .slide-img {
    transform: scale(1.1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 130, 85, 0.9) 0%, rgba(30, 194, 139, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.slide-image:hover .slide-overlay {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: white;
    padding: 1.5rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.slide-image:hover .slide-content {
    transform: translateY(0);
}

.slide-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.slide-icon i {
    font-size: 1.5rem;
    color: white;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.slide-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.slide-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.slide-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slide-btn i {
    font-size: 0.8rem;
}

/* Slider Navigation */
.slider-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.slider-nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-nav-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.slider-nav-btn i {
    color: #148255;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(20, 130, 85, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #148255;
    transform: scale(1.2);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, #1a3d2e, #2d5a3d);
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: #1ec28b;
    transform: scale(1.1);
}

.modal-video-container {
    width: 100%;
    aspect-ratio: 16/9;
}

.modal-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 2rem;
    color: white;
}

.modal-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1ec28b;
}

.modal-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #b8d5c7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .slider-track {
        width: 600%;
    }
    
    .slider-slide {
        flex: 0 0 16.666%;
    }
}

@media (max-width: 768px) {
    .slider-title {
        font-size: 1.8rem;
    }
    
    .slide-image {
        height: 300px;
        width: 180px;
    }
    
    .slider-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-nav-btn i {
        font-size: 1rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
}

@media (max-width: 480px) {
    .slider-title {
        font-size: 1.5rem;
    }
    
    .slide-image {
        height: 250px;
        width: 160px;
    }
    
    .slide-content {
        padding: 1rem;
    }
    
    .slide-content h4 {
        font-size: 1.1rem;
    }
    
    .slide-content p {
        font-size: 0.8rem;
    }
}

/* Client Portfolio Section Styles */
.client-portfolio-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Portfolio Header */
.portfolio-header {
    margin-bottom: 3rem;
}

.portfolio-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #148255;
    margin-bottom: 1rem;
}

.portfolio-description {
    color: #3a5d4c;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Client Categories */
.client-categories {
    margin-bottom: 3rem;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-tab {
    background: rgba(20, 130, 85, 0.1);
    border: 2px solid rgba(20, 130, 85, 0.2);
    color: #148255;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-tab:hover,
.category-tab.active {
    background: linear-gradient(45deg, #148255, #1ec28b);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(20, 130, 85, 0.4);
}

/* Client Grid */
.client-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.client-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

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

/* Client Logo */
.client-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e6f2ec);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: all 0.3s ease;
}

.client-card:hover .client-logo {
    transform: scale(1.1);
    background: linear-gradient(135deg, #e6f2ec, #d1e7dd);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Client Info */
.client-info {
    margin-bottom: 1.5rem;
}

.client-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.client-sector {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.client-projects {
    display: inline-block;
}

.project-count {
    background: linear-gradient(45deg, #148255, #1ec28b);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Client Overlay */
.client-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 130, 85, 0.95) 0%, rgba(30, 194, 139, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 2rem;
}

.client-card:hover .client-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.client-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h5 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.overlay-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.5;
}

.project-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.project-highlights span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.9;
}

.project-highlights i {
    color: #1ec28b;
    font-size: 0.9rem;
}

/* View All Button */
.view-all-btn {
    background: linear-gradient(45deg, #148255, #1ec28b);
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(20, 130, 85, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(20, 130, 85, 0.4);
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover .fa-arrow-right {
    transform: translateX(5px);
}

/* Responsive Design for Client Portfolio */
@media (max-width: 1200px) {
    .client-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .portfolio-title {
        font-size: 2rem;
    }
    
    .client-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1rem;
    }
    
    .client-card {
        padding: 1.5rem;
    }
    
    .category-tabs {
        gap: 0.5rem;
    }
    
    .category-tab {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .portfolio-title {
        font-size: 1.8rem;
    }
    
    .client-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .client-card {
        padding: 1.5rem;
    }
    
    .client-logo {
        width: 60px;
        height: 60px;
        padding: 10px;
    }
    
    .client-name {
        font-size: 1.2rem;
    }
}

/* Company Showcase Slider Section Styles */
.company-showcase-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

/* Animated Background Elements */
.showcase-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.showcase-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(30, 194, 139, 0.7);
    border-radius: 50%;
    animation: showcaseParticleFloat 10s infinite linear;
}

.showcase-particles .particle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.showcase-particles .particle:nth-child(2) { top: 65%; left: 85%; animation-delay: 2s; }
.showcase-particles .particle:nth-child(3) { top: 85%; left: 15%; animation-delay: 4s; }
.showcase-particles .particle:nth-child(4) { top: 25%; left: 75%; animation-delay: 6s; }
.showcase-particles .particle:nth-child(5) { top: 75%; left: 45%; animation-delay: 8s; }

@keyframes showcaseParticleFloat {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-120px) rotate(360deg); opacity: 0; }
}

.showcase-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.showcase-shapes .shape {
    position: absolute;
    opacity: 0.08;
    animation: showcaseShapeRotate 25s infinite linear;
}

.showcase-shapes .shape:nth-child(1) {
    top: 8%;
    right: 8%;
    width: 120px;
    height: 120px;
    border: 3px solid #1ec28b;
    transform: rotate(45deg);
}

.showcase-shapes .shape:nth-child(2) {
    bottom: 15%;
    left: 3%;
    width: 100px;
    height: 100px;
    border: 3px solid #148255;
    border-radius: 50%;
}

.showcase-shapes .shape:nth-child(3) {
    top: 45%;
    right: 15%;
    width: 80px;
    height: 80px;
    border: 3px solid #20c997;
    transform: rotate(30deg);
}

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

/* Header Styles */
.showcase-header {
    position: relative;
    z-index: 10;
    margin-bottom: 4rem;
}

.badge-container {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(45deg, #1ec28b, #148255);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 15px 40px rgba(30, 194, 139, 0.5);
    animation: showcaseBadgeGlow 4s ease-in-out infinite;
}

.badge-container i {
    font-size: 1.4rem;
    animation: showcaseStarTwinkle 3s ease-in-out infinite;
}

@keyframes showcaseBadgeGlow {
    0%, 100% { box-shadow: 0 15px 40px rgba(30, 194, 139, 0.5); }
    50% { box-shadow: 0 20px 50px rgba(30, 194, 139, 0.7); }
}

@keyframes showcaseStarTwinkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.3) rotate(180deg); }
}

.showcase-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    color: #148255;
    margin-bottom: 0.5rem;
}

.title-highlight {
    display: block;
    background: linear-gradient(45deg, #1ec28b, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4.5rem;
    text-shadow: 0 0 40px rgba(30, 194, 139, 0.6);
}

.showcase-description {
    color: #3a5d4c;
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Showcase Slider Container */
.showcase-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    border: 3px solid green; /* Debug border */
}

.slider-wrapper {
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    border: 3px solid red; /* Debug border */
}

.showcase-slider-container .slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 300% !important;
}

.showcase-slider-container .slider-slide {
    flex: 0 0 33.333% !important;
    position: relative;
    padding: 0 15px;
    border: 2px solid blue; /* Debug border */
    min-width: 0; /* Ensure flex items can shrink */
}

.slide-image {
    position: relative;
    height: 400px;
    width: 100%;
    max-width: 350px;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 2, 1);
}

.slide-image:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-image:hover .slide-img {
    transform: scale(1.15);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 31, 26, 0.95) 0%, rgba(26, 61, 46, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2.5rem;
}

.slide-image:hover .slide-overlay {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: white;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-image:hover .slide-content {
    transform: translateY(0);
}

.slide-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.slide-image:hover .slide-icon {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.slide-icon i {
    font-size: 2rem;
    color: white;
    animation: showcaseIconPulse 2.5s ease-in-out infinite;
}

@keyframes showcaseIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.slide-content h4 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
}

.slide-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.slide-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slide-stats i {
    color: #1ec28b;
    font-size: 0.9rem;
}

.slide-btn {
    background: linear-gradient(45deg, #1ec28b, #20c997);
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(30, 194, 139, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.slide-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(30, 194, 139, 0.6);
}

.slide-btn i {
    font-size: 0.9rem;
}

/* Slider Navigation */
.slider-navigation {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.slider-nav-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.slider-nav-btn:hover {
    background: white;
    transform: scale(1.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.slider-nav-btn i {
    color: #148255;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dot.active,
.dot:hover {
    background: #1ec28b;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(30, 194, 139, 0.6);
}

/* Category Filter Tabs */
.showcase-categories {
    position: relative;
    z-index: 10;
}

.showcase-categories .category-tabs {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.showcase-categories .category-tab {
    background: rgba(20, 130, 85, 0.1);
    border: 2px solid rgba(20, 130, 85, 0.2);
    color: #148255;
    padding: 15px 30px;
    border-radius: 35px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.showcase-categories .category-tab:hover,
.showcase-categories .category-tab.active {
    background: linear-gradient(45deg, #1ec28b, #20c997);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(30, 194, 139, 0.5);
}

/* Responsive Design for Company Showcase */
@media (max-width: 1200px) {
    .slider-track {
        width: 600%;
    }
    
    .slider-slide {
        flex: 0 0 16.666%;
    }
    
    .showcase-title {
        font-size: 3.5rem;
    }
    
    .title-highlight {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .showcase-title {
        font-size: 3rem;
    }
    
    .title-highlight {
        font-size: 3.5rem;
    }
    
    .slide-image {
        height: 350px;
        width: 350px;
    }
    
    .slider-nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .slider-nav-btn i {
        font-size: 1.1rem;
    }
    
    .badge-container {
        padding: 15px 25px;
        font-size: 1rem;
        gap: 15px;
    }
    
    .showcase-categories .category-tab {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .showcase-title {
        font-size: 2.5rem;
    }
    
    .title-highlight {
        font-size: 3rem;
    }
    
    .slide-image {
        height: 300px;
        width: 300px;
    }
    
    .slide-content {
        padding: 1.5rem;
    }
    
    .slide-content h4 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slide-stats {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .showcase-categories .category-tabs {
        gap: 1rem;
    }
    
    .showcase-categories .category-tab {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* Our Companies Section - Matching Achievements Style */
.our-services {
    padding: 8rem 0 5rem 0;
    margin-top: 5rem !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.our-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(20, 130, 85, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(55, 127, 75, 0.02) 0%, transparent 50%);
    opacity: 0.6;
    z-index: 1;
}

.our-services .container {
    position: relative;
    z-index: 2;
    padding-top: 3rem;
}

/* Companies Header - Matching Achievements Style */
.companies-header {
    position: relative;
    z-index: 2;
}

.companies-badge {
    display: inline-block;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    position: relative;
}

.badge-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #148255, #377f4b, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 35px;
    animation: badgePulse 3s ease-in-out infinite;
    box-shadow: 
        0 15px 35px rgba(20, 130, 85, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.badge-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badgeRotate 4s linear infinite;
}

.badge-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(20, 130, 85, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: badgeGlow 2s ease-in-out infinite;
}

/* Companies Decoration */
.companies-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.decoration-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #148255, #377f4b);
    border-radius: 50%;
    animation: decorationPulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(20, 130, 85, 0.5);
}

/* Section Title Styles */
.section-subtitle {
    font-size: 1.1rem;
    color: #148255;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

/* Animations */
@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

@keyframes badgeGlow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes decorationPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

/* Responsive Design for Our Companies Section */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .companies-badge {
        width: 80px;
        height: 80px;
    }
    
    .badge-inner {
        font-size: 28px;
    }
    
    .badge-glow {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .companies-badge {
        width: 70px;
        height: 70px;
    }
    
    .badge-inner {
        font-size: 24px;
    }
    
    .badge-glow {
        width: 90px;
        height: 90px;
    }
}

.static-services {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.static-services .service-item {
    flex: 1;
    min-width: 300px;
}

.service-item {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    position: relative;
    overflow: hidden;
}

.service-item:hover {
    transform: scale(1.05);
}

.our-services .services-slider .service-item .service-image:hover {
    border: 3px solid transparent !important;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #148255, #1ec28b, #667eea) border-box !important;
    box-shadow: 0 15px 35px rgba(20, 130, 85, 0.2) !important;
    transform: translateY(-5px) !important;
}

.service-item::before {
    display: none;
}

.service-item-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Override conflicting styles from custom.css */
.our-services .services-slider .service-item .service-image {
    flex-shrink: 0 !important;
    width: 300px !important;
    height: 200px !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid #148255 !important;
    transition: all 0.4s ease !important;
    margin: 0 60px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.service-item:hover .service-image {
    border-color: #148255;
    transform: scale(1.1);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    transition: all 0.4s ease;
}

.service-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

/* Services Slider */
.services-slider {
    position: relative;
    padding: 2rem 0;
    margin: 0 20px;
}

.services-slider .swiper-wrapper {
    align-items: stretch;
}

.our-services .services-slider .swiper-slide {
    height: auto !important;
    padding: 0 70px !important;
    margin: 0 40px !important;
}

.our-services .services-slider .swiper-wrapper {
    gap: 60px !important;
}

.services-slider .service-item {
    height: 100%;
    margin: 0;
}

/* Swiper Pagination */
.swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #d0d0d0;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #148255;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .our-services {
        padding: 4rem 0 3rem 0;
        margin-top: 3rem !important;
    }
    
    .our-services .section-title h2 {
        font-size: 2.2rem;
    }
    
    .companies-badge {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
    }
    
    .badge-inner {
        font-size: 28px;
    }
    
    .badge-glow {
        width: 100px;
        height: 100px;
    }
    
    .companies-decoration {
        margin-top: 20px;
        gap: 15px;
    }
    
    .services-slider {
        margin: 0 10px;
    }
    
    .services-slider .swiper-slide {
        padding: 0 20px !important;
        margin: 0 15px !important;
    }
    
    .services-slider .service-item .service-image {
        margin: 0 15px !important;
        width: 300px !important;
        height: 200px !important;
    }
    
    .services-slider .swiper-wrapper {
        gap: 20px !important;
    }
    
    .static-services {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .static-services .service-item {
        min-width: auto;
    }
    
    .service-item-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .service-image {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .our-services {
        padding: 3rem 0 2rem 0;
        margin-top: 2rem !important;
    }
    
    .our-services .section-title h2 {
        font-size: 1.8rem;
    }
    
    .our-services .section-subtitle {
        font-size: 0.9rem;
    }
    
    .our-services .section-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .companies-badge {
        width: 70px;
        height: 70px;
        margin: 0 auto 15px;
    }
    
    .badge-inner {
        font-size: 24px;
    }
    
    .badge-glow {
        width: 90px;
        height: 90px;
    }
    
    .services-slider {
        margin: 0 5px;
    }
    
    .services-slider .swiper-slide {
        padding: 0 15px !important;
        margin: 0 10px !important;
    }
    
    .services-slider .service-item .service-image {
        margin: 0 10px !important;
        width: 300px !important;
        height: 200px !important;
    }
    
    .services-slider .swiper-wrapper {
        gap: 15px !important;
    }
    
    .service-item {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .our-services {
        padding: 2rem 0 1.5rem 0;
        margin-top: 1.5rem !important;
    }
    
    .our-services .section-title h2 {
        font-size: 1.6rem;
    }
    
    .our-services .section-subtitle {
        font-size: 0.8rem;
    }
    
    .our-services .section-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .companies-badge {
        width: 60px;
        height: 60px;
        margin: 0 auto 10px;
    }
    
    .badge-inner {
        font-size: 20px;
    }
    
    .badge-glow {
        width: 80px;
        height: 80px;
    }
    
    .services-slider {
        margin: 0;
    }
    
    .services-slider .swiper-slide {
        padding: 0 10px !important;
        margin: 0 5px !important;
    }
    
    .services-slider .service-item .service-image {
        margin: 0 5px !important;
        width: 300px !important;
        height: 200px !important;
    }
    
    .services-slider .swiper-wrapper {
        gap: 10px !important;
    }
}

/* Auto Image Slider Section */
.auto-image-slider-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.slider-header {
    margin-bottom: 4rem;
}

.slider-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.slider-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.slider-track {
    display: flex;
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.slider-slide {
    flex: 0 0 280px;
    height: 380px;
    position: relative;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(0.75);
    opacity: 0.4;
    filter: grayscale(30%);
}

.slider-slide.active {
    transform: scale(1);
    opacity: 1;
    filter: grayscale(0%);
    z-index: 10;
}

.slider-slide.prev,
.slider-slide.next {
    transform: scale(0.85);
    opacity: 0.7;
    filter: grayscale(20%);
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider-slide.active .slide-image {
    box-shadow: 0 25px 60px rgba(20, 130, 85, 0.25);
    border: 4px solid #148255;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 2px solid #e0e0e0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    z-index: 20;
}

.slider-nav:hover {
    background: #148255;
    border-color: #148255;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 12px 35px rgba(20, 130, 85, 0.3);
}

.prev-nav {
    left: 30px;
}

.next-nav {
    right: 30px;
}

.slider-nav i {
    color: #666;
    font-size: 1.4rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.slider-nav:hover i {
    color: #ffffff;
}

.slider-progress {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #148255, #1ec28b);
    border-radius: 3px;
    transition: width 0.5s ease;
    width: 0%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .slider-container {
        padding: 0 60px;
    }
    
    .slider-slide {
        flex: 0 0 240px;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .slider-container {
        padding: 0 50px;
    }
    
    .slider-slide {
        flex: 0 0 200px;
        height: 260px;
        gap: 20px;
    }
    
    .slider-title {
        font-size: 2.2rem;
    }
    
    .slider-nav {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .slider-container {
        padding: 0 40px;
    }
    
    .slider-slide {
        flex: 0 0 160px;
        height: 200px;
        gap: 15px;
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
    }
    
    .slider-title {
        font-size: 1.8rem;
    }
}

/* Gallery Modal Styles */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    background-color: white;
    margin: 2% auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 5px solid #ff0000;
}

@keyframes modalSlideIn {
    from { transform: translateY(-50px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.modal-header {
    background: linear-gradient(45deg, #148255, #1ec28b);
    color: white;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.close-modal {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
    max-height: calc(90vh - 120px);
    overflow-y: auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-info {
    background: linear-gradient(135deg, #f8f9fa, #e6f2ec);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #148255;
}

.gallery-info h4 {
    color: #148255;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.gallery-info p {
    color: #3a5d4c;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-item i {
    color: #148255;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.stat-item span {
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Responsive Design for Gallery Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-header {
        padding: 20px 25px;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .gallery-img {
        height: 150px;
    }
    
    .project-stats {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 2% auto;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-img {
        height: 180px;
    }
}

/* Enhanced Gallery Modal Styles */
.gallery-modal {
    background: linear-gradient(135deg, rgba(10, 31, 26, 0.95) 0%, rgba(26, 61, 46, 0.9) 100%);
    backdrop-filter: blur(25px);
    animation: modalFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(30, 194, 139, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(20, 130, 85, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(32, 201, 151, 0.15) 0%, transparent 50%);
    animation: modalParticleFloat 25s infinite linear;
    pointer-events: none;
}

@keyframes modalParticleFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(30, 194, 139, 0.2);
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(30, 194, 139, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    animation: modalSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-header {
    background: linear-gradient(135deg, #148255 0%, #1ec28b 50%, #20c997 100%);
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    padding: 30px;
}

.header-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.header-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: headerIconPulse 3s ease-in-out infinite;
}

.header-icon i {
    font-size: 2rem;
    color: white;
}

@keyframes headerIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.header-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 400;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: headerShine 3s infinite;
}

@keyframes headerShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.modal-header h3 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.close-modal {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1) rotate(90deg);
}

.gallery-grid {
    gap: 25px;
    margin-bottom: 35px;
}

.gallery-item {
    border-radius: 20px;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(30, 194, 139, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 194, 139, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.25),
        0 0 0 2px rgba(30, 194, 139, 0.3);
}

.gallery-img {
    height: 220px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.15);
}

.gallery-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e6f2ec 100%);
    border-left: 5px solid #148255;
    border-radius: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.gallery-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #148255, #1ec28b, #20c997);
    animation: infoBorderGlow 2s ease-in-out infinite;
}

@keyframes infoBorderGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.gallery-info h4 {
    background: linear-gradient(135deg, #148255, #1ec28b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.project-stats {
    gap: 20px;
}

.stat-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(30, 194, 139, 0.1);
    border-radius: 15px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(30, 194, 139, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #148255, #1ec28b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(30, 194, 139, 0.2);
}

.stat-item i {
    color: #148255;
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(20, 130, 85, 0.3);
}

.stat-item span {
    font-weight: 700;
    color: #2c3e50;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Enhanced animations for gallery items */
.gallery-item {
    animation: galleryItemFadeIn 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes galleryItemFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating elements in modal */
.modal-content::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(30, 194, 139, 0.1), rgba(20, 130, 85, 0.1));
    border-radius: 50%;
    animation: modalFloat 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes modalFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}