/* CSS Variables */
:root {
    --primary: #1a2236;
    --secondary: #e2e50d;
    --accent: #f5b041;
    --bg: #f8f9fa;
    --dark: #2c3e50;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 10px 30px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 30px rgba(226, 229, 13, 0.3);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Enhanced Animation Utility Classes */
.animate-fade-in {
    animation: fadeIn 1.2s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1.2s ease-out 0.6s both;
}

.animate-bounce-in {
    animation: bounceIn 1.5s ease-out 1.2s both;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced Keyframe Animations */
@keyframes fadeIn {
    from { 
        opacity: 0; 
        transform: translateY(30px) scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

@keyframes bounceIn {
    0% { 
        opacity: 0; 
        transform: scale(0.3) translateY(50px); 
    }
    50% { 
        opacity: 1; 
        transform: scale(1.05) translateY(0); 
    }
    70% { 
        transform: scale(0.9); 
    }
    100% { 
        opacity: 1; 
        transform: scale(1); 
    }
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-80px) scale(0.9); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(80px) scale(0.9); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(80px) scale(0.9); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(3deg); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes slideInFromBottom {
    from { 
        opacity: 0; 
        transform: translateY(80px) scale(0.9); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0) scale(1); 
    }
}

@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(226, 229, 13, 0.3); }
    50% { box-shadow: 0 0 40px rgba(226, 229, 13, 0.6); }
}

/* Enhanced Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 34, 54, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 15px 0;
    border-bottom: 1px solid rgba(226, 229, 13, 0.1);
}

.navbar.scrolled {
    background: rgba(26, 34, 54, 0.98);
    box-shadow: var(--shadow-heavy);
    padding: 10px 0;
    border-bottom: 1px solid rgba(226, 229, 13, 0.2);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(226, 229, 13, 0.2), transparent);
    transition: left 0.6s ease;
}

.logo:hover::before {
    left: 100%;
}

.logo img {
    height: 50px;
    width: auto;
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-secondary);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
    background: rgba(226, 229, 13, 0.15);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle:hover span {
    background: var(--secondary);
    transform: scaleX(1.2);
}

/* Hero Section - Fixed Colors and Visibility */
/* Hero Section - KITES Style */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero-slider {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: scale(1.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 34, 54, 0.7), rgba(26, 34, 54, 0.5));
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
}

.hero-slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
    animation: slideInFromBottom 0.8s ease-out 0.5s both;
}

.slide-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.slide-description {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-secondary);
    color: var(--dark);
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
    background: var(--primary);
    color: var(--secondary);
}

/* Slider Navigation */
.hero-slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 4;
}

.hero-slider-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-slider-dot.active {
    background: var(--secondary);
    transform: scale(1.2);
    border-color: white;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.8rem;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    z-index: 4;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-description {
        font-size: 1.2rem;
    }
    
    .slide-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        padding: 15px;
    }
    
    .slider-nav.prev {
        left: 15px;
    }
    
    .slider-nav.next {
        right: 15px;
    }
}


/* Fixed Title Colors - Better Visibility */
.slide-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    line-height: 1.1;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
    letter-spacing: 1px;
}

.hero-slide.active .slide-title {
    transform: translateY(0);
    opacity: 1;
}

/* Fixed Description Colors - Better Visibility */
.slide-description {
    font-size: 1.6rem;
    opacity: 0;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 6px rgb(233, 237, 237), 0 0 15px rgb(255, 255, 255);
    font-weight: 400;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.9s;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.hero-slide.active .slide-description {
    opacity: 1;
    transform: translateY(0);
}

/* Fixed CTA Button - Better Colors */
.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #e2e50d, #f5b041);
    color: #1a2236;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3), 0 0 20px rgba(226, 229, 13, 0.4);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.1s;
    letter-spacing: 0.5px;
}

.hero-slide.active .slide-cta {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.slide-cta::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;
}

.slide-cta:hover::before {
    left: 100%; 
}

.slide-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.4), 0 0 30px rgba(226, 229, 13, 0.6);
    border-color: #ffffff;
    background: linear-gradient(135deg, #f5b041, #e2e50d);
}


/* Fixed Hero Overlay - Better for Content Visibility */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 34, 54, 0.5) 0%, 
        rgba(26, 34, 54, 0.3) 50%, 
        rgba(26, 34, 54, 0.5) 100%);
    z-index: 2;
}

/* Fixed Slider Navigation - Better Visibility */
.hero-slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 4;
}

.hero-slider-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.hero-slider-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: #e2e50d;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.hero-slider-dot.active {
    background: transparent;
    border-color: #e2e50d;
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(226, 229, 13, 0.6);
}

.hero-slider-dot.active::before {
    width: 100%;
    height: 100%;
}

.hero-slider-dot:hover {
    transform: scale(1.2);
    background: rgba(226, 229, 13, 0.3);
    border-color: #e2e50d;
}

/* Fixed Navigation Buttons - Better Visibility */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    font-size: 1.8rem;
    padding: 18px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 4;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.slider-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5), 0 0 20px rgba(226, 229, 13, 0.4);
    border-color: #e2e50d;
}

.slider-nav.prev {
    left: 40px;
}

.slider-nav.next {
    right: 40px;
}

