/* style.css */
:root {
    --primary-color: #e63946;
    --secondary-color: #1d3557;
    --bg-light: #f8f9fa;
    --text-dark: #333333;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    scroll-behavior: smooth;
    padding-bottom: 80px; /* Space for FABs on mobile */
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.navbar-brand img {
    height: 60px;
    object-fit: contain;
}

/* Is pure block ko style.css se hata dein ya comment kar dein */
/*
.hero-section {
    background: linear-gradient(rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.8)), url('mainbanner.jpg') center/cover no-repeat;
    color: #ffffff;
    padding: 120px 0;
    text-align: center;
}
.hero-section h1 {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero-section .lead {
    font-size: 1.25rem;
    font-weight: 300;
}
*/

/* Sections */
.section-padding {
    padding: 80px 0;
}
.bg-light-custom {
    background-color: var(--bg-light);
}
.card-custom {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}
.card-custom:hover {
    transform: translateY(-5px);
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Floating Action Buttons */
.fab {
    position: fixed;
    bottom: 30px;
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.fab:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}
.fab-left {
    left: 30px;
    background-color: #25D366; /* WhatsApp Green */
}
.fab-right {
    right: 30px;
    background-color: #007bff; /* Call Blue */
}

/* Legal Pages */
.legal-header {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 40px;
    margin-bottom: 40px;
}