/* Footer Styles */
.footer-custom {
    background-color: #000000;
    position: relative;
    min-height: 300px;
}

/* Ecosystem slider styles */
.ecosystem-slider-wrapper {
    padding: 0 10px;
}
.ecosystem-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 10px 5px;
}
.ecosystem-slider.dragging {
    cursor: grabbing;
}
.ecosystem-item {
    flex: 0 0 auto;
    width: 80%;
    max-width: 800px;
    scroll-snap-align: start;
}
.ecosystem-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* hide default scrollbar for modern browsers */
.ecosystem-slider::-webkit-scrollbar { height: 8px; }
.ecosystem-slider::-webkit-scrollbar-track { background: transparent; }
.ecosystem-slider::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 10px; }

@media (min-width: 992px) {
    .ecosystem-item { width: 45%; }
}


.footer-section h6 {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-section p {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-section .bi-clock-fill,
.footer-section .bi-geo-alt-fill {
    color: #87CEEB;
    font-size: 1.2rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.whatsapp-link:hover {
    background-color: #128c7e;
    color: white;
    transform: scale(1.1);
    text-decoration: none;
}

.whatsapp-link .bi-whatsapp {
    font-size: 1.5rem;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.scroll-top-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #87CEEB;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.scroll-top-btn:hover {
    background-color: #5CB3E8;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.scroll-top-btn .bi-arrow-up {
    font-size: 1.2rem;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.contact-box {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border-right: 1px solid #e9ecef;
    height: 100%;
}

.contact-item:last-child {
    border-right: none;
}

.contact-item:hover {
    background-color: #f8f9fa;
}

.contact-icon {
    margin-bottom: 15px;
}

.contact-icon i {
    font-size: 2.5rem;
    color: #87CEEB;
}

.contact-text h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.contact-text p {
    font-size: 0.9rem;
    color: #666666;
    margin: 0;
    word-break: break-word;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    background-image: url('/images/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background-color: #87CEEB;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.hero-badge::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background-color: #87CEEB;
}

.hero-buttons {
    margin-top: 30px;
}

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background-color: #87CEEB;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* About Section */
.about-section {
    background-color: #ffffff;
}

.about-content h2 {
    color: #333333;
    position: relative;
    padding-bottom: 15px;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #87CEEB;
}

.about-features {
    margin-top: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.feature-item i {
    margin-right: 12px;
    font-size: 1.1rem;
}

.about-image img {
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Services Section */
.services-section {
    background-color: #f8f9fa;
}

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: #87CEEB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background-color: #5CB3E8;
}

.service-card h4 {
    color: #333333;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: #87CEEB;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #5CB3E8;
    text-decoration: none;
}

/* Service Page Styles */
.breadcrumb-section {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #6c757d;
}

.breadcrumb-item a {
    color: #6c757d;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #87CEEB;
}

.breadcrumb-item.active {
    color: #87CEEB;
    font-weight: 600;
}

.services-main-section {
    background-color: #ffffff;
}

.service-card-main {
    background-color: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.service-card-main:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(220, 53, 69, 0.15);
    border-color: #87CEEB;
}

.service-icon-main {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #87CEEB 0%, #5CB3E8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.3);
}

.service-icon-main i {
    font-size: 2.5rem;
    color: white;
}

.service-card-main:hover .service-icon-main {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.4);
}

.service-title {
    color: #333333;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.4rem;
    text-align: center;
}

.service-description {
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.6;
    text-align: center;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.service-features li {
    color: #555555;
    margin-bottom: 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: #87CEEB;
    margin-right: 10px;
    font-size: 0.9rem;
}

.service-link-main {
    color: #87CEEB;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    justify-content: center;
    padding: 10px 0;
    border-top: 1px solid #f0f0f0;
}

.service-link-main:hover {
    color: #5CB3E8;
    text-decoration: none;
}

.service-link-main i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link-main:hover i {
    transform: translateX(5px);
}

/* Main Service Slider Styles */
.main-service-slider {
    background-color: #ffffff;
}

.main-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.main-slider-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.main-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.main-slide.active {
    opacity: 1;
}

.main-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.main-slide:hover .slide-overlay {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.8) 0%, rgba(220, 53, 69, 0.5) 100%);
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 600px;
    padding: 0 20px;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.main-slide.active .slide-content {
    transform: translateY(0);
}

.slide-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slide-content .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.3);
}

.slide-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.4);
}

.main-slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
}