/* Content Landing Animation */
@keyframes slideContentLand {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) translateY(80px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) translateY(0) scale(1);
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .slide-title {
        font-size: 3rem;
    }
    
    .slide-description {
        font-size: 1.3rem;
    }
    
    .slide-cta {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
    
    .slider-nav {
        padding: 15px;
        font-size: 1.5rem;
    }
    
    .slider-nav.prev {
        left: 20px;
    }
    
    .slider-nav.next {
        right: 20px;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
    }
    
    .slide-cta {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Enhanced Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 3.8rem;
    font-weight: 700;
    position: relative;
    background: linear-gradient(45deg, var(--primary), var(--dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 70px;
    color: #666;
    font-size: 1.3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-secondary);
    border-radius: 3px;
    box-shadow: var(--shadow-glow);
}

/* Enhanced About Section */
.about {
    padding: 140px 0;
    background: #ffffff;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(135deg, var(--bg) 0%, #ffffff 100%);
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.feature {
    text-align: center;
    padding: 40px 25px;
    background: var(--bg);
    border-radius: 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(26,34,54,0.08);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    opacity: 0.1;
    transition: left 0.5s ease;
}

.feature:hover::before {
    left: 0;
}

.feature:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--secondary);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.2rem;
    color: var(--dark);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-icon::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;
}

.feature:hover .feature-icon::before {
    left: 100%;
}

.feature:hover .feature-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: var(--shadow-glow);
}

.feature h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.feature p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Enhanced Services Section */
.services {
    padding: 140px 0;
    background: var(--bg);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(135deg, #ffffff 0%, var(--bg) 100%);
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.service-card {
    background: #fff;
    padding: 50px 35px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(26,34,54,0.08);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    opacity: 0.08;
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-20px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--secondary);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.2rem;
    color: var(--dark);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-icon::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;
}

.service-card:hover .service-icon::before {
    left: 100%;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: var(--shadow-glow);
}

.service-card h3 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.learn-more-btn {
    background: var(--gradient-secondary);
    color: var(--dark);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
}

.learn-more-btn::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.5s ease;
}

.learn-more-btn:hover::before {
    left: 100%;
}

.learn-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(226, 229, 13, 0.4);
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    margin-top: 25px;
    padding: 0 25px;
}

.service-card.expanded .service-details {
    max-height: 600px;
    padding: 30px;
    background: rgba(226, 229, 13, 0.08);
    border-radius: 20px;
    margin-top: 25px;
    border: 1px solid rgba(226, 229, 13, 0.2);
}

.service-details strong {
    color: var(--primary);
    display: block;
    margin: 20px 0 12px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.service-details ul {
    list-style: none;
    padding-left: 0;
}

.service-details li {
    color: #666;
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
    transition: all 0.3s ease;
}

.service-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.service-details li a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
    border-radius: 5px;
    position: relative;
}

.service-details li a:hover {
    color: var(--secondary);
    background: rgba(226, 229, 13, 0.1);
    padding-left: 10px;
    transform: translateX(5px);
}

.service-details li a::after {
    content: '→';
    position: absolute;
    right: 0;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--secondary);
}

.service-details li a:hover::after {
    opacity: 1;
    right: -5px;
}


/* Enhanced Stats Section */
.stats {
    padding: 120px 0;
    background: var(--gradient-primary);
    color: white;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(135deg, var(--bg) 0%, var(--primary) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    text-align: center;
}

.stat-item {
    padding: 40px 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    opacity: 0.1;
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 0;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
    display: block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Enhanced Partners Section */
.partners {
    padding: 140px 0;
    background: #ffffff;
    position: relative;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(135deg, var(--bg) 0%, #ffffff 100%);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.partner-item {
    background: var(--bg);
    padding: 50px 35px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(26,34,54,0.08);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.partner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    opacity: 0.08;
    transition: left 0.5s ease;
}

.partner-item:hover::before {
    left: 0;
}

.partner-item:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--secondary);
}

.partner-logo {
    width: 90px;
    height: 90px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.2rem;
    color: var(--dark);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.partner-logo::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;
}

.partner-item:hover .partner-logo::before {
    left: 100%;
}

.partner-item:hover .partner-logo {
    transform: scale(1.15) rotate(8deg);
    box-shadow: var(--shadow-glow);
}

.partner-item h4 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 18px;
    font-weight: 600;
}

.partner-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Enhanced Clients Section */
.clients {
    padding: 140px 0;
    background: var(--bg);
    position: relative;
}

.clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(135deg, #ffffff 0%, var(--bg) 100%);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.client-item {
    background: #fff;
    padding: 50px 35px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(26,34,54,0.08);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.client-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    opacity: 0.08;
    transition: left 0.5s ease;
}

.client-item:hover::before {
    left: 0;
}

.client-item:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--secondary);
}

.client-logo {
    width: 90px;
    height: 90px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.2rem;
    color: var(--dark);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.client-logo::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;
}

.client-item:hover .client-logo::before {
    left: 100%;
}

.client-item:hover .client-logo {
    transform: scale(1.15) rotate(8deg);
    box-shadow: var(--shadow-glow);
}

.client-item h4 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 18px;
    font-weight: 600;
}

.client-item p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.client-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.client-rating i {
    color: var(--secondary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.client-rating i:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 8px rgba(226, 229, 13, 0.6));
}

/* Enhanced Why Choose Us Section */
.why-choose-us {
    padding: 140px 0;
    background: #ffffff;
    position: relative;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(135deg, var(--bg) 0%, #ffffff 100%);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.reason-item {
    background: var(--bg);
    padding: 50px 35px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(26,34,54,0.08);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.reason-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    opacity: 0.08;
    transition: left 0.5s ease;
}

.reason-item:hover::before {
    left: 0;
}

.reason-item:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--secondary);
}

.reason-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.2rem;
    color: var(--dark);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.reason-icon::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;
}

.reason-item:hover .reason-icon::before {
    left: 100%;
}

.reason-item:hover .reason-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: var(--shadow-glow);
}

.reason-item h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.reason-item p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Enhanced Contact Section */
.contact {
    padding: 140px 0;
    background: var(--bg);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(135deg, #ffffff 0%, var(--bg) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 80px;
}

.contact-info h3 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 35px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--dark);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.contact-item h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-item p {
    color: #666;
    margin: 0;
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-form {
    background: #fff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(26,34,54,0.08);
    transition: all 0.3s ease;
}

.contact-form:hover {
    box-shadow: var(--shadow-heavy);
    transform: translateY(-5px);
}

.form-group {
    margin-bottom: 30px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #e1e5e9;
    border-radius: 15px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background: #fff;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(226, 229, 13, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

/* Enhanced Footer */
.footer {
    background: var(--primary);
    color: white;
    padding: 80px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 55px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.1);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(226, 229, 13, 0.5));
}

