/* assets/css/style.css */

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 56px;
}

/* Carousel Styles */
.carousel-item {
    height: 80vh;
    min-height: 500px;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    bottom: 20%;
    background: rgba(0,0,0,0.6);
    padding: 20px;
    border-radius: 10px;
}

.carousel-caption h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Feature Boxes */
.feature-box {
    padding: 30px;
    transition: transform 0.3s;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-box:hover {
    transform: translateY(-5px);
}

/* Plan Cards */
.plan-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.plan-card .price {
    font-size: 2rem;
    font-weight: bold;
    color: #007bff;
}

.plan-card .price span {
    font-size: 1rem;
    color: #666;
}

.plan-card.popular {
    border: 2px solid #007bff;
    position: relative;
}

.plan-card.popular .card-header {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;
    padding: 5px 20px;
}

/* Service Cards */
.service-card {
    padding: 30px;
    transition: all 0.3s;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-card:hover {
    background: #007bff;
    color: white;
}

.service-card:hover i {
    color: white !important;
}

.service-detailed {
    overflow: hidden;
    transition: transform 0.3s;
}

.service-detailed:hover {
    transform: translateY(-5px);
}

.service-icon {
    padding: 30px;
}

/* Contact Page */
.contact-info .info-box {
    transition: transform 0.3s;
    background: white;
}

.contact-info .info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-form {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

/* Footer */
footer a {
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: white !important;
}

.social-links a {
    display: inline-block;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-item {
        height: 60vh;
        min-height: 400px;
    }
    
    .carousel-caption h1 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .feature-box, .service-card {
        margin-bottom: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-box, .service-card, .plan-card {
    animation: fadeInUp 0.6s ease-out;
}