/* Custom styles for Muthoot Finance website */

/* Color scheme variables */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --gold-color: #ffd700;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}

/* Global styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

/* Navigation */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
}

/* Buttons */
.btn-warning {
    background-color: var(--gold-color);
    border-color: var(--gold-color);
    color: #000;
    font-weight: 600;
}

.btn-warning:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    color: #000;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.highlight-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1rem;
}

/* Process steps */
.process-step {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: var(--light-color);
    margin-bottom: 1rem;
}

/* Testimonials */
blockquote {
    border-left: 5px solid var(--primary-color);
    padding-left: 1rem;
    font-style: italic;
}

/* Footer */
footer {
    margin-top: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .display-4 {
        font-size: 2.5rem;
    }
}

/* Custom animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Form styles */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Loan calculator specific styles */
#result {
    background: var(--light-color);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

/* Contact info styles */
.contact-info div {
    margin-bottom: 2rem;
}

.contact-info i {
    margin-bottom: 0.5rem;
}

/* Media queries for better mobile experience */
@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1.2rem;
    }

    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .highlight-card {
        padding: 1.5rem;
    }

    .process-step {
        padding: 1.5rem;
    }
}

/* Accessibility improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Print styles */
@media print {
    .navbar,
    .btn,
    footer {
        display: none !important;
    }

    body {
        font-size: 12pt;
    }
}