.footer-logo span {
    font-size: 1.6rem;
    font-weight: 700;
}

.footer-info p {
    margin-bottom: 15px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.footer-info p:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-links h4,
.footer-services h4,
.footer-cert h4 {
    margin-bottom: 25px;
    color: var(--secondary);
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-links a,
.footer-services a {
    display: block;
    color: white;
    text-decoration: none;
    margin-bottom: 15px;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover,
.footer-services a:hover {
    opacity: 1;
    color: var(--secondary);
    transform: translateX(8px);
}

.cert-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cert-badge {
    background: var(--gradient-secondary);
    color: var(--dark);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* Enhanced Notification Styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: var(--shadow-heavy);
    padding: 25px;
    z-index: 10000;
    transform: translateX(400px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 5px solid var(--secondary);
    max-width: 380px;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 18px;
}

.notification i {
    font-size: 1.8rem;
    color: var(--secondary);
}

.notification-success i {
    color: #28a745;
}

.notification span {
    color: var(--primary);
    font-weight: 500;
    font-size: 1.05rem;
}

/* Enhanced Responsive Styles */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .slide-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 900px) {
    .service-cards { 
        grid-template-columns: 1fr; 
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-features { 
        grid-template-columns: 1fr; 
        max-width: 500px;
        margin: 80px auto 0;
    }
    
    .partners-grid,
    .clients-grid,
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-container { 
        grid-template-columns: 1fr; 
        text-align: center;
        gap: 40px; 
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .slide-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .notification {
        right: 15px;
        left: 15px;
        max-width: none;
    }
    
    .slider-nav {
        padding: 15px;
        font-size: 1.5rem;
    }
    
    .slider-nav.prev {
        left: 20px;
    }
    
    .slider-nav.next {
        right: 20px;
    }
}

@media (max-width: 600px) {
    .logo img { 
        height: 45px; 
    }
    
    .nav-links { 
        display: none; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        right: 0;
        background: var(--primary); 
        flex-direction: column; 
        padding: 25px;
        gap: 0; 
        box-shadow: var(--shadow-heavy);
        animation: slideInDown 0.4s ease;
        border-top: 1px solid rgba(226, 229, 13, 0.1);
    }
    
    .nav-links.open { 
        display: flex; 
    }
    
    .nav-toggle { 
        display: flex; 
    }
    
    .hero { 
        height: 85vh; 
        margin-top: 80px;
    }
    
    .hero-content h1 { 
        font-size: 2.8rem; 
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .services, .about, .partners, .clients, .why-choose-us, .contact { 
        padding: 100px 0 80px 0; 
    }
    
    .hero-slider { 
        height: 100%; 
    }
    
    .about h2, .services h2 { 
        font-size: 2.8rem; 
    }
    
    .about-text p { 
        font-size: 1.15rem; 
    }
    
    .slider-nav {
        padding: 12px;
        font-size: 1.3rem;
    }
    
    .slider-nav.prev {
        left: 15px;
    }
    
    .slider-nav.next {
        right: 15px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .partners-grid,
    .clients-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .slide-title {
        font-size: 2.8rem;
    }
    
    .slide-description {
        font-size: 1.2rem;
    }
    
    .notification {
        top: 80px;
        right: 15px;
        left: 15px;
        max-width: none;
        padding: 20px;
    }
    
    .cta-btn {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
    
    .service-card,
    .partner-item,
    .client-item,
    .reason-item {
        padding: 40px 25px;
    }
    
    .contact-form {
        padding: 35px 25px;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .section-subtitle {
        font-size: 1.15rem;
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .slide-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-slider-dots {
        gap: 15px;
        bottom: 30px;
    }
    
    .hero-slider-dot {
        width: 15px;
        height: 15px;
    }
    
    .cta-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .service-icon,
    .feature-icon,
    .partner-logo,
    .client-logo,
    .reason-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}


/* Equipment Pages Styles */

/* Equipment Hero Section */
.equipment-hero {
    height: 60vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.equipment-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.equipment-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Equipment Details Section */
.equipment-details {
    padding: 80px 0;
    background: var(--bg);
}

.equipment-grid {
    display: grid;
    gap: 60px;
}

.equipment-category h2 {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.equipment-category h2 i {
    color: var(--secondary);
    font-size: 2rem;
}

.equipment-items {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.equipment-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(26,34,54,0.1);
}

.equipment-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.equipment-image {
    height: 250px;
    overflow: hidden;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.equipment-item:hover .equipment-image img {
    transform: scale(1.1);
}

.equipment-info {
    padding: 30px;
}

.equipment-info h3 {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.equipment-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.equipment-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.equipment-info li {
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.equipment-info li:last-child {
    border-bottom: none;
}

.rent-btn {
    display: inline-block;
    background: var(--gradient-secondary);
    color: var(--dark);
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.rent-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    background: var(--primary);
    color: var(--secondary);
}

/* Equipment Features Section */
.equipment-features {
    margin-top: 80px;
    text-align: center;
}

.equipment-features h2 {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(26,34,54,0.1);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.feature h3 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Applications Section */
.applications {
    margin-top: 80px;
    text-align: center;
}

.applications h2 {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 50px;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.application {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(26,34,54,0.1);
}

.application:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.application i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.application h4 {
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.application p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .equipment-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .equipment-hero-content p {
        font-size: 1.1rem;
    }
    
    .equipment-items {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .equipment-category h2 {
        font-size: 2rem;
    }
    
    .features-grid,
    .applications-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .equipment-info {
        padding: 20px;
    }
    
    .equipment-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .equipment-hero {
        height: 50vh;
        margin-top: 70px;
    }
    
    .equipment-hero-content h1 {
        font-size: 2rem;
    }
    
    .equipment-hero-content p {
        font-size: 1rem;
    }
    
    .equipment-details {
        padding: 60px 0;
    }
    
    .equipment-category h2 {
        font-size: 1.8rem;
    }
    
    .equipment-info h3 {
        font-size: 1.3rem;
    }
    
    .rent-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}



/* Equipment Pages Styles */

/* Equipment Hero Section */
.equipment-hero {
    height: 60vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.equipment-hero::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="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.equipment-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.equipment-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: slideInFromTop 1s ease-out;
}

.equipment-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: slideInFromTop 1s ease-out 0.2s both;
}

/* Equipment Details Section */
.equipment-details {
    padding: 80px 0;
    background: var(--bg);
}

.equipment-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.equipment-category {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.equipment-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.equipment-category h2 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.equipment-category h2 i {
    color: var(--secondary);
    font-size: 2rem;
}

.equipment-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.equipment-item {
    background: var(--bg);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.equipment-item:hover {
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.equipment-image {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.equipment-item:hover .equipment-image img {
    transform: scale(1.05);
}

.equipment-image::before {
    content: '📷 Image Placeholder';
    position: absolute;
    color: #999;
    font-size: 1.1rem;
    text-align: center;
}

.equipment-info h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.equipment-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.equipment-info ul {
    list-style: none;
    margin-bottom: 25px;
}

.equipment-info ul li {
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.equipment-info ul li:before {
    content: '✓';
    color: var(--secondary);
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.1rem;
}

.rent-btn {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.rent-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Features Section */
.equipment-features {
    margin-top: 80px;
    text-align: center;
}

.equipment-features h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 600;
}

.features-grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.feature h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .equipment-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .equipment-hero-content p {
        font-size: 1.1rem;
    }
    
    .equipment-category {
        padding: 25px 20px;
    }
    
    .equipment-category h2 {
        font-size: 1.8rem;
    }
    
    .equipment-items {
        grid-template-columns: 1fr;
    }
    
    .equipment-item {
        padding: 20px;
    }
    
    .equipment-image {
        height: 200px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .equipment-hero {
        height: 50vh;
        margin-top: 60px;
    }
    
    .equipment-hero-content h1 {
        font-size: 2rem;
    }
    
    .equipment-details {
        padding: 40px 0;
    }
    
    .equipment-category {
        padding: 20px 15px;
    }
    
    .equipment-category h2 {
        font-size: 1.5rem;
    }
}

/* Animation Keyframes */
@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Equipment Page Specific Footer */
.equipment-details .footer {
    margin-top: 80px;
}

.equipment-details .footer-logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary);
}

.equipment-details .footer-info i {
    margin-right: 10px;
    color: var(--secondary);
}


/* Concrete Equipment Specific Styles */

/* Concrete Mixer Icons */
.equipment-category h2 .fas.fa-cogs {
    animation: rotate 3s linear infinite;
}

.equipment-category h2 .fas.fa-tint {
    animation: pulse 2s ease-in-out infinite;
}

/* Concrete Equipment Hover Effects */
.equipment-item:hover .equipment-image {
    background: linear-gradient(45deg, #f0f0f0, #e8e8e8);
}

/* Concrete Mixer Specific Colors */
.equipment-category:nth-child(1) .equipment-item:hover {
    border-color: #8B4513;
}

.equipment-category:nth-child(2) .equipment-item:hover {
    border-color: #4682B4;
}

/* Concrete Equipment Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Concrete Equipment Image Placeholders */
.equipment-image[data-equipment="mixer"]::before {
    content: '🚛 Mixer';
}

.equipment-image[data-equipment="pump"]::before {
    content: '🔧 Pump';
}




/* Generator Equipment Specific Styles */

/* Generator Icons Animation */
.equipment-category h2 .fas.fa-bolt {
    animation: flash 2s ease-in-out infinite;
}

.equipment-category h2 .fas.fa-wind {
    animation: spin 4s linear infinite;
}

/* Generator Equipment Hover Effects */
.equipment-category:nth-child(1) .equipment-item:hover {
    border-color: #FFD700;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.equipment-category:nth-child(2) .equipment-item:hover {
    border-color: #87CEEB;
    box-shadow: 0 10px 25px rgba(135, 206, 235, 0.2);
}

/* Generator Equipment Animations */
@keyframes flash {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Generator Equipment Image Placeholders */
.equipment-image[data-equipment="generator"]::before {
    content: '⚡ Generator';
}

.equipment-image[data-equipment="compressor"]::before {
    content: '💨 Compressor';
}



/* Equipment Pages Styles */

/* Equipment Hero Section */
.equipment-hero {
    height: 60vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.equipment-hero::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="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.equipment-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.equipment-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: slideInFromTop 1s ease-out;
}

.equipment-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    animation: slideInFromTop 1s ease-out 0.2s both;
}

/* Equipment Details Section */
.equipment-details {
    padding: 80px 0;
    background: var(--bg);
}

.equipment-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.equipment-category {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.equipment-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.equipment-category h2 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.equipment-category h2 i {
    color: var(--secondary);
    font-size: 2rem;
}

.equipment-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.equipment-item {
    background: var(--bg);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.equipment-item:hover {
    border-color: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.equipment-image {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.equipment-item:hover .equipment-image img {
    transform: scale(1.05);
}

.equipment-image::before {
    content: '📷 Image Placeholder';
    position: absolute;
    color: #999;
    font-size: 1.1rem;
    text-align: center;
}

.equipment-info h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.equipment-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.equipment-info ul {
    list-style: none;
    margin-bottom: 25px;
}

.equipment-info ul li {
    color: #555;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.equipment-info ul li:before {
    content: '✓';
    color: var(--secondary);
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.1rem;
}

.rent-btn {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.rent-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Features Section */
.equipment-features {
    margin-top: 80px;
    text-align: center;
}

.equipment-features h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.feature h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Equipment Specific Animations */
.equipment-category h2 .fas.fa-fire {
    animation: flicker 1.5s ease-in-out infinite;
    color: #FF4500;
}

.equipment-category h2 .fas.fa-bolt {
    animation: flash 2s ease-in-out infinite;
    color: #FFD700;
}

.equipment-category h2 .fas.fa-cut {
    animation: pulse 2s ease-in-out infinite;
    color: #FF6347;
}

.equipment-category h2 .fas.fa-tools {
    animation: bounce 2s ease-in-out infinite;
    color: #32CD32;
}

.equipment-category h2 .fas.fa-cogs {
    animation: rotate 3s linear infinite;
    color: #4682B4;
}

.equipment-category h2 .fas.fa-tint {
    animation: pulse 2s ease-in-out infinite;
    color: #87CEEB;
}

.equipment-category h2 .fas.fa-truck {
    animation: slide 2s ease-in-out infinite;
    color: #FF8C00;
}

.equipment-category h2 .fas.fa-building {
    animation: fadeIn 2s ease-in-out infinite;
    color: #696969;
}

.equipment-category h2 .fas.fa-arrow-up {
    animation: bounce 2s ease-in-out infinite;
    color: #32CD32;
}

.equipment-category h2 .fas.fa-wind {
    animation: spin 4s linear infinite;
    color: #87CEEB;
}

/* Animation Keyframes */
@keyframes flicker {
    0%, 100% { opacity: 1; transform: scale(1); }
    25% { opacity: 0.8; transform: scale(1.05); }
    50% { opacity: 0.9; transform: scale(0.95); }
    75% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes flash {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes slide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

@keyframes fadeIn {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .equipment-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .equipment-hero-content p {
        font-size: 1.1rem;
    }
    
    .equipment-category {
        padding: 25px 20px;
    }
    
    .equipment-category h2 {
        font-size: 1.8rem;
    }
    
    .equipment-items {
        grid-template-columns: 1fr;
    }
    
    .equipment-item {
        padding: 20px;
    }
    
    .equipment-image {
        height: 200px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .equipment-hero {
        height: 50vh;
        margin-top: 60px;
    }
    
    .equipment-hero-content h1 {
        font-size: 2rem;
    }
    
    .equipment-details {
        padding: 40px 0;
    }
    
    .equipment-category {
        padding: 20px 15px;
    }
    
    .equipment-category h2 {
        font-size: 1.5rem;
    }
}

/* Equipment Page Specific Footer */
.equipment-details .footer {
    margin-top: 80px;
}

.equipment-details .footer-logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary);
}

.equipment-details .footer-info i {
    margin-right: 10px;
    color: var(--secondary);
}

/* Hover Effects for Different Equipment Types */
.equipment-category:nth-child(1) .equipment-item:hover {
    border-color: #FF4500;
    box-shadow: 0 10px 25px rgba(255, 69, 0, 0.2);
}

.equipment-category:nth-child(2) .equipment-item:hover {
    border-color: #FFD700;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.equipment-category:nth-child(3) .equipment-item:hover {
    border-color: #FF6347;
    box-shadow: 0 10px 25px rgba(255, 99, 71, 0.2);
}

.equipment-category:nth-child(4) .equipment-item:hover {
    border-color: #32CD32;
    box-shadow: 0 10px 25px rgba(50, 205, 50, 0.2);
}




/* Industrial Pumps Specific Styles */

/* Pump Icons Animation */
.equipment-category h2 .fas.fa-water {
    animation: flow 3s ease-in-out infinite;
    color: #4682B4;
}

.equipment-category h2 .fas.fa-swimming-pool {
    animation: wave 2s ease-in-out infinite;
    color: #20B2AA;
}

.equipment-category h2 .fas.fa-compress-arrows-alt {
    animation: compress 2s ease-in-out infinite;
    color: #FF6347;
}

.equipment-category h2 .fas.fa-cogs {
    animation: rotate 3s linear infinite;
    color: #696969;
}

/* Pump Equipment Hover Effects */
.equipment-category:nth-child(1) .equipment-item:hover {
    border-color: #4682B4;
    box-shadow: 0 10px 25px rgba(70, 130, 180, 0.2);
}

.equipment-category:nth-child(2) .equipment-item:hover {
    border-color: #20B2AA;
    box-shadow: 0 10px 25px rgba(32, 178, 170, 0.2);
}

.equipment-category:nth-child(3) .equipment-item:hover {
    border-color: #FF6347;
    box-shadow: 0 10px 25px rgba(255, 99, 71, 0.2);
}

.equipment-category:nth-child(4) .equipment-item:hover {
    border-color: #696969;
    box-shadow: 0 10px 25px rgba(105, 105, 105, 0.2);
}

/* Pump Equipment Animations */
@keyframes flow {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

@keyframes compress {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(0.9); }
}

/* Pump Equipment Image Placeholders */
.equipment-image[data-equipment="centrifugal"]::before {
    content: '💧 Centrifugal Pump';
}

.equipment-image[data-equipment="submersible"]::before {
    content: '🏊 Submersible Pump';
}

.equipment-image[data-equipment="diaphragm"]::before {
    content: '🔧 Diaphragm Pump';
}

.equipment-image[data-equipment="accessories"]::before {
    content: '⚙️ Pump Accessories';
}

/* Pump Safety Warning */
.equipment-category:nth-child(1)::after,
.equipment-category:nth-child(2)::after {
    content: '⚠️ Proper installation and safety protocols required';
    display: block;
    text-align: center;
    color: #FF4500;
    font-weight: 600;
    margin-top: 20px;
    padding: 10px;
    background: rgba(255, 69, 0, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
}



/* Lifting Equipment Specific Styles */

/* Forklift Icons Animation */
.equipment-category h2 .fas.fa-truck-loading {
    animation: lift 2s ease-in-out infinite;
    color: #FF8C00;
}

.equipment-category h2 .fas.fa-boxes {
    animation: slide 2s ease-in-out infinite;
    color: #32CD32;
}

/* Scissor Lift Icons Animation */
.equipment-category h2 .fas.fa-arrows-alt-v {
    animation: expand 2s ease-in-out infinite;
    color: #4682B4;
}

.equipment-category h2 .fas.fa-arrow-up {
    animation: rise 2s ease-in-out infinite;
    color: #FF6347;
}

.equipment-category h2 .fas.fa-mountain {
    animation: bounce 2s ease-in-out infinite;
    color: #8B4513;
}

/* Chain Hoist Icons Animation */
.equipment-category h2 .fas.fa-link {
    animation: chain 2s ease-in-out infinite;
    color: #696969;
}

.equipment-category h2 .fas.fa-drum-steelpan {
    animation: rotate 3s linear infinite;
    color: #A0522D;
}

.equipment-category h2 .fas.fa-cogs {
    animation: spin 4s linear infinite;
    color: #808080;
}

/* Lifting Equipment Hover Effects */
.equipment-category:nth-child(1) .equipment-item:hover {
    border-color: #FF8C00;
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.2);
}

.equipment-category:nth-child(2) .equipment-item:hover {
    border-color: #32CD32;
    box-shadow: 0 10px 25px rgba(50, 205, 50, 0.2);
}

.equipment-category:nth-child(3) .equipment-item:hover {
    border-color: #4682B4;
    box-shadow: 0 10px 25px rgba(70, 130, 180, 0.2);
}

/* Lifting Equipment Animations */
@keyframes lift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes slide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

@keyframes expand {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes rise {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

@keyframes chain {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

/* Lifting Equipment Image Placeholders */
.equipment-image[data-equipment="forklift"]::before {
    content: '�� Forklift';
}

.equipment-image[data-equipment="pallet-jack"]::before {
    content: '📦 Pallet Jack';
}

.equipment-image[data-equipment="scissor-lift"]::before {
    content: '�� Scissor Lift';
}

.equipment-image[data-equipment="boom-lift"]::before {
    content: '⬆️ Boom Lift';
}

.equipment-image[data-equipment="chain-hoist"]::before {
    content: '⛓️ Chain Hoist';
}

.equipment-image[data-equipment="winch"]::before {
    content: '🎯 Winch';
}

/* Lifting Safety Warning */
.equipment-category:nth-child(1)::after,
.equipment-category:nth-child(2)::after,
.equipment-category:nth-child(3)::after {
    content: '⚠️ Safety training and proper rigging required';
    display: block;
    text-align: center;
    color: #FF4500;
    font-weight: 600;
    margin-top: 20px;
    padding: 10px;
    background: rgba(255, 69, 0, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
}


/* Transport Vehicles Specific Styles */

/* Transport Vehicle Icons Animation */
.equipment-category h2 .fas.fa-truck {
    animation: drive 3s ease-in-out infinite;
    color: #FF8C00;
}

.equipment-category h2 .fas.fa-shipping-fast {
    animation: ship 2s ease-in-out infinite;
    color: #4682B4;
}

.equipment-category h2 .fas.fa-car {
    animation: accelerate 2s ease-in-out infinite;
    color: #32CD32;
}

.equipment-category h2 .fas.fa-route {
    animation: navigate 3s ease-in-out infinite;
    color: #FF6347;
}

/* Transport Vehicle Hover Effects */
.equipment-category:nth-child(1) .equipment-item:hover {
    border-color: #FF8C00;
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.2);
}

.equipment-category:nth-child(2) .equipment-item:hover {
    border-color: #4682B4;
    box-shadow: 0 10px 25px rgba(70, 130, 180, 0.2);
}

.equipment-category:nth-child(3) .equipment-item:hover {
    border-color: #32CD32;
    box-shadow: 0 10px 25px rgba(50, 205, 50, 0.2);
}

.equipment-category:nth-child(4) .equipment-item:hover {
    border-color: #FF6347;
    box-shadow: 0 10px 25px rgba(255, 99, 71, 0.2);
}

/* Transport Vehicle Animations */
@keyframes drive {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

@keyframes ship {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(2deg); }
    75% { transform: translateY(5px) rotate(-2deg); }
}

@keyframes accelerate {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes navigate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

/* Transport Vehicle Image Placeholders */
.equipment-image[data-equipment="flatbed"]::before {
    content: '🚛 Flatbed Truck';
}

.equipment-image[data-equipment="container"]::before {
    content: '�� Container Truck';
}

.equipment-image[data-equipment="pickup"]::before {
    content: '�� Pickup Truck';
}

.equipment-image[data-equipment="specialized"]::before {
    content: '🛣️ Specialized Transport';
}

/* Transport Safety Warning */
.equipment-category:nth-child(1)::after,
.equipment-category:nth-child(2)::after,
.equipment-category:nth-child(3)::after,
.equipment-category:nth-child(4)::after {
    content: '⚠️ Valid driver license and proper cargo securing required';
    display: block;
    text-align: center;
    color: #FF4500;
    font-weight: 600;
    margin-top: 20px;
    padding: 10px;
    background: rgba(255, 69, 0, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
}

/* Transport Vehicle Specific Features */
.transport-features {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
}

.transport-features h3 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.transport-features ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    list-style: none;
}

.transport-features li {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.transport-features li:before {
    content: '✅';
    font-size: 1.2rem;
}

/* Responsive Transport Features */
@media (max-width: 768px) {
    .transport-features ul {
        grid-template-columns: 1fr;
    }
    
    .transport-features {
        padding: 20px;
    }
}




/* Add to style.css */

/* Training Pages */
.training-hero {
	height: 50vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	margin-top: 80px;
	position: relative;
	overflow: hidden;
	padding: 0 20px;
}
.training-hero.safety { background: linear-gradient(135deg, #1a2236 0%, #8e44ad 100%); }
.training-hero.operation { background: linear-gradient(135deg, #1a2236 0%, #2e86c1 100%); }
.training-hero.pm { background: linear-gradient(135deg, #1a2236 0%, #16a085 100%); }

.training-hero::before {
	content: '';
	position: absolute; inset: 0;
	background: radial-gradient(ellipse at center, rgba(255,255,255,0.08), transparent 60%);
}

.training-hero-content { position: relative; z-index: 1; max-width: 900px; }
.training-hero-content h1 { font-size: 3rem; font-weight: 700; margin-bottom: 0.75rem; animation: slideInFromTop 0.9s ease both; }
.training-hero-content p { font-size: 1.2rem; opacity: 0.95; }

.training-details { padding: 70px 0; background: var(--bg); }
.training-grid { display: flex; flex-direction: column; gap: 48px; }

.training-category {
	background: #fff;
	border-radius: 18px;
	padding: 32px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.training-category h2 {
	color: var(--primary);
	font-size: 1.9rem;
	margin-bottom: 22px;
	display: flex; align-items: center; gap: 12px; justify-content: center;
}
.training-category h2 i { color: var(--secondary); }

.training-items {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 22px;
}
.training-item {
	background: var(--bg);
	border-radius: 14px;
	padding: 22px;
	border: 2px solid transparent;
	transition: 0.25s ease;
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 16px;
	align-items: start;
}
.training-item:hover { border-color: var(--secondary); transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.08); }

.training-icon {
	width: 64px; height: 64px; border-radius: 12px;
	display: grid; place-items: center;
	background: rgba(226, 229, 13, 0.12);
	color: var(--secondary);
	font-size: 1.5rem;
}

.training-info h3 { color: var(--primary); font-size: 1.2rem; margin-bottom: 8px; }
.training-info ul { list-style: none; margin-bottom: 14px; }
.training-info ul li { padding: 6px 0; border-bottom: 1px dashed #e6e6e6; color: #555; }
.training-info ul li:last-child { border-bottom: 0; }

.enroll-btn {
	display: inline-block;
	background: var(--secondary);
	color: #fff;
	padding: 10px 20px;
	border-radius: 24px;
	text-decoration: none;
	font-weight: 600;
	transition: 0.25s ease;
}
.enroll-btn:hover { background: var(--primary); transform: translateY(-2px); }

.training-features { margin-top: 50px; text-align: center; }
.training-features h2 { color: var(--primary); font-size: 2rem; margin-bottom: 26px; }
.training-features .features-grid {
	display: grid; gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.training-features .feature {
	background: #fff; padding: 22px; border-radius: 14px;
	box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.training-features .feature i { font-size: 2rem; color: var(--secondary); margin-bottom: 10px; display: block; }
.training-features .feature h3 { color: var(--primary); margin-bottom: 6px; }

@media (max-width: 768px) {
	.training-hero { height: 42vh; margin-top: 70px; }
	.training-hero-content h1 { font-size: 2.2rem; }
	.training-hero-content p { font-size: 1.05rem; }
	.training-category { padding: 22px; }
	.training-items { grid-template-columns: 1fr; }
	.training-item { grid-template-columns: 56px 1fr; }

}


/* Services Hero accents */
.service-hero.mess   { background: linear-gradient(135deg, #1a2236 0%, #8e44ad 100%); }
.service-hero.waste  { background: linear-gradient(135deg, #1a2236 0%, #2e86c1 100%); }
.service-hero.camp   { background: linear-gradient(135deg, #1a2236 0%, #16a085 100%); }

/* Service icon animations */
.equipment-category h2 i { color: var(--secondary); }
.service-hero.mess  ~ .equipment-details .equipment-category:nth-child(1) .equipment-item:hover { border-color: #8e44ad; box-shadow: 0 10px 25px rgba(142,68,173,.18); }
.service-hero.waste ~ .equipment-details .equipment-category:nth-child(1) .equipment-item:hover { border-color: #2e86c1; box-shadow: 0 10px 25px rgba(46,134,193,.18); }
.service-hero.camp  ~ .equipment-details .equipment-category:nth-child(1) .equipment-item:hover { border-color: #16a085; box-shadow: 0 10px 25px rgba(22,160,133,.18); }

/* Image placeholders if missing images */
.equipment-image { background: linear-gradient(45deg, #f2f2f2, #e9e9e9); }
.equipment-image img { display: block; }

/* Buttons text consistency for service pages */
.rent-btn { text-transform: none; }



/* Services Hero accents */
.service-hero.mess   { background: linear-gradient(135deg, #1a2236 0%, #8e44ad 100%); }
.service-hero.waste  { background: linear-gradient(135deg, #1a2236 0%, #2e86c1 100%); }
.service-hero.camp   { background: linear-gradient(135deg, #1a2236 0%, #16a085 100%); }

/* Service icon animations */
.equipment-category h2 i { color: var(--secondary); }
.service-hero.mess  ~ .equipment-details .equipment-category:nth-child(1) .equipment-item:hover { border-color: #8e44ad; box-shadow: 0 10px 25px rgba(142,68,173,.18); }
.service-hero.waste ~ .equipment-details .equipment-category:nth-child(1) .equipment-item:hover { border-color: #2e86c1; box-shadow: 0 10px 25px rgba(46,134,193,.18); }
.service-hero.camp  ~ .equipment-details .equipment-category:nth-child(1) .equipment-item:hover { border-color: #16a085; box-shadow: 0 10px 25px rgba(22,160,133,.18); }

/* Image placeholders if missing images */
.equipment-image { background: linear-gradient(45deg, #f2f2f2, #e9e9e9); }
.equipment-image img { display: block; }

/* Buttons text consistency for service pages */
.rent-btn { text-transform: none; }



/* Pest Services Hero Themes */
.service-hero.pest { background: linear-gradient(135deg, #1a2236 0%, #0b3a4d 100%); }
.service-hero.pest.preventive  { background: linear-gradient(135deg, #1a2236 0%, #1e8449 100%); }
.service-hero.pest.emergency   { background: linear-gradient(135deg, #1a2236 0%, #c0392b 100%); }
.service-hero.pest.maintenance { background: linear-gradient(135deg, #1a2236 0%, #2874a6 100%); }

/* Icon Accents */
.equipment-category h2 i { color: var(--secondary); }

/* Subtle icon animations by page type */
.service-hero.pest.preventive  ~ .equipment-details .equipment-category h2 i { animation: pulse 2s ease-in-out infinite; }
.service-hero.pest.emergency   ~ .equipment-details .equipment-category h2 i { animation: flash 2.2s ease-in-out infinite; }
.service-hero.pest.maintenance ~ .equipment-details .equipment-category h2 i { animation: bounce 2.4s ease-in-out infinite; }

@keyframes flash { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.7;transform:scale(1.08)} }
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.06)} }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* Hover tints per page */
.service-hero.pest.preventive  ~ .equipment-details .equipment-item:hover { border-color:#1e8449; box-shadow:0 10px 24px rgba(30,132,73,.18); }
.service-hero.pest.emergency   ~ .equipment-details .equipment-item:hover { border-color:#c0392b; box-shadow:0 10px 24px rgba(192,57,43,.18); }
.service-hero.pest.maintenance ~ .equipment-details .equipment-item:hover { border-color:#2874a6; box-shadow:0 10px 24px rgba(40,116,166,.18); }



/* Add to style.css – themes for the three pages */
.training-hero.protocols { background: linear-gradient(135deg, #1a2236 0%, #9b59b6 100%); }
.training-hero.eom       { background: linear-gradient(135deg, #1a2236 0%, #2e86c1 100%); }
.training-hero.qc        { background: linear-gradient(135deg, #1a2236 0%, #16a085 100%); }

/* Category icon accent */
.equipment-category h2 i { color: var(--secondary); }

/* Subtle page-specific icon motion */
.training-hero.protocols ~ .equipment-details .equipment-category h2 i { animation: pulse 2s ease-in-out infinite; }
.training-hero.eom       ~ .equipment-details .equipment-category h2 i { animation: bounce 2.2s ease-in-out infinite; }
.training-hero.qc        ~ .equipment-details .equipment-category h2 i { animation: flash 2.4s ease-in-out infinite; }

@keyframes pulse  { 0%,100%{transform:scale(1)} 50%{transform:scale(1.06)} }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
@keyframes flash  { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.75;transform:scale(1.08)} }

/* crisp thin white box grid over the hero */
.training-hero {
  position: relative;
  overflow: hidden;
}
.training-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  --grid: 60px;                 /* cell size */
  --line: rgba(255,255,255,.12);/* thin white line */
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size:
    var(--grid) 100%,           /* vertical lines every --grid */
    100% var(--grid);           /* horizontal lines every --grid */
  mix-blend-mode: overlay;
}
@media (max-width: 768px){ .training-hero::after{ --grid: 46px; } }
@media (max-width: 480px){ .training-hero::after{ --grid: 36px; } }




/* Manpower pages (Skilled Laborers, Equipment Operators, Supervisors & Managers, Technical Specialists) */

/* Hero theme */
.service-hero.manpower{
  background: linear-gradient(135deg, #1a2236 0%, #e67e22 100%);
  position: relative;
  overflow: hidden;
}

/* Thin white box grid over hero */
.service-hero.manpower::after{
  content:"";
  position:absolute; inset:0; pointer-events:none;
  --grid:60px; --line:rgba(255,255,255,.12);
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: var(--grid) 100%, 100% var(--grid);
  mix-blend-mode: overlay; opacity:.18;
}
@media (max-width:768px){ .service-hero.manpower::after{ --grid:46px; } }
@media (max-width:480px){ .service-hero.manpower::after{ --grid:36px; } }

/* Icon accent + subtle motion */
.equipment-category h2 i{ color: var(--secondary); }
.service-hero.manpower ~ .equipment-details .equipment-category h2 i{
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.06)}}

/* Card hover tint */
.service-hero.manpower ~ .equipment-details .equipment-item:hover{
  border-color:#e67e22;
  box-shadow:0 10px 24px rgba(230,126,34,.18);
}



/* add to style.css — short themes per IT subpage */
.service-hero.it{ position:relative; overflow:hidden; }
.service-hero.it::after{
  content:""; position:absolute; inset:0; pointer-events:none;
  --grid:60px; --line:rgba(255,255,255,.12);
  background-image:linear-gradient(to right,var(--line) 1px,transparent 1px),
                   linear-gradient(to bottom,var(--line) 1px,transparent 1px);
  background-size:var(--grid) 100%, 100% var(--grid); mix-blend-mode:overlay; opacity:.18;
}
.service-hero.it.basic   { background:linear-gradient(135deg,#1a2236 0%, #0ea5e9 100%); }
.service-hero.it.web     { background:linear-gradient(135deg,#1a2236 0%, #6a5acd 100%); }
.service-hero.it.creative{ background:linear-gradient(135deg,#1a2236 0%, #e91e63 100%); }
.service-hero.it.ai      { background:linear-gradient(135deg,#1a2236 0%, #16a085 100%); }
.service-hero.it.support { background:linear-gradient(135deg,#1a2236 0%, #ff8f00 100%); }

.equipment-category h2 i{ color:var(--secondary); }
.service-hero.it ~ .equipment-details .equipment-item:hover{ border-color:#00a6ff; box-shadow:0 10px 24px rgba(0,166,255,.18); }
