/* ===== GLOBAL RESET ===== */
body {
font-family: 'Roboto', sans-serif;
color: #333;
line-height: 1.6;
background: #f8f9fa;
}

h1, h2, h3, h4, h5 {
font-family: 'Poppins', sans-serif;
font-weight: 600;
color: #0A2A66;
}

section {
position: relative;
}

/* ===== IMAGES ===== */
img {
max-width: 100%;
height: auto;
display: block;
}

/* ===== CONTAINER SPACING SYSTEM ===== */
.py-5 {
padding-top: 70px !important;
padding-bottom: 70px !important;
}

@media (max-width: 768px) {
.py-5 {
padding-top: 50px !important;
padding-bottom: 50px !important;
}
}

/* ===== HERO SECTION ===== */
.hero h1 {
font-size: 42px;
}

.hero p {
font-size: 18px;
margin-bottom: 25px;
}

@media (max-width: 768px) {
.hero {
text-align: center;
}

.hero h1 {
font-size: 30px;
}
}

/* ===== BUTTONS ===== */
.btn-success {
background: #28a745;
border: none;
padding: 12px 28px;
border-radius: 30px;
font-weight: 500;
}

.btn-success:hover {
background: #218838;
}

.btn-light {
border-radius: 30px;
padding: 12px 28px;
font-weight: 500;
}

/* ===== FLOATING APPLY BUTTON ===== */
.floating-apply {
position: fixed;
right: 20px;
bottom: 20px;
background: #28a745;
color: #fff;
padding: 14px 22px;
border-radius: 50px;
cursor: pointer;
z-index: 999;
box-shadow: 0 8px 25px rgba(0,0,0,0.2);
transition: 0.3s;
}

.floating-apply:hover {
transform: scale(1.05);
background: #218838;
}

/* ===== SERVICE CARDS ===== */
.service-card {
border-radius: 14px;
background: #fff;
transition: 0.3s;
cursor: pointer;
}

.service-card h5 {
margin: 0;
font-size: 18px;
}

.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* ===== WHY CHOOSE US ===== */
.bg-light h4 {
font-size: 32px;
color: #28a745;
margin-bottom: 10px;
}

/* ===== PROCESS SECTION ===== */
.process-step h5 {
margin-top: 15px;
}

/* ===== FEATURED BANK STRIP ===== */
.bg-dark p {
font-size: 16px;
letter-spacing: 1px;
}

/* ===== CTA BAND ===== */
.bg-success h3 {
font-size: 32px;
font-weight: 600;
}

@media (max-width: 768px) {
.bg-success h3 {
font-size: 24px;
}
}

/* ===== FOOTER ===== */
footer {
font-size: 14px;
background: #212529;
}

footer h5 {
color: #ffffff;
margin-bottom: 18px;
}

footer p {
color: rgba(255,255,255,0.7);
}

footer ul li {
margin-bottom: 8px;
}

footer ul li a {
color: rgba(255,255,255,0.75);
transition: 0.3s;
}

footer ul li a:hover {
color: #28a745;
padding-left: 5px;
}

/* ===== FORM STYLING ===== */
form .form-control {
border-radius: 10px;
padding: 12px;
border: 1px solid #ddd;
}

form .form-control:focus {
box-shadow: none;
border-color: #28a745;
}

/* ===== MODAL POLISH ===== */
.modal-content {
border-radius: 14px;
}

/* ===== AOS SMOOTHNESS ===== */
[data-aos] {
will-change: transform, opacity;
}
