/* CloudEDU Custom Styles */
/* This file contains custom styles that extend the main theme */

/* Additional responsive breakpoints for CloudEDU specific components */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px;
    }
    
    .testimonial-slider {
        margin: 40px 0;
    }
    
    .products-section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .service-icon img {
        max-width: 80px;
    }
    
    .product-image img {
        max-width: 120px;
    }
}

/* Additional Google Partners badge styling */
.google-partners {
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.google-partners:hover {
    opacity: 1;
}

/* Contact form enhancements */
.contact-form input,
.contact-form textarea {
    border: 2px solid #e0e0e0;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #4285f4;
    outline: none;
}

/* Custom scrollbar for better UX */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Loading states for images */
img {
    transition: opacity 0.3s ease;
}

img[loading="lazy"] {
    opacity: 0;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Enhanced button hover effects */
.btn-primary {
    position: relative;
    overflow: hidden;
}

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

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