.main-slider-btn {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #87CEEB;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.main-slider-btn:hover {
    background: #87CEEB;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.4);
}

.main-slider-btn i {
    font-size: 1.5rem;
}

.main-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.main-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.main-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.main-dot.active {
    background: #87CEEB;
    border-color: white;
    transform: scale(1.3);
}

/* Service Slider Styles */
.service-slider {
    position: relative;
    margin: 25px 0;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background: rgba(200, 35, 51, 0.9);
    transform: scale(1.1);
}

.slider-btn i {
    font-size: 1rem;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #87CEEB;
    transform: scale(1.2);
}

/* Responsive Main Slider Styles */
@media (max-width: 768px) {
    .main-slider-wrapper {
        height: 350px;
    }
    
    .main-slider-controls {
        padding: 0 15px;
    }
    
    .main-slider-btn {
        width: 45px;
        height: 45px;
    }
    
    .main-slider-btn i {
        font-size: 1.2rem;
    }
    
    .main-slider-dots {
        bottom: 20px;
        gap: 8px;
    }
    
    .main-dot {
        width: 10px;
        height: 10px;
    }
    
    .slide-content h3 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slide-content .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Responsive Slider Styles */
@media (max-width: 768px) {
    .slider-container {
        height: 150px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .slider-btn i {
        font-size: 0.9rem;
    }
    
    .slider-dots {
        bottom: 10px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Partners Section Styles */
.partners-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23dc3545" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.partner-item {
    perspective: 1000px;
}

.partner-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(220, 53, 69, 0.1);
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 53, 69, 0.1), transparent);
    transition: left 0.6s ease;
}

.partner-card:hover::before {
    left: 100%;
}

.partner-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 60px rgba(220, 53, 69, 0.2);
    border-color: #87CEEB;
}

