/* Custom CSS for Autosite.app - Minimal overrides for Bootstrap */

/* Gradient text for the logo */
.logo-gradient {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback */
    font-weight: 700;
    letter-spacing: 1px;
}

/* Slightly adjust Bootstrap primary/secondary if needed */
/* Example: */
/* .btn-primary {
    background-color: #6a11cb;
    border-color: #6a11cb;
} */

/* Add custom styles below */

.hero-section {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: #fff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before { /* Subtle pattern from previous design */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.feature-icon-bg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.1) 0%, rgba(37, 117, 252, 0.1) 100%);
    color: #2575fc;
    font-size: 1.5rem; /* Adjusted size for Font Awesome */
    margin-bottom: 1rem;
}

.section-bg-light {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.card-feature {
    border: 1px solid #eee !important; /* Add subtle border */
    background-color: #fff;
}

.card-feature:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
    box-shadow: 0 1rem 2rem rgba(37, 117, 252, 0.15)!important; /* Softer blue shadow */
}

/* Section Styling Enhancements */
.section-bg-light {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

/* Divider */
.section-divider {
    border-top: 1px solid #dee2e6;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* Styling for Why Choose Us List Group */
.custom-list-group .list-group-item {
    border: none;
    border-bottom: 1px solid #e9ecef; /* Subtle separator */
    background-color: #fff; /* Ensure white background */
    transition: background-color 0.3s ease;
}

.custom-list-group .list-group-item:last-child {
    border-bottom: none;
}

.custom-list-group .list-group-item:hover {
    background-color: #f8f9fa; /* Light hover effect */
    transform: translateX(5px);
}

.why-us-icon {
    width: 40px; /* Fixed width for icon container */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(106, 17, 203, 0.1); /* Light primary background */
    color: var(--bs-primary);
    border-radius: 50%;
    flex-shrink: 0; /* Prevent shrinking */
}

/* Ensure footer is distinct */
footer {
    background-color: #343a40; /* Dark background */
    color: #adb5bd; /* Lighter text */
}

footer a {
    color: #ffffff; /* White links */
}

footer a:hover {
    color: #adb5bd; /* Lighter hover */
}

/* WhatsApp Widget Styling */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1030; /* Ensure it's above Bootstrap elements */
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-widget:hover {
    transform: scale(1.1);
    color: white;
}

.whatsapp-widget svg {
    width: 30px;
    height: 30px;
    fill: white;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animation-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
  opacity: 0; /* Start hidden */
}

/* You might want to delay animations for sections further down */
/* Example:
.section-features.animation-fade-in {
  animation-delay: 0.2s;
}
.section-why-us.animation-fade-in {
    animation-delay: 0.4s;
}
*/ 