/* Custom CSS for Zyra Pharma Website */

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    margin: 0;
}

.navbar {
    background: linear-gradient(90deg, #2b6cb0 0%, #3182ce 100%) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.carousel-item img {
    height: 60vh;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0,0,0,0.5);
    border-radius: 10px;
    padding: 20px;
}

.container {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    padding: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

h1 {
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
}

.lead {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.coming-soon-banner {
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    color: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255,107,107,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.form-control {
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #4facfe;
    box-shadow: 0 0 0 0.2rem rgba(79, 172, 254, 0.25);
}

.btn-primary {
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    border: none;
    border-radius: 25px;
    padding: 10px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
}

footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    margin-top: 50px;
}

footer h5 {
    color: #ecf0f1;
}

.img-fluid {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-item img {
        height: 40vh;
    }
    
    .container {
        padding: 20px;
    }
    
    .coming-soon-banner {
        padding: 30px;
    }
}