.partner-logo-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.partner-logo {
    width: 100%;
    height: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-logo-placeholder {
    width: 100%;
    height: 120px;
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 2rem;
}

.partner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.95) 0%, rgba(200, 35, 51, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.partner-card:hover .partner-overlay {
    opacity: 1;
}

.partner-info {
    text-align: center;
    color: #333333;
    transform: none;
    transition: none;
    margin-top: 12px;
    position: relative;
}

.partner-card:hover .partner-info {
    transform: none;
}

.partner-info h5 {
    font-size: 1.0rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.partner-info p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.partner-info .btn {
    border: 2px solid white;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.partner-info .btn:hover {
    background: white;
    color: #87CEEB;
    transform: scale(1.05);
}

/* Partnership Benefits Section */
.partnership-benefits {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.benefits-content h3 {
    color: #333333;
    position: relative;
    padding-bottom: 15px;
}

.benefits-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #87CEEB 0%, #5CB3E8 100%);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #87CEEB 0%, #5CB3E8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.3);
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-text h5 {
    color: #333333;
    font-weight: 600;
    margin-bottom: 8px;
}

.benefit-text p {
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

.benefits-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 53, 69, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 53, 69, 0.05) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(220, 53, 69, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #87CEEB;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #87CEEB 0%, #5CB3E8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Partners Styles */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .partner-card {
        padding: 20px;
    }
    
    .partner-logo-wrapper {
        height: 150px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .benefits-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 20px;
    }
}

/* Why Choose Section */
.why-choose-section {
    background-color: #f8f9fa;
}

.why-card {
    background-color: white;
    padding: 40px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.why-icon {
    width: 70px;
    height: 70px;
    background-color: #87CEEB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.why-icon i {
    font-size: 1.8rem;
    color: white;
}

.why-card:hover .why-icon {
    transform: scale(1.1);
    background-color: #5CB3E8;
}

.why-card h4 {
    color: #333333;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.why-card p {
    color: #666666;
    margin: 0;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Process Section */
.process-section {
    background-color: #ffffff;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #87CEEB 0%, #5CB3E8 100%);
    z-index: 1;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 22%;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #87CEEB 0%, #5CB3E8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.4);
}

.step-content h4 {
    color: #333333;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

.step-content p {
    color: #666666;
    margin: 0;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Statistics Section */
.stats-section {
    background-color: #ffffff;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #87CEEB;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666666;
    font-weight: 500;
}

/* Ecosystem Section */
.ecosystem-section {
    background-color: #f8f9fa;
}

.ecosystem-section img {
    transition: transform 0.3s ease;
}

.ecosystem-section img:hover {
    transform: scale(1.02);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #87CEEB 0%, #5CB3E8 100%);
    position: relative;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.cta-box h2 {
    margin-bottom: 20px;
}

.cta-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin: 5px;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-custom {
        padding-bottom: 80px;
    }
    
    .whatsapp-float,
    .scroll-to-top {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 20px;
        text-align: center;
    }
    
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-item {
        padding: 30px 15px;
        border-right: none;
        border-bottom: 1px solid #e9ecef;
    }
    
    .contact-item:last-child {
        border-bottom: none;
    }
    
    .contact-icon i {
        font-size: 2rem;
    }
    
    .hero-section {
        min-height: 80vh;
        padding: 100px 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .hero-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 250px;
    }
    
    .about-section .row {
        flex-direction: column-reverse;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 200px;
    }
    
    .service-card-main {
        padding: 30px 20px;
    }
    
    .service-icon-main {
        width: 70px;
        height: 70px;
    }
    
    .service-icon-main i {
        font-size: 2rem;
    }
    
    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-step {
        width: 100%;
        max-width: 300px;
    }
    
    .why-card {
        padding: 30px 20px;
    }
    
    .why-icon {
        width: 60px;
        height: 60px;
    }
    
    .why-icon i {
        font-size: 1.5rem;
    }
}

/* Service Item Card Styles */
.service-item-card {
    padding: 20px 15px;
    transition: all 0.3s ease;
}

.service-item-card:hover {
    transform: translateY(-10px);
}

.service-image-wrapper {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-item-card:hover .service-image-wrapper {
    background: #e8eef5;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-item-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.service-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin-top: 15px;
    line-height: 1.4;
}

/* ============ Contact Page Styles ============ */
.contact-page {
    background-color: #f8f9fa;
}

.contact-header {
    background: linear-gradient(135deg, #5DADE2 0%, #5DADE2 100%);
    color: white;
    padding: 60px 0;
    margin-bottom: 40px;
}

.company-logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.company-info h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.company-tagline {
    font-size: 18px;
    opacity: 0.9;
}

.btn-whatsapp {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid #25d366;
}

.btn-whatsapp:hover {
    background-color: #20ba58;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.btn-whatsapp i {
    margin-right: 8px;
}

.vision-mission-section {
    padding: 60px 0;
    background-color: white;
    margin-bottom: 40px;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.vision-card, .mission-card {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.vision-card h3, .mission-card h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #5DADE2;
}

.vision-card p, .mission-card p {
    color: #555;
    line-height: 1.6;
}

.mission-card ul {
    list-style: none;
    padding: 0;
}

.mission-card li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.mission-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #5DADE2;
    font-weight: bold;
}

.certifications-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.cert-card-wrapper {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(93, 173, 226, 0.15);
    border-left: 5px solid #5DADE2;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.cert-card-wrapper:hover {
    box-shadow: 0 10px 40px rgba(93, 173, 226, 0.25);
    transform: translateY(-5px);
}

.cert-card-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #5DADE2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cert-card-title i {
    font-size: 24px;
}

.cert-card-content {
    text-align: center;
    position: relative;
}

.associations {
    margin-bottom: 50px;
}

.associations h3, .iso-certifications h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #333;
}

.associations-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.association-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.association-item img {
    max-width: 100%;
    max-height: 80px;
}

.iso-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 25px;
}

.iso-badge {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.iso-badge img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}

.iso-badge p {
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

.contact-info-section {
    padding: 60px 0;
    background-color: white;
}

.contact-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 40px;
    color: #5DADE2;
    margin-bottom: 15px;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.contact-item p {
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-header {
        text-align: center;
    }

    .company-info h2 {
        font-size: 24px;
    }

    .contact-button {
        text-align: center;
        margin-top: 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .associations-logos,
    .iso-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* News Page Styles */
.news-section {
    background: #f8f9fa;
}

.featured-news {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.featured-news:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-category {
    position: absolute;
    top: 20px;
    left: 20px;
}

.news-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.news-image-small {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.news-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.category-item:hover {
    background: #f0f0f0;
    border-left-color: #87CEEB;
    color: #87CEEB;
}

@media (max-width: 768px) {
    .news-image-small {
        height: 150px;
    }
}

/* News Detail Page Styles */
.article-section {
    background: #f8f9fa;
}

.article-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.article-content * {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.article-meta {
    font-size: 0.95rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.article-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    line-height: 1.8;
    color: #333;
    font-size: 16px !important;
    letter-spacing: 0.3px;
}

.article-body h2,
.article-body .h2,
.article-title {
    font-size: 1.75rem !important;
    font-weight: 500 !important;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.article-body h3,
.article-body .h3 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.article-body h4,
.article-body .h4 {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    color: #444;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.article-body h5,
.article-body .h5 {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    color: #555;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.article-body h6,
.article-body .h6 {
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #666;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.article-body p {
    margin-bottom: 1.2rem !important;
    text-align: justify;
    font-size: 16px !important;
    line-height: 1.8 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    color: #333 !important;
}

.article-body p.lead {
    font-size: 16px !important;
    font-weight: 400 !important;
    color: #333;
    line-height: 1.8 !important;
    margin-bottom: 1.2rem !important;
    text-align: justify;
}

.article-body strong,
.article-body b {
    font-weight: 700 !important;
    color: #1a1a1a;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.article-body em,
.article-body i {
    font-style: italic;
    color: #555;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.article-body ul,
.article-body ol {
    padding-left: 2rem;
    margin-bottom: 1.2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.article-body ul li,
.article-body ol li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
    font-size: 16px !important;
    color: #333 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.article-body a {
    color: #87CEEB !important;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.article-body a:hover {
    color: #5AB4D9 !important;
    border-bottom-color: #5AB4D9;
}

.article-text {
    white-space: normal;
    word-wrap: break-word;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.article-text * {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.article-text p {
    font-size: 16px !important;
    line-height: 1.8 !important;
    margin-bottom: 1.2rem !important;
    color: #333 !important;
    text-align: justify;
}

.blockquote {
    border-left: 4px solid #87CEEB;
    padding-left: 1.5rem;
    margin-left: 0;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #666;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.share-section {
    margin-top: 2rem;
    padding-top: 2rem;
}

.share-section h5 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.related-articles {
    margin-top: 3rem;
    padding-top: 3rem;
}

.related-articles h3 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.related-card {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.related-card h6 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
}

.related-card:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .article-content {
        padding: 20px;
    }

    .article-body,
    .article-body p {
        font-size: 15px !important;
    }

    .article-body h2 {
        font-size: 1.5rem !important;
    }

    .article-body h3 {
        font-size: 1.25rem !important;
    }

    .article-body ul,
    .article-body ol {
        padding-left: 1.5rem;
    }

    .share-buttons {
        flex-direction: column;
    }

    .share-buttons .btn {
        width: 100%;
    }
}
