body {
    background-color: #f8f9fa;
}


.hero-section {
    padding: 4rem 0;
}

.card {
    transition: transform 0.3s;
    border: none;
    border-radius: 15px;
}

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

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    
}

/* Change text color for links inside .custom-navbar */
.custom-navbar .nav-link {
    color: rgb(255, 255, 255) !important; /* Example: Green */
}

/* Change hover color */
.custom-navbar .nav-link:hover {
    color: #e7c5c5 !important; /* Example: Red */
}


footer {
    margin-top: auto;
    align-items: center;
    text-align: center;
}
/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    border-radius: 0 0 30px 30px;
}

.mission-section {
    background: #fff;
}

.step-card {
    background: #f7eded;
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -35px auto 15px;
    font-weight: bold;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    position: relative;
}

blockquote {
    font-style: italic;
    position: relative;
    padding-left: 30px;
}

blockquote::before {
    content: "\201C";
    position: absolute;
    left: -15px;
    top: -10px;
    font-size: 3em;
    color: rgba(255,255,255,0.3);
}

.user-info img {
    border: 3px solid var(--primary-color);
}
/* Disclaimer Page Styles */
.disclaimer-section h3 {
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.list-group-item {
    border: none;
    font-weight: bold;
    padding-left: 0;
}

.alert-warning {
    background: rgba(255,193,7,0.15);
    border-color: #ffc107;
}

.card {
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-3px);
}

.text-muted small {
    font-size: 0.9em;
}/* Legal Pages Common Styles */
.legal-section h3 {
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin: 2rem 0 1.5rem;
}

.legal-section .card {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
}

.legal-section ul {
    padding-left: 1.5rem;
}

.legal-section li {    
    margin-bottom: 0.5rem;
}

.text-muted small {
    font-size: 0.9em;
}

/* blog.css */
.card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.card-body {
    padding: 20px;
}

.card a {
    margin-top: 10px;
}

/* ==============================
   JIO BHARAT & FEATURE PHONE FIXES (Tiny Screens)
   ========================================= */
@media only screen and (max-width: 320px) {
    
    /* Body text ko chhota karein taaki screen par aaye */
    body {
        font-size: 12px !important;
        background-color: #fff !important; /* Heavy background hatao */
    }

    /* Container ka padding kam karein */
    .container, .container-fluid {
        padding-left: 5px !important;
        padding-right: 5px !important;
        width: 100% !important;
    }

    /* Headings ko control karein */
    h1 { font-size: 18px !important; margin-bottom: 10px; }
    h2 { font-size: 16px !important; }
    h3 { font-size: 14px !important; }

    /* Cards (Calculators) ke kinare hatayein taaki jagah bache */
    .card {
        border: none !important;
        box-shadow: none !important;
        margin-bottom: 10px !important;
    }
    .card-body {
        padding: 5px !important;
    }

    /* Inputs aur Select boxes ko full width karein */
    input, select, textarea {
        font-size: 14px !important;
        height: auto !important;
        padding: 5px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Buttons ko bada aur full-width karein (Dabana aasan ho) */
    .btn {
        width: 100% !important;
        margin-top: 5px !important;
        margin-bottom: 5px !important;
        font-size: 14px !important;
        padding: 8px !important;
    }

    /* Navbar ko simple karein */
    .navbar-brand {
        font-size: 16px !important;
    }
    
    /* Agar koi table hai toh usme scroll bar lagayein */
    .table-responsive {
        display: block;
        width: 100%;
        overflow-x: auto;
    }

    /* Footer ka text chhota karein */
    footer {
        font-size: 10px !important;
        padding: 10px 0 !important;
    }
}